diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..9e5871918 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,4 @@ +FROM mcr.microsoft.com/devcontainers/base:debian + +RUN apt-get update && \ + apt-get -y install python3 python3-venv redis firefox-esr graphviz imagemagick librsvg2-bin fonts-dejavu shellcheck diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..3f8c4c81a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,31 @@ +{ + "build": { + "dockerfile": "Dockerfile" + }, + "features": { + "ghcr.io/devcontainers/features/github-cli": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-azuretools.vscode-docker" + ], + "remote.otherPortsAttributes": { + "protocol": "https" + }, + "settings": { + "files.autoSave": "off", + "python.defaultInterpreterPath": "/workspaces/searxng/local/py3/bin/python3", + "python.formatting.blackPath": "/workspaces/searxng/local/py3/bin/black", + "python.linting.pylintPath": "/workspaces/searxng/local/py3/bin/pylint" + } + } + }, + "forwardPorts": [8000, 8888], + "portsAttributes": { + "8000": {"label": "Sphinx documentation"}, + "8888": {"label": "SearXNG"} + }, + "postCreateCommand": "git pull && make install" +} diff --git a/.dir-locals.el b/.dir-locals.el index 47a06f4cb..1e319357a 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -3,18 +3,23 @@ ;; Per-Directory Local Variables: ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html ;; -;; .. hint:: +;; For full fledge developer tools install emacs packages: ;; -;; If you get ``*** EPC Error ***`` (even after a jedi:install-server) in -;; your emacs session, mostly you have jedi-mode enabled but the python -;; environment is missed. The python environment has to be next to the -;; ``/.dir-locals.el`` in:: +;; M-x package-install ... ;; -;; ./local/py3 +;; magit gitconfig +;; nvm lsp-mode lsp-pyright lsp-eslint +;; pyvenv pylint pip-requirements +;; jinja2-mode +;; json-mode +;; company company-jedi company-quickhelp company-shell +;; realgud +;; sphinx-doc markdown-mode graphviz-dot-mode +;; apache-mode nginx-mode ;; -;; To setup such an environment, build target:: +;; To setup a developer environment, build target:: ;; -;; $ make pyenv.install +;; $ make node.env.dev pyenv.install ;; ;; Some buffer locals are referencing the project environment: ;; @@ -29,26 +34,11 @@ ;; (setq python-shell-virtualenv-root "/path/to/env/") ;; - python-shell-interpreter --> /local/py3/bin/python ;; +;; Python development: +;; ;; Jedi, flycheck & other python stuff should use the 'python-shell-interpreter' ;; from the local py3 environment. ;; -;; For pyright support you need to install:: -;; -;; M-x package-install lsp-pyright -;; -;; Other useful jedi stuff you might add to your ~/.emacs:: -;; -;; (global-set-key [f6] 'flycheck-mode) -;; (add-hook 'python-mode-hook 'my:python-mode-hook) -;; -;; (defun my:python-mode-hook () -;; (add-to-list 'company-backends 'company-jedi) -;; (require 'jedi-core) -;; (jedi:setup) -;; (define-key python-mode-map (kbd "C-c C-d") 'jedi:show-doc) -;; (define-key python-mode-map (kbd "M-.") 'jedi:goto-definition) -;; (define-key python-mode-map (kbd "M-,") 'jedi:goto-definition-pop-marker) -;; ) ((nil . ((fill-column . 80) @@ -67,6 +57,12 @@ ;; to get in use of NVM environment, install https://github.com/rejeep/nvm.el (setq-local nvm-dir (expand-file-name "./.nvm" prj-root)) + ;; use nodejs from the (local) NVM environment (see nvm-dir) + (nvm-use-for-buffer) + (ignore-errors (require 'lsp)) + (setq-local lsp-server-install-dir (car (cdr nvm-current-version))) + (setq-local lsp-enable-file-watchers nil) + ;; use 'py3' environment as default (setq-local python-environment-default-root-name "py3") @@ -100,22 +96,22 @@ (js-mode . ((eval . (progn - ;; use nodejs from the (local) NVM environment (see nvm-dir) - (nvm-use-for-buffer) + (ignore-errors (require 'lsp-eslint)) (setq-local js-indent-level 2) ;; flycheck should use the eslint checker from developer tools (setq-local flycheck-javascript-eslint-executable (expand-file-name "node_modules/.bin/eslint" prj-root)) + ;; (flycheck-mode) - (flycheck-mode) + (if (featurep 'lsp-eslint) + (lsp)) )))) (python-mode . ((eval . (progn - ;; use nodejs from the (local) NVM environment (see nvm-dir) - (nvm-use-for-buffer) - (if (featurep 'lsp-pyright) - (lsp)) + (ignore-errors (require 'jedi-core)) + (ignore-errors (require 'lsp-pyright)) + (ignore-errors (sphinx-doc-mode)) (setq-local python-environment-virtualenv (list (expand-file-name "bin/virtualenv" python-shell-virtualenv-root) ;;"--system-site-packages" @@ -124,6 +120,9 @@ (setq-local pylint-command (expand-file-name "bin/pylint" python-shell-virtualenv-root)) + (if (featurep 'lsp-pyright) + (lsp)) + ;; pylint will find the '.pylintrc' file next to the CWD ;; https://pylint.readthedocs.io/en/latest/user_guide/run.html#command-line-options (setq-local flycheck-pylintrc diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..5617a5ba2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,40 @@ +# https://editorconfig.org/ + +root = true + +[*] +indent_style = space +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true +end_of_line = lf +charset = utf-8 + +[*.py] +max_line_length = 119 + +[*.html] +indent_size = 4 + +[*.json] +indent_size = 4 +insert_final_newline = ignore + +# Minified JavaScript files shouldn't be changed +[**.min.js] +indent_style = ignore +insert_final_newline = ignore + +# Makefiles always use tabs for indentation +[Makefile] +indent_style = tab + +# Batch files use tabs for indentation +[*.bat] +indent_style = tab + +[docs/**.rst] +max_line_length = 79 + +[*.yml] +indent_size = 2 diff --git a/.gitignore b/.gitignore index 262e9c1c1..f50a65be0 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,5 @@ gh-pages/ /node_modules/ .idea/ + +searx/version_frozen.py diff --git a/.pylintrc b/.pylintrc index 51cea773e..a5b00227e 100644 --- a/.pylintrc +++ b/.pylintrc @@ -404,4 +404,4 @@ known-third-party=enchant # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=Exception +overgeneral-exceptions=builtins.Exception diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..8ec6ff9b8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,23 @@ +{ + // See https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "SearXNG", + "type": "python", + "request": "launch", + "module": "searx.webapp", + "env": { + "FLASK_APP": "webapp", + "FLASK_DEBUG": "1", + "SEARXNG_DEBUG": "1", + }, + "args": [ + "run" + ], + "jinja": true, + "justMyCode": true, + "python": "${workspaceFolder}/local/py3/bin/python", + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..512342bae --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "python.testing.unittestArgs": [ + "-v", + "-s", + "./tests", + "-p", + "test_*.py" + ], + "python.testing.pytestEnabled": false, + "python.testing.unittestEnabled": true, +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..4d4a57b80 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,36 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "make run", + "type": "shell", + "command": "make run", + "problemMatcher": [], + "isBackground": true, + "presentation": { + "reveal": "always", + "panel": "dedicated" + }, + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "make docs.live", + "type": "shell", + "command": "make docs.live", + "problemMatcher": [], + "isBackground": true, + "presentation": { + "reveal": "always", + "panel": "dedicated" + }, + "group": { + "kind": "build" + } + } + ] +} \ No newline at end of file diff --git a/.weblate b/.weblate index 80bdba884..d50a09600 100644 --- a/.weblate +++ b/.weblate @@ -1,3 +1,3 @@ [weblate] -url = https://weblate.bubu1.eu/api/ +url = https://translate.codeberg.org/api/ translation = searxng/searxng diff --git a/AUTHORS.rst b/AUTHORS.rst index 82188cb73..f6c04a35f 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -166,4 +166,6 @@ features or generally made searx better: - Sam A. ``_ - @XavierHorwood - Ahmad Alkadri ``_ -- Milad Laly @Milad-Laly \ No newline at end of file +- Milad Laly @Milad-Laly +- @llmII +- @blob42 ``_ diff --git a/Dockerfile b/Dockerfile index 99f4aaa3b..d27d1b760 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,6 +65,7 @@ RUN su searxng -c "/usr/bin/python3 -m compileall -q searx" \ ARG LABEL_DATE= ARG GIT_URL=unknown ARG SEARXNG_GIT_VERSION=unknown +ARG SEARXNG_DOCKER_TAG=unknown ARG LABEL_VCS_REF= ARG LABEL_VCS_URL= LABEL maintainer="searxng <${GIT_URL}>" \ @@ -79,7 +80,7 @@ LABEL maintainer="searxng <${GIT_URL}>" \ org.label-schema.build-date="${LABEL_DATE}" \ org.label-schema.usage="https://github.com/searxng/searxng-docker" \ org.opencontainers.image.title="searxng" \ - org.opencontainers.image.version="${SEARXNG_GIT_VERSION}" \ + org.opencontainers.image.version="${SEARXNG_DOCKER_TAG}" \ org.opencontainers.image.url="${LABEL_VCS_URL}" \ org.opencontainers.image.revision=${LABEL_VCS_REF} \ org.opencontainers.image.source=${LABEL_VCS_URL} \ diff --git a/Makefile b/Makefile index 66c644ba2..31b3787a8 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ MANAGE += data.all data.languages data.useragents data.osm_keys_tags MANAGE += docs.html docs.live docs.gh-pages docs.prebuild docs.clean MANAGE += docker.build docker.push docker.buildx MANAGE += gecko.driver -MANAGE += node.env node.clean +MANAGE += node.env node.env.dev node.clean MANAGE += py.build py.clean MANAGE += pyenv pyenv.install pyenv.uninstall MANAGE += pypi.upload pypi.upload.test diff --git a/README.rst b/README.rst index 4785eb79f..9b926b1c9 100644 --- a/README.rst +++ b/README.rst @@ -12,9 +12,9 @@ Privacy-respecting, hackable `metasearch engine`_ -If you are looking for running instances, ready to use, then visit searx.space_. -Otherwise jump to the user_, admin_ and developer_ handbooks you will find on -our homepage_. +Searx.space_ lists ready-to-use running instances. + +A user_, admin_ and developer_ handbook is available on the homepage_. |SearXNG install| |SearXNG homepage| @@ -59,27 +59,26 @@ our homepage_. .. |commits| image:: https://img.shields.io/github/commit-activity/y/searxng/searxng?color=yellow&label=commits :target: https://github.com/searxng/searxng/commits/master -.. |weblate| image:: https://weblate.bubu1.eu/widgets/searxng/-/searxng/svg-badge.svg - :target: https://weblate.bubu1.eu/projects/searxng/ +.. |weblate| image:: https://translate.codeberg.org/widgets/searxng/-/searxng/svg-badge.svg + :target: https://translate.codeberg.org/projects/searxng/ Contact ======= -Come join us if you have questions or just want to chat about SearXNG. - -Matrix - `#searxng:matrix.org `_ +Ask questions or just chat about SearXNG on IRC `#searxng on libera.chat `_ which is bridged to Matrix. +Matrix + `#searxng:matrix.org `_ Differences to searx ==================== -SearXNG is a fork of `searx`_. Here are some of the changes: +SearXNG is a fork of `searx`_, with notable changes: .. _searx: https://github.com/searx/searx @@ -87,69 +86,88 @@ SearXNG is a fork of `searx`_. Here are some of the changes: User experience --------------- -- Huge update of the simple theme: +- Reworked (and still simple) theme: - * usable on desktop, tablet and mobile - * light and dark versions (you can choose in the preferences) - * support right-to-left languages - * `see the screenshots `_ + * Usable on desktop, tablet and mobile. + * Light and dark versions (available in the preferences). + * Right-to-left language support. + * `Screenshots `_ -- the translations are up to date, you can contribute on `Weblate`_ -- the preferences page has been updated: +- The translations are up to date, you can contribute on `Weblate`_ +- The preferences page has been updated: - * you can see which engines are reliable or not - * engines are grouped inside each tab - * each engine has a description + * Browse which engines are reliable or not. + * Engines are grouped inside each tab. + * Each engine has a description. -- thanks to the anonymous metrics, it is easier to report a bug of an engine and - thus engines get fixed more quickly +- Thanks to the anonymous metrics, it is easier to report malfunctioning engines, + so they get fixed quicker - - if you don't want any metrics to be recorded, you can `disable them on the server - `_ + - `Turn off metrics on the server + `_ if you don't want them recorded. -- administrator can `block and/or replace the URLs in the search results +- Administrators can `block and/or replace the URLs in the search results `_ Setup ----- -- you don't need `Morty`_ to proxy the images even on a public instance -- you don't need `Filtron`_ to block bots, we implemented the builtin `limiter`_ -- you get a well maintained `Docker image`_, now also built for ARM64 and ARM/v7 architectures -- alternatively we have up to date installation scripts +- No need for `Morty`_ to proxy images, even on a public instance. +- No need for `Filtron`_ to block bots, as there is now a built-in `limiter`_. +- A well maintained `Docker image`_, now also built for ARM64 and ARM/v7 architectures. + (Alternatively there are up to date installation scripts.) .. _Docker image: https://github.com/searxng/searxng-docker -Contributing is easier ----------------------- +Contributing +------------ -- readable debug log -- contributions to the themes are made easier, check out our `Development - Quickstart`_ guide -- a lot of code cleanup and bug fixes -- the dependencies are up to date +- Readable debug log. +- Contributing is easier, thanks to the `Development Quickstart`_ guide. +- A lot of code cleanup and bugfixes. +- Up to date list dependencies. .. _Morty: https://github.com/asciimoo/morty .. _Filtron: https://github.com/searxng/filtron .. _limiter: https://docs.searxng.org/src/searx.plugins.limiter.html -.. _Weblate: https://weblate.bubu1.eu/projects/searxng/searxng/ +.. _Weblate: https://translate.codeberg.org/projects/searxng/searxng/ .. _Development Quickstart: https://docs.searxng.org/dev/quickstart.html Translations ============ -We need translators, suggestions are welcome at -https://weblate.bubu1.eu/projects/searxng/searxng/ +Help translate SearXNG at `Weblate`_ -.. figure:: https://weblate.bubu1.eu/widgets/searxng/-/multi-auto.svg - :target: https://weblate.bubu1.eu/projects/searxng/ +.. figure:: https://translate.codeberg.org/widgets/searxng/-/multi-auto.svg + :target: https://translate.codeberg.org/projects/searxng/ -Make a donation -=============== +Codespaces +========== -You can support the SearXNG project by clicking on the donation page: +You can contribute from your browser using `GitHub Codespaces`_: + +- Fork the repository +- Click on the ``<> Code`` green button +- Click on the ``Codespaces`` tab instead of ``Local`` +- Click on ``Create codespace on master`` +- VSCode is going to start in the browser +- Wait for ``git pull && make install`` to appears and then to disapear +- You have `120 hours per month`_ (see also your `list of existing Codespaces`_) +- You can start SearXNG using ``make run`` in the terminal or by pressing ``Ctrl+Shift+B``. + +.. _GitHub Codespaces: https://docs.github.com/en/codespaces/overview +.. _120 hours per month: https://github.com/settings/billing +.. _list of existing Codespaces: https://github.com/codespaces + + +Donations +========= + +Support the SearXNG project by clicking the donation page: https://docs.searxng.org/donate.html + +Thank you :) diff --git a/docs/admin/engines/settings.rst b/docs/admin/engines/settings.rst index c747e3f43..099e449e0 100644 --- a/docs/admin/engines/settings.rst +++ b/docs/admin/engines/settings.rst @@ -110,6 +110,13 @@ Global Settings default_lang: "" ban_time_on_fail: 5 max_ban_time_on_fail: 120 + suspended_times: + SearxEngineAccessDenied: 86400 + SearxEngineCaptcha: 86400 + SearxEngineTooManyRequests: 3600 + cf_SearxEngineCaptcha: 1296000 + cf_SearxEngineAccessDenied: 86400 + recaptcha_SearxEngineCaptcha: 604800 formats: - html @@ -159,6 +166,25 @@ Global Settings ``max_ban_time_on_fail``: Max ban time in seconds after engine errors. +``suspended_times``: + Engine suspension time after error (in seconds; set to 0 to disable) + + ``SearxEngineAccessDenied``: 86400 + For error "Access denied" and "HTTP error [402, 403]" + + ``SearxEngineCaptcha``: 86400 + For error "CAPTCHA" + + ``SearxEngineTooManyRequests``: 3600 + For error "Too many request" and "HTTP error 429" + + Cloudflare CAPTCHA: + - ``cf_SearxEngineCaptcha``: 1296000 + - ``cf_SearxEngineAccessDenied``: 86400 + + Google CAPTCHA: + - ``recaptcha_SearxEngineCaptcha``: 604800 + ``formats``: Result formats available from web, remove format to deny access (use lower case). @@ -168,6 +194,7 @@ Global Settings - ``json`` - ``rss`` + .. _settings server: ``server:`` @@ -176,12 +203,12 @@ Global Settings .. code:: yaml server: - base_url: false # set custom base_url (or false) + base_url: http://example.org/location # change this! port: 8888 - bind_address: "127.0.0.1" # address to listen on - secret_key: "ultrasecretkey" # change this! + bind_address: "127.0.0.1" + secret_key: "ultrasecretkey" # change this! limiter: false - image_proxy: false # proxying image results through SearXNG + image_proxy: false default_http_headers: X-Content-Type-Options : nosniff X-XSS-Protection : 1; mode=block @@ -189,20 +216,18 @@ Global Settings X-Robots-Tag : noindex, nofollow Referrer-Policy : no-referrer -.. sidebar:: buildenv - Changing a value tagged by :ref:`buildenv `, needs to - rebuild instance's environment :ref:`utils/brand.env `. - -``base_url`` : :ref:`buildenv SEARXNG_URL ` +``base_url`` : ``$SEARXNG_URL`` :ref:`buildenv ` The base URL where SearXNG is deployed. Used to create correct inbound links. If you change the value, don't forget to rebuild instance's environment (:ref:`utils/brand.env `) -``port`` & ``bind_address``: :ref:`buildenv SEARXNG_PORT & SEARXNG_BIND_ADDRESS ` +``port`` & ``bind_address``: ``$SEARXNG_PORT`` & ``$SEARXNG_BIND_ADDRESS`` :ref:`buildenv ` Port number and *bind address* of the SearXNG web application if you run it - directly using ``python searx/webapp.py``. Doesn't apply to SearXNG running on - Apache or Nginx. + directly using ``python searx/webapp.py``. Doesn't apply to a SearXNG + services running behind a proxy and using socket communications. If you + change the value, don't forget to rebuild instance's environment + (:ref:`utils/brand.env `) ``secret_key`` : ``$SEARXNG_SECRET`` Used for cryptography purpose. @@ -630,8 +655,9 @@ and can relied on the default configuration :origin:`searx/settings.yml` using: ``engines:`` With ``use_default_settings: true``, each settings can be override in a similar way, the ``engines`` section is merged according to the engine - ``name``. In this example, SearXNG will load all the engine and the arch linux - wiki engine has a :ref:`token `: + ``name``. In this example, SearXNG will load all the default engines, will + enable the ``bing`` engine and define a :ref:`token ` for + the arch linux engine: .. code-block:: yaml @@ -641,6 +667,9 @@ and can relied on the default configuration :origin:`searx/settings.yml` using: engines: - name: arch linux wiki tokens: ['$ecretValue'] + - name: bing + disabled: false + ``engines:`` / ``remove:`` It is possible to remove some engines from the default settings. The following diff --git a/docs/admin/update-searxng.rst b/docs/admin/update-searxng.rst index 3ddb41b59..627ed03e8 100644 --- a/docs/admin/update-searxng.rst +++ b/docs/admin/update-searxng.rst @@ -1,3 +1,5 @@ +.. _searxng maintenance: + =================== SearXNG maintenance =================== diff --git a/docs/dev/makefile.rst b/docs/dev/makefile.rst index 68c708a85..bdf7f0f49 100644 --- a/docs/dev/makefile.rst +++ b/docs/dev/makefile.rst @@ -90,15 +90,23 @@ Rebuild instance's environment with the modified settings from the :ref:`settings brand` and :ref:`settings server` section of your :ref:`settings.yml `. -We have all SearXNG setups are centralized in the :ref:`settings.yml` file. -This setup is available as long we are in a *installed instance*. E.g. the -*installed instance* on the server or the *installed developer instance* at -``./local`` (the later one is created by a :ref:`make install ` or :ref:`make run `). + What is the :origin:`utils/brand.env` needed for and why do you need to rebuild + it if necessary? -Tasks running outside of an *installed instance*, especially those tasks and -scripts running at (pre-) installation time do not have access to the SearXNG -setup (from a *installed instance*). Those tasks need a *build environment*. + Short answer: :ref:`installation and maintenance ` + scripts are running outside of instance's runtime environment and need some + values defined in the runtime environment. + +All the SearXNG setups are centralized in the :ref:`settings.yml` file. This +setup is available as long we are in a *installed instance*. E.g. the +*installed instance* on the server or the *installed developer instance* at +``./local`` (the later one is created by a :ref:`make install ` or +:ref:`make run `). + +Tasks running outside of an *installed instance*, especially :ref:`installation +and maintenance ` tasks running at (pre-) installation time +do not have access to the SearXNG setup (from a *installed instance*). Those +tasks need a *build environment*. The ``make buildenv`` target will update the *build environment* in: @@ -112,6 +120,28 @@ from the YAML configuration: - ``SEARXNG_BIND_ADDRESS`` from :ref:`server.bind_address ` - ``SEARXNG_PORT`` from :ref:`server.port ` +The ``GIT_URL`` and ``GIT_BRANCH`` in the origin:`utils/brand.env` file, are +readed from the git VCS and the branch that is checked out when ``make +buildenv`` command runs. + +.. _brand: + +**I would like to create my own brand, how should I proceed?** + +Create a remote branch (``example.org``), checkout the remote branch (on your +local developer desktop) and in the :origin:`searx/settings.yml` file in the +:ref:`settings server` section set ``base_url``. Run ``make buildenv`` and +create a commit for your brand. + +On your server you clone the branch (``example.org``) into your HOME folder +``~`` from where you run the :ref:`installation ` and +:ref:`maintenance ` task. + +To upgrade you brand, rebase on SearXNG's master branch (on your local +developer desktop), force push it to your remote branch. Go to your server, do +a force pull and run :ref:`sudo -H ./utils/searxng.sh instance update `. + .. _make node.env: Node.js environment (``make node.env``) diff --git a/docs/dev/translation.rst b/docs/dev/translation.rst index 9de9ff2de..693f6d2da 100644 --- a/docs/dev/translation.rst +++ b/docs/dev/translation.rst @@ -4,15 +4,15 @@ Translation =========== -.. _weblate.bubu1.eu: https://weblate.bubu1.eu/projects/searxng/ +.. _translate.codeberg.org: https://translate.codeberg.org/projects/searxng/ .. _Weblate: https://docs.weblate.org .. _translations branch: https://github.com/searxng/searxng/tree/translations .. _orphan branch: https://git-scm.com/docs/git-checkout#Documentation/git-checkout.txt---orphanltnewbranchgt -.. _Weblate repository: https://weblate.bubu1.eu/projects/searxng/searxng/#repository +.. _Weblate repository: https://translate.codeberg.org/projects/searxng/searxng/#repository .. _wlc: https://docs.weblate.org/en/latest/wlc.html -.. |translated| image:: https://weblate.bubu1.eu/widgets/searxng/-/searxng/svg-badge.svg - :target: https://weblate.bubu1.eu/projects/searxng/ +.. |translated| image:: https://translate.codeberg.org/widgets/searxng/-/searxng/svg-badge.svg + :target: https://translate.codeberg.org/projects/searxng/ .. sidebar:: |translated| @@ -24,11 +24,11 @@ Translation - Babel Command-Line: `pybabel `_ - `weblate workflow `_ -Translation takes place on weblate.bubu1.eu_. +Translation takes place on translate.codeberg.org_. -Translations which has been added by translators on the weblate.bubu1.eu_ UI are +Translations which has been added by translators on the translate.codeberg.org_ UI are committed to Weblate's counterpart of the SearXNG *origin* repository which is -located at ``https://weblate.bubu1.eu/git/searxng/searxng``. +located at ``https://translate.codeberg.org/git/searxng/searxng``. There is no need to clone this repository, :ref:`SearXNG Weblate workflow` take care of the synchronization with the *origin*. To avoid merging commits from @@ -68,7 +68,7 @@ wlc === .. _wlc configuration: https://docs.weblate.org/en/latest/wlc.html#wlc-config -.. _API key: https://weblate.bubu1.eu/accounts/profile/#api +.. _API key: https://translate.codeberg.org/accounts/profile/#api All weblate integration is done by GitHub workflows, but if you want to use wlc_, copy this content into `wlc configuration`_ in your HOME ``~/.config/weblate`` @@ -76,6 +76,6 @@ copy this content into `wlc configuration`_ in your HOME ``~/.config/weblate`` .. code-block:: ini [keys] - https://weblate.bubu1.eu/api/ = APIKEY + https://translate.codeberg.org/api/ = APIKEY Replace ``APIKEY`` by your `API key`_. diff --git a/docs/src/searx.exceptions.rst b/docs/src/searx.exceptions.rst new file mode 100644 index 000000000..72117e148 --- /dev/null +++ b/docs/src/searx.exceptions.rst @@ -0,0 +1,8 @@ +.. _searx.exceptions: + +================== +SearXNG Exceptions +================== + +.. automodule:: searx.exceptions + :members: diff --git a/docs/src/searx.plugins.autodetect_search_language.rst b/docs/src/searx.plugins.autodetect_search_language.rst deleted file mode 100644 index 7b66a6bf3..000000000 --- a/docs/src/searx.plugins.autodetect_search_language.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. _autodetect search language: - -====================== -Search language plugin -====================== - -.. automodule:: searx.plugins.autodetect_search_language - :members: diff --git a/manage b/manage index d61237984..c51d76ddb 100755 --- a/manage +++ b/manage @@ -97,7 +97,8 @@ redis: install : create user (${REDIS_USER}) and install systemd service (${REDIS_SERVICE_NAME}) help : show more redis commands node.: - env : download & install npm dependencies locally + env : download & install SearXNG's npm dependencies locally + env.dev : download & install developer and CI tools clean : drop locally npm installations py.: build : Build python packages at ./${PYDIST} @@ -190,11 +191,11 @@ weblate.translations.worktree() { # 'translations' from Weblate's counterpart (weblate) of the SearXNG # (origin). # - # remote weblate https://weblate.bubu1.eu/git/searxng/searxng/ + # remote weblate https://translate.codeberg.org/git/searxng/searxng/ ( set -e if ! git remote get-url weblate 2> /dev/null; then - git remote add weblate https://weblate.bubu1.eu/git/searxng/searxng/ + git remote add weblate https://translate.codeberg.org/git/searxng/searxng/ fi if [ -d "${TRANSLATIONS_WORKTREE}" ]; then pushd . @@ -478,7 +479,7 @@ docker.build() { eval "$(python -m searx.version)" # Get the last git commit id - VERSION_GITCOMMIT=$(echo "$VERSION_STRING" | cut -d- -f3) + VERSION_GITCOMMIT=$(echo "$VERSION_TAG" | cut -d+ -f2) build_msg DOCKER "Last commit : $VERSION_GITCOMMIT" # define the docker image name @@ -500,6 +501,7 @@ docker.build() { docker $BUILD \ --build-arg BASE_IMAGE="${DEPENDENCIES_IMAGE_NAME}" \ --build-arg GIT_URL="${GIT_URL}" \ + --build-arg SEARXNG_DOCKER_TAG="${DOCKER_TAG}" \ --build-arg SEARXNG_GIT_VERSION="${VERSION_STRING}" \ --build-arg VERSION_GITCOMMIT="${VERSION_GITCOMMIT}" \ --build-arg LABEL_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \ @@ -507,11 +509,11 @@ docker.build() { --build-arg LABEL_VCS_URL="${GIT_URL}" \ --build-arg TIMESTAMP_SETTINGS="$(git log -1 --format="%cd" --date=unix -- searx/settings.yml)" \ --build-arg TIMESTAMP_UWSGI="$(git log -1 --format="%cd" --date=unix -- dockerfiles/uwsgi.ini)" \ - -t "${SEARXNG_IMAGE_NAME}:latest" -t "${SEARXNG_IMAGE_NAME}:${VERSION_STRING}" . + -t "${SEARXNG_IMAGE_NAME}:latest" -t "${SEARXNG_IMAGE_NAME}:${DOCKER_TAG}" . if [ "$1" = "push" ]; then docker push "${SEARXNG_IMAGE_NAME}:latest" - docker push "${SEARXNG_IMAGE_NAME}:${SEARXNG_GIT_VERSION}" + docker push "${SEARXNG_IMAGE_NAME}:${DOCKER_TAG}" fi ) dump_return $? @@ -562,16 +564,15 @@ nodejs.ensure() { node.env() { nodejs.ensure ( set -e - - build_msg INSTALL "searx/static/themes/simple/package.json" + build_msg INSTALL "./searx/static/themes/simple/package.json" npm --prefix searx/static/themes/simple install ) dump_return $? } -node.env.devtools() { +node.env.dev() { nodejs.ensure - build_msg INSTALL "package.json: developer and CI tools" + build_msg INSTALL "./package.json: developer and CI tools" npm install } @@ -584,6 +585,10 @@ node.clean() { ( set -e npm --prefix searx/static/themes/simple run clean ) + build_msg CLEAN "locally installed developer and CI tools" + ( set -e + npm --prefix . run clean + ) dump_return $? } @@ -701,7 +706,7 @@ test.pylint() { test.pyright() { build_msg TEST "[pyright] static type check of python sources" - node.env.devtools + node.env.dev # We run Pyright in the virtual environment because Pyright # executes "python" to determine the Python version. build_msg TEST "[pyright] suppress warnings related to intentional monkey patching" diff --git a/package.json b/package.json index 9c4b0186c..5eb3da891 100644 --- a/package.json +++ b/package.json @@ -2,5 +2,8 @@ "dependencies": { "eslint": "^8.18.0", "pyright": "^1.1.255" + }, + "scripts": { + "clean": "rm -Rf node_modules package-lock.json" } } diff --git a/requirements-dev.txt b/requirements-dev.txt index 0120291e3..e7fea88d2 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,10 +1,10 @@ -mock==5.0.0 +mock==5.0.1 nose2[coverage_plugin]==0.12.0 cov-core==1.15.0 black==22.12.0 -pylint==2.15.9 -splinter==0.18.1 -selenium==4.7.2 +pylint==2.17.1 +splinter==0.19.0 +selenium==4.8.2 twine==4.0.2 Pallets-Sphinx-Themes==2.0.3 Sphinx==5.3.0 @@ -14,9 +14,9 @@ sphinx-tabs==3.4.1 sphinxcontrib-programoutput==0.17 sphinx-autobuild==2021.3.14 sphinx-notfound-page==0.8.3 -myst-parser==0.18.1 -linuxdoc==20221127 +myst-parser==1.0.0 +linuxdoc==20230321 aiounittest==1.4.2 -yamllint==1.28.0 +yamllint==1.30.0 wlc==1.13 coloredlogs==15.0.1 diff --git a/requirements.txt b/requirements.txt index 2de33f4ba..adccfa3f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ certifi==2022.12.7 babel==2.11.0 -flask-babel==2.0.0 -flask==2.2.2 +flask-babel==3.0.1 +flask==2.2.3 jinja2==3.1.2 lxml==4.9.2 pygments==2.14.0 @@ -12,7 +12,7 @@ Brotli==1.0.9 uvloop==0.17.0 httpx-socks[asyncio]==0.7.2 setproctitle==1.3.2 -redis==4.4.2 -markdown-it-py==2.1.0 -typing_extensions==4.4.0 +redis==4.5.1 +markdown-it-py==2.2.0 +typing_extensions==4.5.0 fasttext-predict==0.9.2.1 diff --git a/searx/autocomplete.py b/searx/autocomplete.py index 6fb5537a2..aeb697a14 100644 --- a/searx/autocomplete.py +++ b/searx/autocomplete.py @@ -3,6 +3,7 @@ """This module implements functions needed for the autocompleter. """ +# pylint: disable=use-dict-literal from json import loads from urllib.parse import urlencode diff --git a/searx/data/ahmia_blacklist.txt b/searx/data/ahmia_blacklist.txt index 21e77a318..a39b0f8e5 100644 --- a/searx/data/ahmia_blacklist.txt +++ b/searx/data/ahmia_blacklist.txt @@ -5,18 +5,23 @@ 00068777b8c3937133e788cd84229143 0007113d199f1907550c2f7a3b8b2e46 0007f81cce5fa0b0ca7c28a3f0712e94 +0008a11c3284919c72db632c838a8daa 0008f4726e2b9231c09355c0a176cd94 000ae4137fab55b79427ceb4c9c78546 000daa03f6ef54bf0d4e3695eab85cbb 000df92f3d294a6892c0b23c1127ad50 0010e177f6fcaf499b1fd518046bde0a +0012600d3b4ab2711546b12df5ddaeb2 0013a67e08315e293c274799fa865e01 00140a082312f66c426de5ab0c2c6f1c 001489ecdac8b8535f34bb65a678003d 001491a9b5eb1446c8e32f8647017998 0014fe8ba26857f6b95509c8930c862f +00154aaec37ff868210a821997ccb4cd 001558846b21610dd4fcda432768ac50 00175aa5688040a89f3ca2278cdc5319 +00190bd4970a4b1b7e8b6ddf97f715e2 +001968c6b8f38e9c7719003cacf548c8 001a850b58240b760ed5c11821e64c7b 001ae86997f8b3e517a46101df2ac85c 001bc0d1cf3720142d61fce563588dd2 @@ -42,6 +47,7 @@ 002eaaeda61a0ce16b8cea135f3f62a6 002f82d895d220051c5c490f07bd2f06 002f8dbee02d6ce676d21c3c4e9a443b +0030b161c29ae495e4ffb138eeaa2296 0030bd6cac9db81d71f0ca9f58551788 0032223cd6dad0feb29a6b93756702e8 00330b4b5f58fae6332d011c3d3e4148 @@ -101,6 +107,7 @@ 006764d9f710c03932876234851ffc7c 006a36bb917187b130c66aa495f101d0 006c861abdef9116d28fecab2c234581 +006e9fbc0769af2560cb5cac7d1f4315 006eaef81ffc3975adb29e010278499f 006ed781ea4e05accc7727a58316a67a 006ffb781fb6446b4c8b09e940e9114e @@ -111,8 +118,11 @@ 0073818c20b2c7709056e3196ade537b 0074f2c9b3119b8c323b79c33480a3fa 00773a700e81e6cda285daa0e662645d +0077fd169d37900f00eb0ac12bf1424a 00789fe749e75681df1c71cbfcc4fb70 +0078e430a1ae6211b040d3ef9660fc34 00790c46e1c25d2c58742f710d6ecf18 +007a52d241782f8b6662cb0e49c96400 007a73add89e3bf5f8ca180184604ebb 007b7aaa348d99204dd924ab0aac069c 007be7c1c38f6f29f77b65ade2b01853 @@ -122,6 +132,7 @@ 00812eca773d35ae06ab6fcb9eef1faa 008130fcb3cf5cd9ef16518cfe1fb84d 0081a732299bc64118d888605b5341fa +008239a99e74a5cbee2557f7f406d217 00825efe11e3aa21ba7d66aecfe19357 008368aaa25323767989ad7af56cc017 00843a0a107a08765f1273518443634a @@ -129,13 +140,16 @@ 008518ea784c87e349a6ba2e85dfde42 0085d4a5d71aeaeede1fff8e7ae863fb 008627eeb67502af5b2627db6b98c7d7 +008706cc5c6b5ed485cea858162a4a1e 008749e26c3566eb70bf1d0f256e3746 0088a51fad8d3bbb59a101c4e50a9c50 +0088cc5f0e893e1a96e66ffc9684fa00 0088da9ac9893cfb8c52ca6ea8014b30 0089ebd36579ccde926a3718499a162f 008b0025d3f03ace831c0967fa4a0ecd 008bf15bf1014a3d9b9cdb3f24d0d7df 008c5c0d9174a0ae90c59cf2028557ec +008d36902d98fbe3df942fd5463c12ac 008d3bacba68fcc070de01399ecd7a4c 00918e625657958bbd5fd08d9a931c93 00928ba6bd24dfd87e12a830900a6d89 @@ -150,9 +164,11 @@ 009f12db687a50cf53bd4f520811b1c1 009f17df590c0874ca87d8ef66f1ce16 00a150cf57d2a0f73f4467c40d15dc6f +00a18371dfed2406b26683803c8a9382 00a2d9e07f21e3cb1c9035e60393f552 00a3b612a567540163894169b78b9c92 00a483f0af2c74d8e4d9e9b83aa80687 +00a51101e801a1d19b7c2fb491c072d2 00a52c8bbdd9ddcd6d761b978882ecf4 00a5822300c2700b0031dbebb691d6ac 00a608f9fa901deaa5dc1aed09fd7912 @@ -175,18 +191,22 @@ 00ac882ec127f5f66f5c86b471cf1d6f 00ac89262d95ef3f29f1e10febba7bc1 00ad5d010a28d44a30bcc2e9dd89e2c4 +00ad8a9382df87f4debe553ba988cfbb +00af9152be7008b4502891991848e52b 00b0dcc5348bfc33f3824f243a24f410 00b14adf176addf980b83eb857673d2b 00b1cc20a6acd519da09931768420cbf 00b2867a7621364a6f3ebc041969071a 00b3176aa3ac9172b3d113d8090a1b96 00b55f61f2b761d765ed4d4d403ad29f +00b6eb89080c8924553a6d0f76d9eeb7 00b7238d24ffb710abf3f4d212b02a9f 00b72c5fe0695156463eeef0b4dd08fc 00bc34c38e64b36ea90a1d6b70cee2b5 00bc825caac9e609b7acc13b44ed895e 00be79509dd4be21c2cfb20e2e54c0e4 00c0f51214c0cbc0d32b80caecde7eb2 +00c10a27c43aeb5300a3299f96d6af39 00c11318c753dfc611f2e297fe68f7a1 00c25827b5c5bb282ada3a46a9dfed37 00c2cba85a98f01f87edb2ac7a291584 @@ -199,6 +219,7 @@ 00cebe9444c60d2b191b9a5cdb64735e 00cfa5f3f0cd94b9cce69f0375552d5e 00d01979ba5ff2481549f3919d77b84f +00d1049cc64c221101954b89f33e4618 00d1dee7b7bbf0d4c522138c48d53254 00d297325d32283a85a11d966e70efa5 00d46343fead75e59c3d2b3ad9651944 @@ -235,12 +256,15 @@ 00f729b27968913438fbf67691ebef6b 00faccbced6febee8fdb1e86b7c71171 00fae345266fcc6fb69a7f1c97eb0199 +00fc99d3ef6a7422c6a53ed627d99695 +00fd4bb33f6395a23c3cbd3907dafa71 00fdb7c3c22a6656762388246ac5cc63 00ffff20b4066ed7a8987f4a937c26ef 01005747fc8f497cd8e0dcab8e54ea52 0100cd96b3a67310dd5f8adcf584c631 0100f07265eec28259b5b882c0ebe8b1 0100fb78301d60a3aa842d5171ad74cc +0101449b59b52d4f61b1e515ce389b73 01019b810dda9c5482e89521b22402a2 0102609d41064e91af238217c8eef55a 0103f981ed3351e36a12d29d631224f8 @@ -258,15 +282,19 @@ 010ea7123ee29776e390dba449cf9c5c 01110c139c92706867ecf10a66fff2b7 01112c8bd286e8f54f4a6960bc5f1ebf +0111385ac2d763fad49b44f2d6351f47 +0111dc2dc729371e0d7db2cf6af9cc0b 0111f597eb58bcf715807b568b2a1d86 01124ce96660fd45786a3dc1630da1c5 0112d1ebc8e2bddd8e1b2ee800dd15e6 01137cb5055be9e9e8f28231390439aa 011385fc99a8a4338d417d787c469303 +0115082fb7f782227075836fd0738e06 0115d243a945d9c7c986f7c5d201a984 0116d303c7f51659900e56455e80ddd9 01177c79cc4dae823970094c4822b6fb 011ab939c6a602b78b624896cddddd21 +011b32bf6df99d8eb946e6b678f0603d 011b5d530cece0a3fed2f1bee9a12256 011b68d0c9ab00ec43883d0dfe754975 011cb4aa42c9e9dd6a6480c80e4d71aa @@ -275,15 +303,18 @@ 0121791d3a0ab2b6f9adc85a7c3320ba 0121f5cc5fab9e26c0da5664641e8395 012320e2e8f98a3b1e4346a5db676d2f +01237166304f12e73df3b1aed7c20ecf 0123ccd7a408cb14e2416cc8f967fe08 012418c7b1781c366ece21273a2d21bf 0124cf594fd210d06a81cdc31ed01e20 0126a51f3870f1d3e391ecdfc393c277 0128a106afbfe6e82980a9371ba4d87f +01293d0c5159cf321d2e358af7939b80 012965053ea4379b5c08e1bccfddcc87 012a10e3befc963ddc87c63ae2911878 012b36bdf7cd2f6c7cb60b0b3210f10c 012cade01f2bee6433cc18bacf3fb53b +012cc4dd3e970207234cea4152763af0 012ccb6d69f1c3fddfd457451a88bbc9 012de4343dff50b94a2222d0f22b6de7 012ef974f5b4f307d168e00ada58cf96 @@ -296,6 +327,7 @@ 01343672491e3cefd8a2325a45c5907d 0134e00e8fc6faa9f87978e1a370f4c2 013572b9645eb7eb845e452713145563 +013643c433393a6df2b6418b1dbe81be 013a052e4b8e77a668d749519cdfeccb 013ac9677cc3e343a9cd7586fa4d6d7b 013d6ecb3b092f3815810894ecd3bbaa @@ -306,6 +338,7 @@ 0140a817d177b78dd06c98b8fe0e370a 0141508f609c6f475057806ac4fb978f 01422d583f50a0ed2cab337fef24612f +0142ff67a8f41b555f2766d3a623cfb3 0143eef9b9c5a94a40b95f79c0d835da 01440f491db052b0b7918508ed138362 014460c8ab46c9bfbf64c740f5fe9768 @@ -315,11 +348,13 @@ 01468a791524a59de90395ba493be798 0146b984f25bfe6382258c47bde4d23e 0147327639f2821d0b306aea87c2724c +01480eda40aeb343e3d6b64adf897368 0148b20eafc7a4822fee536c4532ba3c 014951232e2754a25816c60ee9a5a7bf 01496e704e320321c1ac785bdc8dbc03 0149f1c3f65a9175f3805e82c8ecea62 0149f88feaada111d8acbdf6ae03cf7c +014a03bd87f76907523860f7912803e6 014aa5be8354f305cfae3d891c32ffc7 014bd94938c409dbe20c828201b77748 014be60ea314977759a3a853595f06c5 @@ -341,6 +376,7 @@ 015fe7fe5c730007b91c95fd24157fc8 01609515a753b4134a1c5fde01aa3839 0163dac6a8172fccfcca8569e7f7b128 +01643351765c517eef26ebcfb2305d74 0166b88b1367eacd9053cf9a3b8bfc8f 0166b9829bbf2f34904259f2fafa78cf 0167027014cec4ecf85633de9d095ac6 @@ -377,14 +413,18 @@ 018a97ef1b4b8750a08606b7582409a6 018b759cfad74306016a57e8cec694a9 018ecf2b8adb2004617eb9198283d809 +0190b76b5a1399ec08986d7637b90a83 01921db4fa7a1e71ebfeabfc9b99810b 0192336fcf7afb7e47cb030d3390e112 +0193165bb6c1831dcb887ae66bf6613c +0193eae585b624d664730a55897d3d3d 0195d42d2711bb716dc2ec9f74be17ae 0196f878b3b635130c5bb06b037153a1 01972455883dfb10b1a86a4007b9fe94 0197260635dfec18d1ca367413fc20ff 0197fd936ab57b542a4bffceaeb2d6f0 019800ad8b7a58ef8343a510d9d54981 +01996ce6f349fe9158941a2a565590c1 019ae64ed14fde2e9c6fe55e801357e0 019ed8a1a90459b1040a42194628abbf 019f1e59e2117a07a5fce9f4fe7a7f58 @@ -407,6 +447,7 @@ 01ad115354fb2d23e8339b9d14d546fd 01ad5d8249446e785d0568d24ae5a59f 01ada61c451b826e8addae3677024c59 +01aeb994a3d5eb75b02310378c3a6c77 01afc10b4b0e2a1791a151067415c938 01b2365e16517276e42306a516453589 01b283255880ffd6de7ce731079eec8c @@ -414,6 +455,7 @@ 01b5511b806957f39197d92721b23d25 01b55b5cf8d89ea3ace1d71283c15001 01b70cc3d4b5d4c2d3368f28a2945e8a +01b72048eaff4934722383cafc265671 01ba534107b465210cbc1919047f65ca 01bc384c9a5c250628fa1ab2ca822ebd 01bc3e531b68b8062dfb0cd50dc15e73 @@ -430,18 +472,22 @@ 01c65e8a0d98c04393bc30087ed5e088 01c8635bf9683e71b9e794b4c5e85229 01c8b71be1e72e323f5eca32601352aa +01cb307ef090efe10d6620776a1a70af 01cb9a7c8633578723085a185342224e 01cc4e13d5ee5c25fdb3397ee2adfdd6 01cc719cf0372e65c2bfe3b3871a7ea1 01cc73f7be6c6a09f1405f21f737a364 01cdeaa737f6ce40580841b7f7de9ffb 01ce4cd52aee7cbb98badf2758767ef5 +01d01cc228e5329885f156cad3e492d0 01d26e1f090b2162556cfecadbe406f7 01d2bebc3d521bd49cec1dcf1807b861 01d33321a4e739d55afe67607af95506 +01d4215c2c9a5856faba1f6192caf831 01d55f532fafe6f8eac22795fa50344b 01d697c9fce0d7df93008c6e6a1d7da9 01d7a435a48346581dd44056dbc4a25a +01d864a597e0c244f24f47b7d5947563 01dbf7385297df3709c071055a0bbe0f 01dc506de4a7164f19c43de147ba8582 01de2f93e006c6bd20692c7f26393e89 @@ -453,12 +499,14 @@ 01ebee4abe5c80f3d568291699c44804 01ec0d8babf3a60738e0df1a309cbb79 01ecc3aedfd003cb7f12163143771215 +01f0164c44ba362c82be47c685f22cc5 01f190140af9becde6cf1dd01fcd459a 01f35948fc5b1c422459113ce786ac79 01f3beeabe511aba1294150badcebfb2 01f513fd1eb99fa4f710a2c14585803d 01f56a7b5d42e5d01db4f849b9982aae 01f5f96056ae4904e250eb05e5b60927 +01f65f2d6642a54fd31120c97eb4a4fc 01f82627d008e50411e8f8d37f6a4bb3 01f8f2e292f9b9f609f3c673cfcf57e7 01fa008eedea8531f2751786ba49bc82 @@ -482,7 +530,9 @@ 0206421a594c96b7abc79a3777d9aed8 02077907efc34ccccb0fcfd55c6ae156 0207c80eb3b4ebfdf06d619add983134 +0208aa82cbcfc3619bb0e9baf55a9cc5 020a26bd2e07e1340068bd2bff420d3b +020a3663ca4809d49a3154ff3e3ddb3d 020af969e488bbfbd346ad993d54bed2 020b298a8af3f8e80374d2b4731f2db7 020baf4cd4ebb620c88ba26a47e5758d @@ -496,6 +546,7 @@ 02100bb2e5daf55606806e56f1a33624 0210e4e4bef89bdd97c3cd6ff4d02a28 021127e6a322f90ed845c03e1f361276 +0211478f47f03bd2ba278665082d405e 0213d8700ae82035cd1525a57c3432ae 0213f4261539935c79fc520ed2a5f0bb 0216b34293cbcc4eb3345075ed2b4ace @@ -517,12 +568,15 @@ 0222a6e2f6dcef958c36792b7b02091a 02274c10044d60a4660b04aee89d38d5 02282271f3bc4c150f2ec1db5af6bfca +02299bdc8a41eca9c136b63b5d4a231c 022b6d7e7579558f6e5cdda870660e95 022b994762ef27f4aa15705397176921 022d50338ff9502a3dfe34c4928b0762 022e0663369e511976922c0f3e0c3519 022e619b0f3bd39d5996f8c01524e98b 02308eb942978927cc047c9dc98ca821 +0230b6ef7586b06614a08d8fb534f739 +02330493fd026722875554826d52f08e 02338f61dcfc26b78eab670857683d91 023434be07b0f20b4c0633a67e3f68cd 0235a24f26538439a33ccc784d020bbc @@ -544,11 +598,13 @@ 02458a0d337e7dd8364f4bdf61a088ec 02464024db78d48112dd43c9b4ba6d17 02465966c0859d2869c31c0279d51a87 +0246843c3c1af4b3591cf1bc86296054 0246be88124f16567438e56885530d78 0248a47ab75b938498a34463c56d1973 0248b116ecd91230882a25a65f7faeef 024b09b9bcdad171018d70220d049c4b 024ce72b3985de1648c5afdbb13bac49 +024cef308db2e072010e23c2f8586e76 024d79f57506a4994bd3cde30b2a998b 024d9872eb6a61e6de2ff2976618f07f 024eb34f324162c20a89dabbed6cae55 @@ -561,12 +617,15 @@ 025514110e4af7f3b83aa4e8c3cf50e6 02551fd7b9390cd9d5221052b24d0c81 025528167aa6fbfdc8f0b4d4be8d27c0 +0255a9625951a7971b6b6a922719cc55 02596da0d2e5bd18f5ebb3515a6ceb5f 025974da9d4e2b73c626f6fc94861f50 0259e254c258e7ffdb51c350ef5eaacc 025b8f1a86222f25aa7ea4709499352e 025dcda06ba7a28a57c0897e7911af9f +025df4c091b982a887fb3fc6cb2bc147 026113681f10065fa33019d53db8d884 +02612177ea63a8292d3bd4a4ac3fd6cc 02615cd07a007555495cec9e39475518 02626cc7d639b8dc20f48f3b33eafc7d 0262d29e4da892da0a3d6d7725e86e2f @@ -591,8 +650,10 @@ 02785539a0f6319a8e4cf7cf420367c9 02791258c0df53c5528b48260b57608d 02791a61f15dd9bf2b94b22f4d303a4d +027a2e35497f5487470aa615ea9e3271 027be8431f9547b4bf4efa1d373d8a76 027d2c8a0f15afab38f185a661a12f63 +027d7597dc89d46d75af1fffc744897a 027de4c716a4fd25b40a01aa68919c85 027e826b0358dbb97ff8ce2f79e7f5ab 027eecc41e1513c7575cf9219ac0c6a7 @@ -615,18 +676,22 @@ 0290f53bed53228a5b9cc5f554396485 02915fbe40beb5f111fa633de7fa6ef9 02919b8c743eec2eda2b79cea6568496 +029445babbb3e019536355687a1d213e 029494f99b072a60690ab6314294810d 0295234924c5e11f293d34e9d449cba0 0295bee2cabf9157d24940279317397e 0295ea4ab97988b8145ae756937435cc 0295fe6011a3b7ac80cc51f05554bc21 +029832e5cd77698e49b4031670490679 02985689de2b63d83531b0878c1a4713 0299cc2795d079e37217b439bfe79510 029b61285cbe8143e129495951e28b2c +029b98a25eff95a2c409f317c52bc2a9 029c585134b256ada1805781fa7465e3 029ca164b97ce75db17ebd4386cb5db9 029d5c9f1228d06216d16298d78ba2a0 029e010b14c3e31860d36f374712739a +029e867a1e42dae2e95b1fc7190e0de9 02a004ae3b431ed01cfcabdef7482f3b 02a11c29f1d7c738fb0864cf6c2a6ddd 02a1e6a16f2510ec267fd7a88013bb01 @@ -636,12 +701,16 @@ 02a97a0b65cb5e39cdaeebc8f99e1903 02aa89bc27e97fb8f603e916167a1e43 02aa9cc099f5b80042052b1a0dd8f47f +02ad076e0afc6f5225724fa9bc3f4d82 02adb92f94b561ba860f0279e68628ae 02aeab0f481217e889bcf9fa3e8a0718 02aeef5bfd58cd9fbaf9097e9e8f3bb0 02af4dfb97c81949a862b03d8d2149ab 02afb5d8f2c11ff7aa3de2dcaf583e5d 02b19e3221162da19b50051d02c5248d +02b1a9090caf1cd126166307c3763621 +02b27b96cf1fa16f9345089fa22d04d4 +02b3f13095e0f9b7e31f9467e9a4bd05 02b48fc0172783c9b8557561450129f7 02b5286757b668d3e327f99939727d6f 02b5a082c859b21c307bb93186c3b4ee @@ -653,6 +722,7 @@ 02bad9cfa6059923e06eb864875c814f 02bc6589cc54fc58e0fbc9e7890b101d 02bcbd327e9eca8293f2d2a6c211baf2 +02be282fd79179cdcf81e144c98656af 02be553e9537d6e1f7ed1617d4432870 02be705a024cc47ce53fc57ef1cec8bc 02bf552068d314b1ff55579514507199 @@ -660,13 +730,16 @@ 02c22724fdeb1b77c9d83d171517aa80 02c22a1d04f0cfe77f5fbe2b58a08843 02c2836277a35ecdb9dc974a5bc8f477 +02c41d78a01d2bf410a42c42c41ccb4a 02ca0caa53e5c048db859fbd95f0a01b 02ca68a314310fa2505d846ee5bca79b 02cbe12eed8def9500203f3254eefc77 02cc2dc5875b7e4e3bb3dbfe1f1a8bf8 02cd59a679c22263ce5eebc55da36619 02ce9710b089cfb5fa2f735acdc82348 +02cf7f4e4d0a4ee49897e51a29da0978 02cff67f28c0f923d7fab7ed20e38335 +02d24d7814fe6b7e23746ca9ca0a2ac3 02d2aeeeeceba3f73c168c66abfcc418 02d32322bdcac91930ae15507d6542a8 02d464bfce934d7a4f23959210003aa4 @@ -681,7 +754,9 @@ 02dce4868ecd8da4663bddb2d8e65389 02dd51f34a22cea47190c97b5a32b7e1 02dd748d15607f2cf394a197db7c7bf9 +02dd9450c4f254f983ca00f299ad9836 02df17b74669d108959d0955867e9079 +02e046897c575970038d92977ba6f750 02e0ab99c1c5376fa563b8ec964057ea 02e4bec7bb3f01775faac027134114b8 02e4c20d55730f87b2be412be6a77731 @@ -690,6 +765,7 @@ 02e8af18f9b53fa169cdd4d92534c1cf 02e90843368973d9b38f070c2bb9087e 02e9d16eb3d0b953f6970b55c745b9dc +02ec006a14d01bd7f30e1b3cb295c385 02ed05a6c93877140d549c05c1b84dfc 02ef7c7e15988e56aa0efc2885e74c9d 02f47953ea98adcfcb7b936b005af2f2 @@ -709,6 +785,7 @@ 02fea5bcf3a85e295cc07c0408b95783 02fec9aa31fdcc18c98ea5beca67dc45 03004ecc158799365cbbe9d213478cbd +03007ca8a717667e965f54a4c4635c55 03011ae0150d9d2274143c87e66e073c 0301d66e9154ea5c3eb545ea55638998 0302b771ec58fdbd233e755c4cfe8192 @@ -720,6 +797,7 @@ 030841044e72505b4d12bc59cffb08ca 0308813ea03b46ea48b2187dfed16267 030ad459eeef5d137028921bf7bbd6a4 +030cfd4b8713e856d5f252ff18ff17b2 030fa831a4d53db073a824f4b999ad7e 031076eb7d443e1be4977786b3a923f2 03107c149ce3594fef748157b5059d0c @@ -731,9 +809,11 @@ 031631b5d6a28b4ecf92766ad812be83 031a364030bcce6f1a88731e2924736b 031ab14fb1eed153c5871560a00e93c4 +031b17e0f9f38ca30bd7068f5db8f7de 031db853e4ea43a1234b055d72aa7856 031e7f236ab67ac6207cacaf713afdc6 031f568a79e6d94d50aa7ed3c46bb501 +0320036d86ccd49ba6dcc2eeba084d03 03204f58c9d88a3abe2b4fb2667e327f 03247d30da34a1dc8cde700dbd5f7e41 0324bc6c45bc6ff68c114f4120ca2169 @@ -777,14 +857,17 @@ 034dd3de1aeeb36cbdb9d6d56a62166b 034dfca0a3b9580b34d137d3fa6c84be 034e99af56bbb388982cba4de46961b8 +034f5de030fa810bafb7758afbc6679d 034f7318933d53dde4870df4fd2b12c3 0351e0d2c113dc8dba239f699ec02d4c +0351ee6dc13b41686001cab8ea2488d3 03535813c7d9215a1e2cbdddb84f044a 03541c36bc99203553140a9dc0d86d2d 03542701b5fcdee9e7397fb9ccb84a5c 035444906fe565f3ea2684655c55fcd3 035507345e9d1d25cb983a55e4e92e74 0355dfcc33108181db526ac37ef673d8 +0355f17a3d208dd1c908faa0f2f9e93f 0356db8f9eb41fec9e4394b97050ec52 03584f44c383541682bf18f1515ba348 035a2b6c907eefb47fd3517b3482938f @@ -798,6 +881,7 @@ 035e7485b58fd1a001ba9d8cda365a6d 0360a63b56447a9be2e0d4ea30d905b7 0360b6691ece9a443decfe75ccd6ff71 +0361071b12592b1cc5e03a6542e315d5 036221ab21ad3398056065507aa5a292 0362fe8b65242ef1cd0a79c36b1b3499 03639f51d8804bd28b9e8ece1d33e0a4 @@ -817,13 +901,16 @@ 037294d81e951e9e828ede9d2d8ea45c 037431e61598091343915d0b2ce61618 03752147841942c24935dcadfee218dd +0375c0c9613df1ae2ae96e67f86c36e5 0376e128eb9991bfdfa60463ede35d26 03778d383b60e5cd046c5d25ea719409 037893378fd0a43a662f88a15db42ef7 0378cba3163ee5c3f664d7b93dd2719e 0379d9ffb1a1b1a19971649d46e8f34e +037d58e0dd66c94b02336175236163e1 037f34b93a0d81bdef370fd37441d8ec 037f9d59c641e87901b0f7a7c78ac293 +038057dba5728e9406117d91fd7bcc2e 03823e50e7966d379e8345c3686eb5fc 0382c1e1683b8c66620c1b2b6bc2ac0c 03860b5d666165118d7dec57383f417e @@ -839,6 +926,7 @@ 039097d67c3be66d2d18530fd6d45c42 0390ad05b5497d5832fa2c9c5cb5bf36 03916642450413204f2adab84eb7ca3e +0391a2bb4e2db6cb2ad8a6ed1e99ee6a 0391efae80f8bd00fca9a6006a32752e 03930679e9243bcbad11ff0d0a98b4d6 0393d6565a1da0a80ea4dfd82499a8c4 @@ -847,10 +935,12 @@ 039a16ed4939decedb70ed4211741b44 039b47108ee41c1cdd2a292f465850cb 039b4b1405591d2b6ddc2b21b892d969 +039c102186f0093257dfb5751d7aa15c 039c631a4f29b1a524403e709cae2f83 039df073fe5630a13e3e47caa45362a6 03a1b57ccedac923faed4913416aaf1f 03a312a381e905988ec9e4650aca8658 +03a3e17f2d30c4b3b94a513ff1eab867 03a3f565eedbfc534b4101b2b855723a 03a48ae1b7e439c894a52e91c585c83a 03a57237b8847605a332d502610513c3 @@ -880,6 +970,7 @@ 03bd6ac2d71dbe3706e9412a86897fb0 03bdd735d1e277aa53d74005664347fe 03be7b1606d04df6d4e7faf5ad109016 +03c21154c1447e43ca0f0f9f3369fbb5 03c3ac7384adfe7e496b275232264c12 03c48f6b9404ba17da9e48cc8a7a3f4d 03c52ed902171407e12ebeb9e7869a23 @@ -902,11 +993,15 @@ 03d27391ac01b68e08ca9dcd116cfe7f 03d4f33fb95ceb193aeb6da30e8c0049 03d6673ffa6cda7bfe4196cf700f211e +03d6790ab5a7935676a8c79d450c14b8 +03d6f6f5daa8c50c2fe50e46a5397353 03d852a870e88395f0a43730c81ad3d0 03d8fdb10d3cbdf328ac85fbde559abf 03da627e020782ff63c09790536c413d 03dfb64948afad2072c4e4a400e03ad6 03e0cc34e2c570d56a90168c17c4a3da +03e735d4d6426ba3a735ccc01c7d613f +03eb8e4926420d871667bf90a8b8ead5 03ec33ed97a4b5af1b6147fe966771c9 03ece60d01e63c2d750731a56b027fdd 03edf07e831e59422f6d33cf7c0df622 @@ -922,16 +1017,19 @@ 03f8347a88e49038af5903d6587fc9f0 03f911dc49be6546f47eedc39470e23d 03f929bf2cfe930a9a29e42a49fedd7d +03fd5c8f9fec3765b1b62c79e5696b40 03fe06b70337827e13b7923276f5058d 03fe35a06ad2015ef15f0be79d960289 03ffd1dfb83547396200e3f325f40904 0400c08ee9a0b422b72fad8e0bba3015 0405415ce367804903f55f082948ce6d +0405a884e1653d6dfd448ad9e0dc002e 0406ec05d5a5e4115e43103cdf8b2f0d 0407213be82c0e2c231d28de52e9cdb4 04088198e951a549508ff7ec3516a6c7 0408ef4ee68e71334142f1d491345adc 0408f93430c0ecebb8916e67d62da56b +040b63af1ee7cdb3ab57f2ee30638f59 040c8e1e8fe3614ccfd121cce82a4ee6 040cfe38ece05e5c7de6d43a41682037 040d6664ab81b28da70ff52b95c24d5d @@ -948,6 +1046,7 @@ 0410f54a3c1dff6ec2d19e92e5d0415a 04110020a853e508f8fd4726cf46ff48 0412a79d7ad46e154d7f5377de00a9f6 +041647e1e376ee30192aebc0138ae6ad 0417b2dd5d83119821c396b58765380e 041bb5284bf0b6777c9b11a6b8468778 041c3959f01271d377a3a8467e129f2c @@ -966,7 +1065,11 @@ 0427cbdaa311bd8f5275604f90933fd6 04286bf4dedb2dbd9723474c2a1f217b 0428da0dbaf654291f3bb753a145a199 +0428fd6aaea85ee8a8216389517c36bf +042a5ae05064b56da8a12f33300d8d60 +042acd38b594f6a5744edc478ae3c8ad 042b1e3f911881cdf53375c85dfda12c +042c2575e93cc9025d10f73108d1145e 042c7806c3b183c3ccc6fd1a2cb61bce 042e8829c9a4a30083ff4a1558f1ccd9 042f0e02960abae64c6fd559566cc5c9 @@ -977,11 +1080,13 @@ 043364b193452353b48a3b485c15eec3 0437aa22f8fd167a2183b22465829d7d 04392289403b44b5f15a1d4f37113baf +0439d6116eef3ebde55ddbf0a4e724c1 043b8210432235599c7ba4eb5727a47b 043c112848fd8b8d01ef30ce7a18c7a5 043d3eee7d90f8efffa564f423ee4b8b 043e4f61fb03b8355dd5515dd5acae62 043fdbc4e305130c6c060cc93bd746dc +043ffe2e6691c6d384b6d3eda8b82c45 0440cc87225d6f2f289e8c1f7732032d 044341ac655e93291393d626d57d90d2 0443a94fda03bd101acd746195db542c @@ -990,12 +1095,18 @@ 044541e2068c47897f56afe51d090d2a 04460fad5a0807ff7c4404240eb17f4d 0446dc34fbc9f798158407db20ee43c6 +0447ee5b32150ace0c078545dcf35417 044954eef4e248fa468c4fb48296b691 044981f1c71255f82f0bb92ec8998387 044b422b478fe5665332de949b380707 +044b499329f6647290779f069d22968b +044c17d4aab1e1eaa9d6708f395a1517 +044c30050c18b253562d31b0a9d7ca93 +044ffb43da988165fb4eaa73e07da5fc 0450f9398cfeb91a0b56590b2b4521e9 045234033d5e8da1cd115c20c18fd0a6 0452d8c9fb6525d98b9b648f3baaa5fe +0454fa2be5be897b05ea490b87c36305 0455c21caf9061ab182ce5331e914a81 0456b3e9dbedda1513e4254cbf9732a3 0456f35a2e6136213e71ea02e0620d55 @@ -1004,10 +1115,13 @@ 045a3a11bfad512d2b620d2be894eeae 045af2417bf684d766a746ab2d740f8d 045bc1430751f9542304871b79fd5c76 +045cdc8ad078dae71854fa9888a2336d +045f2d5b46df7a53abfd46aa254c956f 04611fab881877ec1deba79890e0d36d 046134bf0d16f54fb759b6384d26d525 046343e2c5913d87bdd77495a1935d36 04645397d1b5dc450dbf7c57acefc731 +04647f0a790c5923b4b7cf216eb36deb 04654bc80681e73ab8ae27f7ab83de59 04678acdac1bc8cf8a40b93f77d4dc30 04679810f6488b61b093e0a0b83eeef7 @@ -1016,6 +1130,7 @@ 0469f5dbffa4ab884d73c6a5b8b8f93e 046a67473d2b30356615d4b8ab46e504 046ea1bc9b9697c1b74d5b407a68f911 +046ea2a7e2660e0253c67449a3a04d84 046eab205db7fdb1e617d025768aba18 046f18fe68cf2944678d9db7e310225f 046f2b67df86a6e3c53a5c3c4d787d72 @@ -1023,6 +1138,7 @@ 047112c87e60071b8171fa29ea621b86 04718655e06dc9f3b44e05a26d3e02d6 0471ec08191f8338694c8ffcc2c9df9f +04727cb8ca6f9d3d20195c9b42ff9f74 0473fe28b3e5ec3f388ea97d1391846c 047472c1e59ccc401cb5fd933186d81b 0475a905cd187058fb0c5d0c779e1fd5 @@ -1039,11 +1155,13 @@ 047d5d604539e03fb0e8e20ce37b88b5 047e5e459b2115344548741a6a2971c5 047efcfc8548d2f93ba0d0f86cf2490e +047fbb5f798b138bc63b5c7ecd53f94f 048296b8f405bf62ee426f6a6d1efcec 04845e505bb435cb464415f8c4068328 04846dc33f2e6c5b1c5a129efd659ca3 04856bd8582caadff7025c99db3b5b34 048655817dfd90ec0c83bbd9503eeedd +0487b9c964212ae977186d2f593d8d4d 0488db717913871d5a0cb557c5ba1d99 04893747b622e6bc4e6cca8dc09d9a43 048940101fbcb90f903cadc03790518e @@ -1061,6 +1179,7 @@ 04962089e7359e4cbe60a85b0a98690b 049b3dd88e23ffbb84f357cee06e8c6d 049be8cda07b90c4516286375a57aaab +049c76d5aaab3536267cfb499b3d84c7 049d394d7360d8d1af07c04057c19458 049f0f07992ec5e755855fb1e0562bf2 049f925fdd8ea1921bf822f06d592c1b @@ -1071,7 +1190,10 @@ 04a3fdd69f44ab097ef46835262b7db0 04a627438a4333145b3c17185f601244 04a637ef8820e4af1f4b16bfd8d864ed +04a6ac076863c22237269505965fd5d6 +04a775c0e473d138ad49b43a9bced417 04a7bada4152a9b3b0c49011699fc761 +04a7dccc02c4ce812662e696f2717653 04a884da282d7e9f7bd9eaf0ee9fc644 04a8c4a47cd42c27d03327a71656a56f 04a970605223478c67fa60aa2633b323 @@ -1091,6 +1213,7 @@ 04b29e460c3838fa2234681600e0aef8 04b5f14eed8cc3a0e50fb9f1111b80c8 04b67be655edcd4ab46f1f0cd001a04d +04b6eae3f0f7845f4f42ed2b47965663 04b6fea9b19f438922ab3cf358ba5b64 04b7ac97e5b43dd83f727c724554ad7d 04b7c83911cd8a8a4166fb432163fc60 @@ -1129,6 +1252,7 @@ 04d579338f042a5c6035cb044046e514 04d6d9afcde4a766f021b11751c8bae4 04d8159d73072b0cc91ddeee8e29b0f1 +04e092bfbdeea12ae49a5e71896def3b 04e231a78948bc752ea8cd53cc09766a 04e2aae567e87f0968b53baa76aef4ca 04e3961aecafa87c1460890d4b586856 @@ -1137,6 +1261,7 @@ 04e78c551fdc3103b330dad63d7df7c2 04e8868069ea2f5b09239e24f4d13e4b 04e8e9c9feca5fa86ed60dd2953efe75 +04e902fbc5be9fdf82b96d30f5cb6dcb 04e991dc9a1b39b4106fe3b108e5c72e 04ea261384887ef6e8f5602a9a24a024 04eb62572650a30070a4f213d7426221 @@ -1148,6 +1273,7 @@ 04f3737027e64c9d26e5f0db1f517c40 04f3a71a99a1db79c0f90caa67ff2f83 04f4357e7ca3413b627b1d1e5e9fac97 +04f5e03258d868bfbb19c2b7c9492168 04f5fec56796218b247a2ae982bd5a49 04f6501bf06dce3c6794364647246b4c 04f67a1cf5ba9bd74974e90ba6394c91 @@ -1155,6 +1281,7 @@ 04f7c99fc7173d11252a458e615d0437 04f8152ae321c785360b8f80fcce7018 04f941f4387f17b2207620f7e1074cc0 +04f9e4a29b7bd170b4b2a48f81fdc957 04fa043426517641287fd531c680b0a7 04fc3d0890a5f5b48897597d588e1b3a 04fd42af2b19fc04f6eff52957c3ed94 @@ -1164,6 +1291,7 @@ 0503396728cdf8c663c8b0aef903d6e7 0503eb131e712a38b5ea49a834002d8d 0505b2bf267347d4936468d0980b64ea +05069066d888165bfdc325b8bf8e1d15 0506e3c895d5b362f55457eb20441cfc 050738a47d6244f7c5cb4d6c8a3c87e5 0509271c25c2ccc40a47d139f485e442 @@ -1189,11 +1317,13 @@ 051e5b5e71a97f8c6c8a95be7509ddb3 051ea70f37c7c634b8360a3a65e97702 0521b24f50808d79ca70db610e0597cd +052292e5bc804b674eac898ef4a8733a 0522a2fbe708e789feeb93ddf20a7a05 05232121fadc31451ef7e7195fc9dd6c 05270d7cec37917479db66d3d6c53396 05277ebfb41a025217a9502128da748e 0529f00834d07e50e25f35c41e12e187 +052a348a83091e61d70cdb8de6cd6acf 052a95fe99fb2f97809d96016a99fe52 052cd660c6a6199a75ee13ebdd93cfb6 052df63af9faec2320c416cd0bc5d090 @@ -1204,6 +1334,8 @@ 053373f83056273d767e164743728a84 0534859c8a95c2f160baaa3093bed9b5 053487b44744d95157b2dff9ef5abbf3 +0535dd896b5262af095437631c135751 +05360845810d7abaf93cf0e6ca73b6af 0537ba79d7cd3f07721ead8880c95181 053805df66ea54ed4806fd59dff0cef6 05388659ef5f396e1fe5c8294dcc6171 @@ -1227,6 +1359,7 @@ 0545cde86e1960b0d65e5524dfdb77a5 05461271bfc021c1614b8d4bfef4c614 05477b55380de825f09a2197a74c71a5 +054817cd460a43e3f6ca7ad955296745 0548a9443138d2ac97eab4026721cb38 0548af8ce5cf16c5bffebaa6811eb624 0549d54b2e7c305fa6b7cb5e1eead3b3 @@ -1237,6 +1370,7 @@ 05502d40befbdd873a655f17985eb6bb 05522a5ff87d80d13c289d5feb0ff696 05539a38a1c7a1f7c7bb6c0d10a9748c +0554dcfd6a2704d72bcb231c7ff536e9 0556db1a07773e58bde94cbd16c3daa9 055726929bf443dbc401280db7fd1891 0557c57356a49b17c2eea68f7b02c2d8 @@ -1254,6 +1388,7 @@ 056119904b2ed7dd2c523a92b079e598 0561846850ff4f8d9796fd347f44236a 05629a329849675dbc855ddb2f30a030 +05638e409c0a26315bc2c74b1668ff75 0564aa25224fcde6f7ce48804b026826 05666f10162b8efc1aed3b9cc4640da0 0567369b12ab42e96fa79b2bf35b71da @@ -1264,9 +1399,11 @@ 056bdfd7b59da8d1e7298d5a2d7e49e1 056c06e9ed478da3d579c25c09f472b8 056dfb7ff8c3e6fcb15689617587b347 +056e6a413252b16e87689827e93564ee 0570a1967b200458d8562b08bc503000 05711d7f203b22cf83ec4361d64e47b0 0574ddd3cc1094c06b9fcf696e7ab10d +05756e54121a6cccd4b6e6d7c4815830 05766442573c854cc8934b18024483b0 057914ab7a2c05ff3b6744fc9cf78df5 0579b7267e32af48471cb65fa55efc20 @@ -1285,6 +1422,7 @@ 0588348956cd3245b06f4ef172e32515 05884a01237835db4b770737d2805974 05888716179541c40ea495716476521f +0588b4123f13fa92d97de1d592a3892c 0588c2fa81fd65053c78fb0a93cbd237 0589949c839647f902a88bca6a57afac 0589d01dbb2d99281b3655d7cb7c3f62 @@ -1298,6 +1436,7 @@ 058e3c07cffd4d782bbc343821c97dee 058e7348ce709e3336c134228b3afd6b 058fb39d7471427200bcdf9315604dc5 +05900cf5b739696451c49483e30b87d3 0591ec877dd2da9792cef356c0a2af76 05922ddc93eddd17d6073fb8b3fd4657 05924b1c6cf69e43a10e20cedd1c3760 @@ -1327,6 +1466,7 @@ 05adbff94ddb13952bb5f21328d28f31 05b253b2998eb5c3d25189db981f3976 05b29e6bcbb680e573ae290ea0138dc6 +05b33f81ec46429f5fe96ddeddf303c3 05b43ded340b78e681499dac34454a20 05b48eed05b4535421d3a8d8b6303881 05b4bb66c1be417cdb1839be725c155a @@ -1341,12 +1481,17 @@ 05bcb568df3348180c854c30cdd03e0f 05bd849e841ce7c432d7fba31a19fbd1 05be06d93692bc3b82873530eaf38d5e +05be7cf29d4410dd7ac66a011ce57e5a 05bf5f1e721b6f9c39ab1e260e246df3 05c1097756e430f6084dec4c981739fb +05c1dc764dbee46dd9e6c779c9c6689a +05c1e130f070e68fa16311c72ce80ef9 05c30f415bb3d75776ad9c0294f0dc20 05c57dbe9cf80dfe02b2e29f28c65262 +05c6a9bbb3986f7d0aeaa65a9b6ec8d9 05c6fe65b41f24654f98a99cfedf2b8d 05c8ea0382ddbf84b0a21cfd7f11065b +05cb6a17d138cd2f75b4804053648bcc 05cb882b3edec2b20f7e93ed9230a995 05cb916454b978038684c05fa71a16e7 05cc4f8221d71e1dff38c11966fe1607 @@ -1354,10 +1499,15 @@ 05ccf7836f150fac6e3be7b009663ee5 05cfac993e932a27f7091ad8858d0dfa 05cfee74c654055d02c1a5ffe330f11a +05d2549a5a60a7401edf5740c6d9db8e +05d3ad5818f74c422b76920ee723c701 05d56afa4faa0bc35030635be753273d 05d5fd8fc5e219534389e0a8f762a815 +05d6afca8118f2c4898256474faee45d 05d78118062787c4f6ebf7febd547fd5 +05d873af66443997d4887eadf00f39ea 05d87f458ef31cee30002b4ea5d3b4a3 +05d8d770be60dd0f22853e49afcce3db 05d92e0762a5d11e946efbda219a65d6 05d9bf848c4f25c2615037cd5650537a 05dc34e7609e070f301abf3fc990daf0 @@ -1380,10 +1530,12 @@ 05f10c99070cb8775b18c6357b5d2a31 05f138de7edd1bb6ef3989f7e7ab35b8 05f4a846387e5a80e2c6acdd63370518 +05f51c20222ca07b19b2eeaa8e51217e 05f672dfd0b0ca09cddd507321a63b80 05f6ce7a1d76dc34d2e802d8405702c3 05f6e96c3e1388a453a2c9df8c52ca05 05f718d1056fbfac17fa9420fc2fe15d +05f76afc7209e067b1ba3fcb1f02be9f 05f8e0c477dac5e57a9bade937793970 05fa194d0768f7e283942a3afe59a8eb 05ff2d65eac358e34ccf90f56c7d28cf @@ -1407,6 +1559,7 @@ 060aa6ab6a46c25fcdd807cabc60c746 060b0396c0f3e3e57a9b700537f8d709 060cc58b114e0912ce4f163b5d9733e1 +060e51e9020ded898d8253f30c8b060f 06116c06efeae75ff867a0d313a7b832 06124e1504f427c7d746f4eead65798f 06137cdaaaafdbbaf6950fc896bb3cd7 @@ -1415,6 +1568,7 @@ 061877245fe7e087685b4a9ff2bcbbd8 0618bd9e5b127181527e7fe2e1fac5a8 061a966d65af12f8e87a25d720b669c5 +061b6e79516bb5f1d58ce86c87a96ed1 061d7803f3a62c434e974d7e8c7bad5d 061dfe435e81dd209f9d70682323f140 06208cd60ecf6f556f9247ed515ccd63 @@ -1425,18 +1579,22 @@ 0623e17054ce6d9604af8aa865d75a2b 06254c3bf392ad49841ec69842cc6ae9 0625a9dfb7cff65f85a88ef8b75dc3bf +0628e010bd170f07fb50d71b0330f93f 0629ac78fd549456ebe9754118c24234 062a1255e309e70502894ff7c424041d 062b1e230d2f4de35f8ae1ac3688b354 +062b2b76a7d16f3d27d7825b18acfa97 062bf40fdb52c2b94b8b77e38c982064 062c72ec1afbcb3b10564a758bc96d9f 062d03cd6b42baee524dc29e7566d880 062fb2dfe27618d5fd8510ee00ab12fd 0630af12496888b343114fed6f2f0481 0634712bcc72d2f52c490974c856d7a5 +0638ca766968bcb67123e52dd6d1f8e6 063a4795e0931d03eb98e67d7f5e19c0 063a6fbf16635adc4509f6251575f200 063b0f7af5a57d54b111803c31db22bf +063d76fb7bda626d54d1f0f1abd63711 063e12bb11a24948bb71f30d6beb9eaf 063e97813dcd1f9a258ca4a9a9a2b9db 063fa9e32d3dbb28e68ea8d9d38b8af7 @@ -1445,7 +1603,9 @@ 06494512687e3116dd43a602aecb6dbe 064a1d2edc2411b8ca5bcdb000026388 064b4623340ab59429f3a208ab5793d5 +064cc7d0f4047f61bde6ef9ae1123c31 064dbd45d8ed7c79f2c9d8b36552a912 +064df752810543df340a47451c5e0381 064e5d17a877590c0492721bdeba02d6 06511790169b5d8d0ba16c402cd9820b 0651f36742208f208c905d72df7a1b3f @@ -1466,6 +1626,7 @@ 066342abef93c2cb51e61cb7c24882dd 06647583c960b603043c0e230c13a9db 0664c1f2b20cace64b63cef21909b351 +066680a44ceaf8092af01d12b8919d0c 06668f52b9242fff44dbe3cdba4b6d32 066695c6b8d7fadb15cbb1b9a345a677 0666da3578df09a9bf0f680bc43fc780 @@ -1473,8 +1634,10 @@ 06685edd26e0c9c00916bc0f7d18b9bd 0668a64fb9a6bd03e52a14f9ab7d0de3 066984aa7c1c764863bf7ef463f21d88 +0669cd36121663d5ed88a223dccc7270 066a580842062ac64beea732215948dc 066a5962210d9e19c3cb13ba53897692 +066b23c1e683a2c72a0278792e5c0587 066bb32fc53b81636c16f0efe3ed4b7f 066bc0e33c79a70a523de34fa4663f9c 066bc6225f916973c337c85d11c71a13 @@ -1491,6 +1654,7 @@ 067b61f2d828135916855125e3588718 067bdcd38a4fffa626382d7c593ae633 067bf9f556cd0b528c609a4ec61d2d60 +067d3ec04ebdcacacb4850174a385ae5 067e3c539b9e3c5761d12e4a8538f6c5 067e8b2c9451070109a6dd46fb55ee66 067eb3a8dbee5e360bbf4e471873ae01 @@ -1513,6 +1677,7 @@ 06909a9f73551ad54892bdd812866d46 0691ed2d375ca749d22854b49a430782 06941cfb00ff4c53e075ec68500023b1 +06967fcd7a4b5efdeae420e95442deb3 0696b5a307cf7c4dc30e059428c36e42 0696ed4c98e3854a784bf3010328c9d2 06977ea5953f5ee42ee240d03272c734 @@ -1535,10 +1700,12 @@ 06acd16fdd5e14e72e8b3ac0b0322235 06ad431841e034825eda766401ef7963 06addde3d5f4ae90537fdd025b06c169 +06ae93460dbc98d764ba662f54e291d2 06af48fa2d0baec9d268aba5911ec82f 06af8d54f73e63890f93c3c258181117 06b14d73ffd89910b071dff5541c31de 06b1b6cd78071e1f76b6e7d97fe196a0 +06b1cba78638f1fe60af70c727bafec4 06b2cf12f5cfc29d9aadbfe15f396884 06b6248da8e3f7555697af8d573d73d6 06b6df7a1c84542caecdcd9573d74532 @@ -1549,9 +1716,13 @@ 06bcd7a02c11fa069278c65c4d4f0727 06bcdbb8a12f5ba864d7e22317e2643a 06bd36f88e8f8cb5fef456e69a3e4cb2 +06c241fa79b85e26e4ab31271ee7434e +06c329b20aa3267d7d141e450b05cea9 06c3e802702a55a9f6ce69dab078580e +06c427e0aafc53584488366c12dbedf9 06c721e0c2a92f26619b300cea253920 06c870316344af3dd54eb94788256e78 +06c87483d2697306d92a38318b34b885 06c880f9b51a0c80dc39df86b61ef184 06c8999247490043fce6d0e4c2600ddb 06c93ba7102549d67ebf6355e98efdd3 @@ -1564,11 +1735,13 @@ 06cee6ee1c5273f05bf9df3eb6c0cae7 06cf0680320e26e051b7a8d7823b7cc6 06d18917c33195a57eea49850810f355 +06d2ae8190c4aefb36aab5bdb09a2ad2 06d2b655473bc0faf36360f4e8d129cc 06d2bc28ddb142e56a8d2da9586576bd 06d32b3848a7d0bc43531277ed1c2304 06d3aebdafbf82cc36133eb84fd8455c 06d52208bdc568504e84008bd25606a4 +06d78d01381a3efee73bbb4ea40ce6e4 06d7dd9be858deef62a89c7cab32066f 06d8fc5b98128beccb77ff50b91af202 06d9d53e2cd4b9364360bdebf199a729 @@ -1598,6 +1771,7 @@ 06fa69d2778064e303eb8ba5025fb8f9 06fa7eabdf19e79889b8915cbcf354af 06fbd8d82648ad24957f64239a3ab56e +06feae617da24f7f2899efe99e4b3046 06ff1ae3ad0894bbf2f1922cd58c8706 06ff53e7339c3d6514ff30d65017121d 0700210a31892b7d21c91808cc143cd8 @@ -1610,6 +1784,7 @@ 0703fb0dc624c433205c92c26db2abd1 07041ebd7d6f94cf1106a78fb13c64c8 070544f95f68034f030c70529f5a4f0c +07054623a64dab0636b8fc3883d4a34a 0706ffd0494fcb7794f5e864e02fcf9a 0707454c84e71cba27196ffebe49e019 070965c89c474143fe81bf91222684e1 @@ -1624,7 +1799,9 @@ 0711d9c3f5fa5a5d227b548d219453b9 0712e251442c5e64bdbf9b0c0ded69b2 07149eb3e28b5819894f3b22bd610539 +0714e5f1ee093966ad585d6e70bb2189 0717450f6dfffda33819185809708ccf +07178708dfc78bb85c68bb72682c2a94 0718197e0dcf294d6cc7846d64edfc87 07181afb625b07b655612dc97259c0e8 07188acc2a5be7e13145e7c058a80b30 @@ -1637,6 +1814,7 @@ 071e441f2b19555fa57e4071b82ad0fb 071edaf1028d8b1618a2794471eea91d 071f640ac3f78426db21b336b11c6cc4 +071fb9a3a61009d5d3092e0d700a0771 071fbe1ce5de68186033afa21258e162 0722443c456f887e45e19a6fe634201b 07237d5972c05ff50a4dfd6836c5d2ec @@ -1663,6 +1841,7 @@ 0739a3f54c088ab4b0d99583bb6917f8 0739d96da7101e4beda064ac896e0d8d 0739fa4c66341622bedeb92e37a1ef4c +073a1cffff49aa3c65541dcd14f2699d 073cc9b48cb41ff2cfd1ca605aec88bc 073cfc81f010f952cf1ba18d514839ec 073d88d2631a3699c9ed814981f78d75 @@ -1680,6 +1859,7 @@ 07434e220d0f1cdac5984b53eec3cf6e 0743a29030f54cb01c7a8e9b965de59c 07447d262b256c3e59e3f1c6b3b9307a +07451a915f5b043135ee4d013287e09d 0745508ee3ef74318c229f93020992bd 0745654a9a094545514524ce79b9a277 07468c4bfae8639370ae80b42c47e5cc @@ -1692,9 +1872,12 @@ 074cfdbac6845d0f2cbb91edf89ec032 074d258ca6750e452e242fd525300c42 074de04a39c2bced1da0447bb4fc7e71 +074f6b45492006ddcd8d5fef282d5fd4 07514c00f176146a53d191ca1e68adae 07539928a2fdf1fdbfc77d4e2d832944 07565e8f1a7117b3063461b836d205d6 +07569d0e4844aac21737d1e588274242 +0756f8f9b5c64085b92b278aff6b634d 07573847ffc070156978ef1a85e12022 0758a8895e6bc1947de1474c8bcd9c56 0758f74cec54f89efdd22a560f0df670 @@ -1703,7 +1886,10 @@ 075c35a46205718a4e9ac94ee30ddcc9 075dc35d3aee3c9a6c111ea5ec35b75c 075e876da2d6a5ab6f99f4279a0e3bfd +075ef1854c6e94bfccfd236b6dc5fc5c 075fa01a439798e8fdd575b3521c1565 +0760d6a84c3f0f320dd1b30fcdf36c10 +0761981bbc85364428cdc96fade862d2 0761a98bd6e6d34e8b3481129f52baae 0762e64575c47ccb990a776922fbf7e1 07635b093422e85c06b1817843167831 @@ -1727,13 +1913,18 @@ 07765191b84a420b06c33de232ac1777 0776ffb5bf0592fa9546702112c81772 07777d711bf73e00b3a22c63a5c1854b +077787c0dc3631a3b64dc674ab450d01 077a62a7b42704693160365bc94812b5 077dfdaa83d31b5964765d734d163e80 077f602fcb6f0507ac561612747ede4d 0782016d0c643ead91f958261606479b +078272b9b0e940e1442cd326f4f75836 +07834a62242075889a3c3ad9e9761833 07838e02312de379030611e3c1361f1b +07853670c6dd2d8f029fd9bf327b722d 0787d8412de1bbd65c23a715acc130ca 078861d861c7e554b87ba177da16e45a +0788d6731deecd0e008e62dc7b3664b4 078913c35cb77670b1505b6f0cefc504 0789379206806e82d02562957f21812c 078969814ac4f360961cb3dc176c4250 @@ -1744,17 +1935,21 @@ 078e4c297394f3c8cd34ec301400fd76 078f893f5006eff83dbe5caeb89f4055 0791f85d37ff821b8bcdac1b4c73d5d8 +0791fd185b7aa43b59967128ad5f8ac7 079209ac4790abebde3f8c83da2e84cb 079277eb78da04ac53561d9c1f27cb0a 0792d25a8c9dfa2e98f82c88eba21d05 07938905a8c4929bdd02d6388dcffbac 079581845db4486261c1306227c94165 0796292449b67030d59903bc4927921f +07962a0ce650bf5013d368efe66f543b 0798f5253493e4c999da1c4f9b52a09b 07995cb2c5a7b498a7cb05bc457f3f1e 079988e0ab0494dbca1577ae3f753dfa +079c25288c9fea4b8ab7fa4c035f5828 079d7d250c9ce7541b7f991fca73a130 079dbae61932512004e7ac0c7c6f17d3 +079f08046f6ae7795e8ddb1143ba1fdd 079fa42e87fabe2f8e98c59d2187a93f 07a3087ba3b43cbbe6513b50aab72253 07a32080ced64fabc51cac78763f8a97 @@ -1767,25 +1962,31 @@ 07ab1525ba7acb140a0a148521bd96e2 07ab344174250779fc068289c982d346 07ac23a5ca8b3c07b59db84d5f604957 +07acafee7db6b74f09d7bc64ec0a4b02 07ace24463d7b9fab28f8dad5540f6a6 07ad7d64b4a58ade444d5bf536293110 07af1b7f9523698984f14d5529127862 +07b14bf9e8465d8daeda1e58ffff7c22 07b1c4277b40bae9757a4ab0e3de0686 07b2dc93c6cb6874992491d42b1d7639 07b38a66ca557f20c846f3cf237dfdb1 07b3925b4e2c3a9e9b16bd20c14b9da0 +07b3d0e8ff3fdbc4828d4c742ba44bfe 07b4bbdb5687f786dc959017c748371d 07b4bc3f7625f92f70d18ba21b0359dc 07b5417584913ffa1d34b70785dcaae2 07b5bfcac3a3ba714121867e3e1cdb48 07ba95beaac6fd71ddeda94d4f61c763 +07bb012927c018900894c2a81639ff51 07bb0741f3a34b7f13dd7b37f84c8e6b +07bb26e1004c913037734da647db1a8a 07bb47fe5b36bd2794d4c7b472d69f61 07bc1988c9b18dbcee095b8efd52219e 07bc2aa0578dc9d26dfda23840daee05 07bc2e6d0731fe06de1c7595155f4fc3 07bc61eef7d11906209d411612bbcfec 07bd37a266ea76cde1fbe06955646baa +07bfa251bb5251f5d357224f36a3e889 07c01fef301429fc6fa17c355d92b887 07c06be135c1a7daaccae8e91bf2b65e 07c17e82149b3054c681ef10049856eb @@ -1793,22 +1994,28 @@ 07c4e361355bd1038e7bd1f10c143530 07c5939ae561a1ea4b09ce3c6c12babb 07c60d2610ff6267208867340184cc1b +07c6eb03c9606019705306376fe44829 07ca774064351ad25f34af849117c75c 07caa218a80c3343813d5b70771ac4ac 07cc50df8006c649ae4d2aaaf37b7478 07cea79042fd9c4c3ad5ddfb9a1d3ab2 07cffdebdbc0494e417875b5aae5396e +07d0be1ba0911e3ac97c571c1ad2a06e 07d2d0f602e8855144a69d5887cef3c2 07d38449fa5834e22a665f6ce20445cb 07d6113971c16b111c14384d8da7fee0 07d64aea19d8d4e438cbe77d98e04236 07d66084b03bc4d2b65378dc73ff228e 07d6bac86b9fa0de54b4c674817060a4 +07d7cf28eeda8a9839868ea114635f7c 07d865388aa721874d2e59155d67da9d 07d8e1d2df47076515965b970ae5266b 07d9fb6629e5ae100825ccc738ca339e 07da155f5b679c64db6b08b0b88770d3 +07da6869efbb2cb6eb96f5c69b942c0c 07db784b509078fb0b00c5080afd2b95 +07db788bc117db4fd867e79d7bd3cbce +07db8cd13cb641df534cbc3821c72862 07dcc953623696eadb1a13cf4c10c2de 07dce7d0d355ac4ad140e5b4d097bfff 07dd0892b00cf9f7f4e1e4e3f54935ef @@ -1816,6 +2023,7 @@ 07dd8b0bf6efd4f0c83e1cd436d4fbb2 07df25d29a959f04485c7adc5b17b333 07e05a07d7d189564382fa393a44b294 +07e0c9d9200e11da42e2518efa69596e 07e46b8473c79acc80d9ea1bb37a1108 07e629fc2615045100772d76afd37f46 07e62e3d91e347884d791fc99ca8df16 @@ -1825,6 +2033,7 @@ 07ee4cdc8ec562e4933d1f70b0a35bb3 07ee8f4fe972ba989f96f38475500903 07ee976ea58ccd689652b9e437519a31 +07eeeed62be4215810f2f6b773b985b6 07f076feb1c44fae1a3dc60a3ce573c6 07f1b6977dadfbafe454f313b68f32fa 07f2969d8e633eaba7953faf8584f7fc @@ -1833,19 +2042,25 @@ 07f51cafbb14b7022fc11829f01f7f22 07f5a08d9fb092f4353f27b89078786d 07f5a81a6675aaba0e66c2055c09f891 +07f62234da7e4161afb26d285dca3dac 07f92233c63ec84cf19b3924fbe49c0f 07fcf1348e9e83ffbd2cba4d6f90bda1 07fcf6a23abedf45e3c7cc08c7fdb7d3 07fddff595828007bf34233a92ac13b7 +07fe2c137712a7ad806461010c406ad1 +07fe5da4053744604078fb608f849227 07ff70a690e4bc62bcec745187a32d4a 0800128d8a224b87ab2c356f8b178473 0800a352916b426abd8452397c53d637 0801199a333b7c2fb4250cf907d94388 +08011def80cb068c115954f7622b0db6 08029e1a629c040a9357ed1d1f4b44cb 0802f2dcd00d88fbcca155e318223b0d 08035fb2855cc2d97e25422508edf989 08048520d1143931ddc40214ab0fa949 0806ca6d476fd125103bf9acf94e93ff +08082adcbb15fc89183a4653e7dd1d93 +0808bb09f859594c62b82ff933ffb6db 08099dcedc9eb800b0eea68e619e6211 0809e36b243d61464f89b21406dc059f 080ceba1d2c2f50fe999a18310cdb86e @@ -1865,6 +2080,7 @@ 0819cf6de98c0a55cecbb27cf5d149b5 081a4cfa1e7a04abd097b728d5ac0943 081a74595f90ee12c9885f8022919351 +081dba470fed4be29a297dddbec9c5aa 081df3424cc4ff08cb05912ca095a287 081e3e5916cf3e7b6fdec77a992b146a 081e75574c5848ee84d3d6eeedf97047 @@ -1876,11 +2092,14 @@ 0825d04e857373c4129264075b216e26 0826330e093d4a3d0a6731dee95cbb55 082668294ac2f3385a17f6714b36cdaf +0827c5c86f48d64c99ade45a80be0037 0828dc80b1adc5dca18b35f01117b809 08291677ae60e2aa4a7b412cf9416379 0829415446e06121181e6b53797ca0f8 +082944ef16e1c6e9699a6f0c9ab55700 082a3dd92be3fc581a6b5d7edb4db308 082d851173f9f4fe17a960d1fd472f87 +082f9840146c2bcfe2bdcd0c96b6b2d0 083073f22a9014311d9a01f78754a2e7 0830b2276d3ce4f4a18f165f45137d06 08311ac4669d9dab261af739153d8dbc @@ -1890,6 +2109,8 @@ 0832dd7b163a804bbb400f531398f2c4 08346a95810b05159eaa88752deabd52 08347d7cef13b980efa54ca39536e324 +08360d50afc4b68022ec000d5ff40559 +0836aa0b6ff55a60a8974c9e71390b23 0837cdbac4719d30106177b47031aa7b 08391bf1145711b82367000cd2b61109 0839f525be96d19646ddc6ee31bf879a @@ -1899,16 +2120,21 @@ 083dfc3aef1ce6abdbd026e557c9ab74 0841766cd0da30a88bdc4b5ed3264122 0841be7472b2d672df77266368563cb0 +0842dfed1c74326e727ad28e516436d4 08437ae79ce1ddd3685e01d2bc17cfa8 0843868480ea926bf1ba0350f0bf66d7 +0846798024278d5f4ba961b6de213f26 08468e827f44bc49741ae3672e7e4d62 08476119f641e22384f472d6c724e807 08485231a93c80108c7f8ed73b53e7f2 +0848c9838b21c98f96d8d7c4e759745c 084bdaa1eb774e0ad3f59f7335a667b1 084c6ada289fc65babc0531533aa78bc +084c6c97ce35b0ae65993ffa09ad4755 084e3bb4c493bfa5eee2968c00bbaa48 084f3d4943701fc7424ca97fcc504f84 084fafe5f859c25b5f57b353064a336e +084ff7f954a59b9c53cbe179a3ab23f5 0850d3c5863b169f3d0e5fb2bad3179c 0852a463618bde7445af6269fd5f0c76 085447ce9de249037c49d481d9fe3bb6 @@ -1916,6 +2142,8 @@ 08581977f69f411700dff19c9f5694b2 085871ea803f21897a0fe4aeb03db7f3 085aec5ec69d1e257de4e4e6ae1d5479 +085c6ba917edc290459563909bcf247f +085d925e40e3ca11b872236965fe40dd 085ecd2037d9637e90fed043f98b0a77 085fddfcee446bbc325f33badb327a69 085fed4732059b2c25db32398684995f @@ -1923,11 +2151,13 @@ 0863a707d1fdaaf2232f10444c0fe06a 0863c18ede44f82650056833b79ac8ba 086418902206648cad999348eba7a04b +086445fb0af2084359dfe9f61f09dc02 0864991aa129f9536c2c964bdbf4297c 0864d2360edd35ce4c41c9a7ccdae7ae 0864e028e15e700ac640539d78ff7862 086765ebf69c91c379f4c90aa3de176b 08681f6e87d4897bc6b1096a0e737178 +086839782b0389ce0c0779b5c19208b8 0868c84d232af450c2f7e7cece468141 08691060fac3686183386b01064ea056 0869d08f8e7c01a99bc1c2ef5caf8542 @@ -1937,13 +2167,17 @@ 086e897af6c1bd16cede9e9a6c8d78e6 0870a2c7afbedc6deacc18e0f082756c 087107d1826187718b2714d85fdd2421 +08742efd17a500fcbfef66111b9f07bc 087650405640b279f13114c8e1264d22 +087902c632215461c75e7e3836f5243b 087a3e671efc7eca1d319c811acd6eaf 087a6b7ce1fc2e818f47a980179e96fc 087b1a2a674d120752c38e9a17cb0c58 087c0312793c426a3be6e9ecdc990fa8 087e268e627ab4958af65825f5e0a2e9 08804a9effcdf2ee529f9ec0fb0ac932 +08811361cc84f3f92fb1e629cad55fff +0884125a66eb3bd7edd272455d2283f4 0884a0f375d15fa52b1cff208fe3891a 088521b581980d5e74fb2198dad2a5cb 08868a00c18db8e7dd0391f6b5c82167 @@ -1975,8 +2209,10 @@ 089e4b855c0206e25448d12135dff5a3 089f765b74ddd022e731f4fb2fe33752 08a04beb76a35c0b002a783a8377aafd +08a0cf13228f963df50caf8e60a167c2 08a0ec8386d809d6e6223a9cde792167 08a106d5de0fb609ffc209929e7f1c93 +08a18c7b56b35c59bce8eb26d64bd011 08a1c98822c0fce33a468c8e6244e72b 08a23f953b73d8b46fbf5633fc8fe8d2 08a36668990728351dead222bd3b97cc @@ -1985,6 +2221,7 @@ 08a4badd48a4e0c2768d793b9dcac104 08a6fbd0cc9318fd158d513da7f7a547 08a7345b41339f3c7dc8a2dfe0b93242 +08a7a4f729846f8226ecb97286addf8f 08ae06ac2584b4ec28c7ee99185b6d59 08af135ae66a073312e9634c5bc34d8c 08b17d25563a73e26cab2a2be7d54cd2 @@ -2003,6 +2240,7 @@ 08bef08172a57b179c5081699bad2798 08c040fed96d914e39eed5fe0e7a30e1 08c15b037637db9a12d6ed64546f6bcf +08c1904a08c046cb3c6859ff424a072f 08c1ef8288881d5733670d9664aa0701 08c3781fe3f6261192ff0740bf6a6dce 08c3f2171d0d1802ddd1e38e70b1a182 @@ -2043,6 +2281,7 @@ 08e9deb17e93bfb07d4d5dcbbac7c2c5 08ea7606695cbf023b56e357b6f45cba 08eda0279a2c6c4c195d02f5dfaa7062 +08ee2d8921b2f38c273a4eb6821d9e77 08f0a8c64a6f9212c035e69dd3fd3244 08f1baa31cf3829ece703eb71317c2e6 08f20abac62e82f22ed5c2a09035f316 @@ -2057,6 +2296,7 @@ 09015e14eda9654a775e09b06972ace6 0901b5c122aa62d5e8d06463da4af99a 0904f2e8a8a469a5c38d690fc1e03de9 +0906aa14610aae3014286f6a100a8133 0908b495d39975bf684dadd276e6482d 0908d5fd99dd89dce651924ba8b796aa 090a12d99f0786a041971fdd141c6642 @@ -2082,9 +2322,11 @@ 092db1a4df6af0f08686830e2987a15b 092e154e42eb0d5ce7f26d2e73e510b2 092ecf19eb8dfdf89fa61c38af501dd1 +092fdc9fdf3befb36187ba90d7c62e92 0930438aa7674780b62dcf099e0d5e33 0930bb3feee2a03c1a062008f2f88fc1 093357fb6427796e063f9de36f763539 +093370b7f7559d5e6431b0eff9cdf356 0935a99043a0eccc66564f8c50e79784 0935fbf68d3a0e36b82a0a294b635ccd 0937d8a7353dbe82a086b619d9404d1c @@ -2097,10 +2339,12 @@ 093d4db69ccc3f338ef72c8b726d42b9 09414753a458b4f3bdd0300ce713a24a 0941e1658fff83e62dbf090bcc1ceedb +094326ea5656caec6c285e21918547a3 09441092353cea254fdc0700735dd97f 09444e5b187370c2d5030ce9c6621f77 0944d5f9b9bc90167560d8d4d0edd9c1 09472b7689036f09e9aecf2fa3271cfc +094833b429534805881ea9a93b0f50e6 09497c798b9b673913aeab7b7f4551b0 094a858061e16f70aad4546c4def630b 094ab9a2f50eb82ebf0ec88cf39abe36 @@ -2158,6 +2402,7 @@ 0971501df2c44c20514cc933e9aba974 0971cf04d4d8cac734a59bfe4e8d975e 0975443b3eed87e4ee8f0409f5f3df3f +0975a6ca712b4131bdfb3e9bc397277a 0975ba77636e93ce8f9c0466b24ef655 09760439f80a7fb53dd7a9fcf9b7139e 097651370de9c3a415558cbb32ab5491 @@ -2176,6 +2421,7 @@ 09821912cd22a52671748509104b3a0b 098309c138b9f56b051f45966c80cdaa 0983d131a15ab9d98a9f2ad137db964d +09845777acd1769b757bf18a37475d71 0985e66fd910bec97988cf8b6eafbd69 0987a2c0ab7bf948e216716d12cfa54e 0987d7d241faa21de4315a61185f1585 @@ -2194,18 +2440,22 @@ 0995ea2652cf65a1c20aee6b1cc68096 0996d64cf0d3b947c38bd19ad7cb338b 0996deb218e9e52dc420dfa1595c1cb3 +0997a8b747350245e978646a292f83ff 09982cfa918cacdcbf4966493ae79272 0998bb21923bed3345d059f64b9f5194 09995fa84485ddcccf38667a4b14e3dd 099bfdce101587f10463f5e277999bac +099ca5cb7f0fecea65b0fe2a76b29f96 099e38888dbb2f7cea9756393b8fee1d 099e9b2dd5f34804d324a85baf5a4d5a 099f3dfe74aab3b38582fdfba6e42025 099fa8f893d58361766e427d02e058d1 09a10a50ef14bcf7b8e741a09d1df2ef 09a13f76d53d9e23c3b2f984cf8ad2ac +09a229891af30977f95a4b5fa754a10d 09a28887c7237522145ff0a0ab7811a7 09a2de78a057b11d3e826dc9530bd25d +09a3e9db04c530643b73dff32ea660fb 09a4a68c2af0e4a2c76c8033dff215c8 09a4dff41dfaf77dc6b70d09cb4b8a82 09a50e2a09f620236c05868777c44ba6 @@ -2230,11 +2480,13 @@ 09b168f6724afcb8bd5033374a6986e5 09b173d0f29fa9370258d51edbee2338 09b41cab62589737ec8147e3b49a5287 +09b5a6a8fb577656d575e27e88b9923a 09b616f4c4ebe56e3ad19d99061aca8f 09b6b0dc4a7b2040e4bd0b6efd100bf0 09b721034b9fcae1bc3b9385557a4fb0 09b79aaf00b690556cd774b9ff4e3362 09b7c5a37a639ba1f340ce7833d7c090 +09b7dbbc1a01326045025057f4f953a4 09b80d7108a15ac8b6021a5cc4a75f15 09b8f48f95edc48cc7bd9cc4e618ffef 09b94a536bf47e6a710eb16ebc4e1a29 @@ -2250,42 +2502,56 @@ 09c2109ad9ccba0440449f1a55d43fdd 09c28e8d0911fd5e17d9d89602f4232c 09c2bd688cee3f7f834742983341de0a +09c3f83f2b913f9bc87ffa2452ae4b62 09c400a9cf90822154b70c0d3807f6b9 09c423844b9ab6e66245abe62aa583ba 09c4addb2afa951c51b34ca350afefbd 09c5911145a30e28bdce4f875b94d6d4 09c5ea56e887a4bff31889a7ea18b60b 09c5fe9d929ac37b48a5d15fd6675385 +09c6ffad2d1ea02970207a18f155df03 09c7bf695173a0bc079046ea5c77dac2 09c7dce017c60fe0b840d3681f24e26b +09c893b4b5567cea097e7448b24d8ee9 09c8f372965087322fea42c4df91f8d4 09c933ca1e8e94afecfe48f54514486e 09ca7b82432e6748849a1f4573c6db38 +09cb64c0e524d1dd7f7ed255581645b3 09cbbdb4c3b418a351de794a68568f66 09cbdf32e63e1d0d26007ac37d7fdcb8 +09ccb20599ee09271f5e9f73b98f1e34 +09d00a1acaa99d30500454d0be51f16e 09d087393bd0649e21eb045e3b2beb55 09d1e520cf3ec17e9d6047d4155cf2af +09d62faefacb4f51acb3e4fcdec8b6c9 09d6c669b7b79f1b7f3ec5b1e6ef834d 09d91a9c50aa84be33ac35f539c98af7 09d927404f6a9a25f3214221becfde36 09d9409e015df2e410148a919a5c0379 +09d9e3cb263098365b154df5e38e60bf 09da26338f6acd7aeca20814f9efbbd7 09dbd2e537abc49db64ede5ec1fcd773 09ddeaa0bc16d528bc8b44a41a20277a 09de195897cf4146ccef6562578a94ee 09de7116bd6cd78505d47e139fe66f62 +09deddb0d89f6bfbfb1e404f57d45bdf 09df7ef9cbd91a7b7e041a102470d82c +09dfa9a7328cb7ff3a5a58e007a53a56 09e07f311951d1dd404107081d02380d 09e13507ebdec887ca9a84a4e144a7c8 09e1df4b67a36423a3d2d435fecf0ac2 09e21e01fb393dfcf810818f0df8b42c +09e46fc4f3601661d3e76590c1fe4147 09e5128c13fbf761a393db0f35b1de7a +09e7d98e77261cfa27ce70485183f1f5 +09e7e277b9d8b45eb89e0a86c33b1ce2 09e96697743ecb4ebdba92478f930345 09ea993fe0c7254c5050bc7a2cf913bb 09eb2931b9573e7b1ea2303a5d09a0f2 09eb795593226cdd50078f615aa88bef 09ef1457e2d01aa39e2582cf0359661c 09f1b880c55e4c5adfdf3320d8b38c04 +09f27ab12246e03ab0784b3c560c4bd7 09f3702e9f4954c15477efb6d27cd457 09f629d7db3b86f5604ec3d85e41a851 09f6501e8b1bc0fa6b688eeec60e4104 @@ -2297,6 +2563,7 @@ 09f9e9f43032db4514ee0e3ab4a1b7e2 09fc021a3008b5278784a8b80dab6fa4 09fe9fdf9d673ea09ea2533cbadd733b +09ffbb466c16f2dac4b8a729e731ca9e 09ffface5278341d4aaf2b2bf80cd33f 0a02d33e741b784cf0a7d49f3d171080 0a02dcca2cc6783b6bc0c5d7bf317fa5 @@ -2309,23 +2576,28 @@ 0a09421f61b1535aab8cd426f60ee83e 0a0ac104d28c83ae693bbca2265c21de 0a0af35942e43fe60b04e508a88d64f0 +0a0b4781e54b395f0f223ed60b4b9799 0a0be5b85e0e3c91a0981e613bb20e4f +0a0c885148677bd370f72fc05830d199 0a0d19e6fbea02545c342626f47d5b5d 0a0ef04a14bf38524b36624d2a3c1337 0a0fc745c9bed0ade01791566749cd08 0a1074bdc2307476158fbe5b6762915d 0a1232acde436a52dcb2e645df45f920 0a124ad5384db0aa8ffa5a50effb0229 +0a13ed3f0bb640b486612ce1c5423b91 0a140aa265a6c1debd3e133de7696dc9 0a144eaa69316fd57ed385408951d661 0a156e7489fcf8051dadc1f1fd0758a3 0a16600b49f8a0143c07ac8d87a82881 +0a1661ba0c923f7c708e8aae27817bda 0a169bb3464291028cbf8fe03d44802b 0a178fee4239fc9d15e6f512ed96e180 0a183b0b943d16db5b0855b7fdd6e2a1 0a19917a52402917cabecada7cae83f7 0a19a549a9e0f206e467bd738228ff9e 0a1a86535260afa646cfbd2ccd273950 +0a1b932ad98091cfb5fd1c098229aaa4 0a1cf347976b37c7169f2caf49202b96 0a1d7c682eccbf088c8953d77c1ba199 0a1d88d176f19bcc9cd15c84c8e50d5d @@ -2344,6 +2616,7 @@ 0a303089b88ad10b5255a27a014cc36d 0a334adcb90d3377a3f59798e2ce1f51 0a33da129f34f528c361cf59e819b922 +0a3436fa0df3146b37c3df162a53a1b9 0a34802fe17fb87f7d91f647fb62c6b0 0a3501280e74563164fb7de83e05c6ca 0a36133325855783ea8eaef4bc259d51 @@ -2359,6 +2632,7 @@ 0a3e893236fd57a394ec71d418984170 0a4199d7b5694f36dea4aad2c3f47fed 0a427d8a7be38f17b82abf92692dec80 +0a43121912ebf8db772a1ed6a6e834e0 0a45527dee2bd2da3cb5e5d1ca1da8a0 0a457a368be960ea239eee86edb45f41 0a45db4d3b6c47acaf6f2ad6b1ae4d53 @@ -2367,6 +2641,7 @@ 0a498ff2f878940dba09a200c9bb15b2 0a4a4efb8f0f6e9b905aa3ad1c5b972d 0a4b06691b8c19319d8c2d355b879281 +0a4b4578c4695eb98bb6155db70cc6c1 0a4b731c122801c56327d38bd30369e7 0a4baafdb90354657e961b62ea3babe7 0a4bec1aa58558edc7bf5cdf56c16e46 @@ -2393,10 +2668,13 @@ 0a6e27a691780835cabb089311ec0f25 0a6e95df7cca7001aea1c40dc9e3832e 0a6eea92f46ccefa4cabbc91834a6eca +0a718b79ccca07f821493e6bc1b0197a 0a71dc9c7cc67cd49bc13aa54181c202 0a730b09454fe391cf373ef34002b74f 0a74089135a8657309070b0cce3c2f8e +0a7449afe6e53f8860f99aca6905d5f4 0a777564063d8ff062524f3b1d0f4955 +0a77e634aa4878ad20b1dead17d3effe 0a7806c555a70976ce5d4ac68a5d18ce 0a7aad76799ab6a3563c59f7e341cc70 0a7b0ca4f197bced3fb77e3a10e5fe4d @@ -2412,6 +2690,7 @@ 0a869a5ee6bba473166cc015f487d5eb 0a86d7cee84b1c74c6836b5435d4d184 0a87c73e963c978ddfd8a218e921e7b7 +0a886e3de3754f516b19b78a828a42f6 0a8898fbce68f0df75519cab79090656 0a8b65b4f31263e9796bdba9bfe60364 0a8c3a73bf669ab7a319c2935de39c0a @@ -2420,12 +2699,14 @@ 0a8f9e9a42d50771a6d02f262326e58c 0a8fe83e171afcd56660b0d8413bcf02 0a909df0710cd2847032808e1960538f +0a924fd2acbd7224bc3e9531da9daf3b 0a92a0761cdf570cf14e47d55390b31d 0a930d22f9dee095f5b3c5e996172402 0a9378c1d49467f3c3e909cdc88251dc 0a93e75a28308b0259435b77445bbb9a 0a9416964c9aa4b7c6021d64ea33b73d 0a947b496bc5667ea1f679291c17937c +0a94982cc2c22b3065a1b48b75d8c3c8 0a95e3417712d42b2e4a916129587e46 0a98745309f4210f10bc96292dffa8ae 0a997196b1f72b0bc2d63c5688a3bbcb @@ -2467,6 +2748,7 @@ 0abf4624134e2a9ab7325129326a52f4 0ac0cc9a1c7f03da19929f3d86273d4f 0ac31d685d1e262277c9077bf9dbb4c6 +0ac36aaa2c5dfbd86c8510da88be01b6 0ac46a0f0a6e03e7d7f1ce3cd8e0583b 0ac4ecf7bc24d25529970b8bb1bc7005 0ac508b362663c641fce9105107ddb81 @@ -2476,6 +2758,7 @@ 0ac8020d4b6feafadc1d05ac1c230b18 0ac8b2956b547d52fe8a6fba0627800a 0acba25d4448954630fcadfe86b19788 +0acbd96337a513953b3be86fb3525daa 0accdd1d003a217eb1a95d8e0162252a 0acd45c4abfc93e80fe0323220293e47 0ace573f0bdb40e0f5eae31307f04148 @@ -2483,11 +2766,15 @@ 0ad0287c8e78d10c4e3f3d2c2f7a03a8 0ad0d8bd137e833c1aca656de8aa11e7 0ad25b4928a6d947d7d626823af04e97 +0ad2a1fee584adf0718ce648054705a1 0ad2d3c53540444bff1a23e81fd819f0 +0ad34321c0f695e9ece64d1803f542fa 0ad3ae1ae18c788a18d7178f2a68a995 0ad43a62e74c0c4f51f025a9c01a1c02 +0ad6ae096c6fcc89f86b932dc12fa553 0ad6e2471841ea693fcaaa57d03d4ef6 0ad70a540a907171e39106d7f861a44c +0ad76b33b381c10452dfe04ab6465451 0ada19689f49435e22504048f913f488 0adb4ff96230f9a227241835b0752675 0ae0ea5d0fe28a33b1b2a04cef3ae6c0 @@ -2495,7 +2782,9 @@ 0ae26b6e2f3bd3d82739d822fe8d5ed0 0ae2b50694246f9df0e3023484eec318 0ae4090016de91df95509016ce03888f +0ae52996cc0657925fdac65f6853f6c3 0ae6fba60868ca583a1eeffffe5793cd +0ae7c5032305a6bd54ece0fb95a1f49b 0ae940befedbd8ac3aa73aa5bbff5bbc 0ae9e00c0d1aa6d28fc45f879bc58102 0aeb066404549a91de6e9b03f0b56edf @@ -2525,6 +2814,7 @@ 0b070a138c06684981745f86d1d0ea4b 0b0988265759259fd45b33f87c433b37 0b0a5f2f5d2fcc9da81e200f913f53a4 +0b0a5f99daebb5c4e419df8884602b9c 0b0bec369a23551d01603b879f149b4c 0b0d4f4f9b523d8f61723691ba7f579c 0b0db59aa7441843447435ab7710238e @@ -2556,6 +2846,7 @@ 0b240d5ff6c0fb1b2d3f7a35caf1fb27 0b24de38c8ddc8a94901840571bb9225 0b24fdcfad5cad63b27298ca83586568 +0b2a366ac9b6ca1130fe7a0f23853f05 0b2ab129e154df85e1ef572ae6972d62 0b2acdc2ac742e01da3023d2cec48b1b 0b2be164b8795610b012c3a62f98a5ec @@ -2585,9 +2876,11 @@ 0b45674fbdd59dc5b65c8a389edee2af 0b47e14ef82977813a75be0d7c9c77ad 0b48a66f383cc95b3c0b4ef28a111540 +0b4b0eb25636e664faa731dee26de854 0b4b8c4b7f3a7b9e204e6524ee043063 0b4b994f4a062db308aa41e79c657e6e 0b4cf6c990a0bc5572b9826fa7a480aa +0b4d09bdc15cd022ef2d8220e23e7899 0b4d263b77f739e3254b5fed7aa949ab 0b4eb88fea50e84169f9fd3a2d7fd1f7 0b50054176eb76dbd0db47469a2c674a @@ -2595,15 +2888,19 @@ 0b509716eb6f6e012993d9d80f930222 0b51036353765cb7d620fe9535f3f84f 0b516c083269fe9c5f2952d798e40658 +0b520a4da2bcc4419d35314abdea0a8b 0b52d83733c975490471610d585ff239 0b53bc66e3016620ee4b3af927d44637 0b55cd9caf1975097247a54f6e3757b1 0b55ffedb2eb824fbadb9b7d73cd9373 0b57aed2805e4e76651932bdb3b0c9a0 +0b58087d712c7a102913fe1d1411ff64 +0b583071aa6a8bf113c0d5d446ce2f40 0b588c839f24991001f1adbccbe2458e 0b5a671ea30f49d1f6a02bdca8dd40ef 0b5bd4b0b13bde535648666e3fe69d1c 0b5d56e43681091d75b78b61212e76cd +0b5d5a8e8904579cc039362fcf6b0e39 0b5db42e8b8915e2ce11a4ef29074f40 0b5e429c0d43cd1a824ac74e275293f4 0b5f79456bd71c07acd735607703a7f7 @@ -2618,6 +2915,7 @@ 0b667328f139701101f7fd459736f7af 0b6840b8e665eb17b26dd47c568419b8 0b6a031c6d05387696ead854371d25e2 +0b6b44d2b953c2ef663e07b65c73605b 0b6b7a297eb75fae49ffa4527d2eb632 0b6b8a0b26a0cba173e7db83df619d78 0b6bde7621b68d3669c0220afdf1cef8 @@ -2633,6 +2931,7 @@ 0b77a80b0a398746eebd3ddecf48b9f5 0b785bcb242b4578f3277a5186c7db7c 0b7c13df18404beaae998694a0d6d3a2 +0b7c21a239b30e670d6d024c4f29bca2 0b7ccedd344f23cd02f309b88c86b506 0b7e6bc018ac51a920e5a905e87ad3c4 0b7fd04f34b87d15adb9fab0b9e85ca3 @@ -2654,14 +2953,18 @@ 0b8d05e1d8bbf21cd7c4f7568312005d 0b8df2ed735d7e69bc668beb1fa04954 0b927a66d561997e80ca09004dc10438 +0b93eee5c8d1facb6944f3c2eb145ae5 0b9452ff7d21a24bee986e95efd44a16 0b957d934f835981d1044077c20d71ef 0b95dddf4d434478362e2b4fcac4f400 0b96552eefaab9e31da4d067458bed57 0b96a5290a55d9e13a0902304aa3830a 0b9854b931b4997107d396340eb79bd3 +0b98d520f75ff7e2d9cb493689f19541 +0b9a52c167e3f9719743f070248a5013 0b9b956c4a53ee2920ca22399d561bed 0b9c7884d88e3fde417c4f7a218ee9e2 +0b9ce22c157ee5ffe53ec19761560e6c 0b9d395991e5a5b5f8e4984d3357bb88 0b9e84392505437d2ef385512bac7ad9 0b9f02ae3a2d7ad12f0b267d0ac5cf48 @@ -2677,10 +2980,13 @@ 0ba739acd34d11a5d543c2f512257466 0ba918b2e4ae5a50f6fe54bb6909683c 0ba9d1affb34139d41a4cb170728d0d9 +0baa2e3834290397950f9a4e9c79971a 0baba73ae27b9a99b4f4d8cfdf840021 0bac8607527143db43c39810b2b41d8c +0bacf0790665ed412e116cf3a17547d1 0bad4c098917603b59d780270bb6da3d 0bad721d9972d7d9b00d2f3571df8965 +0bad9952aa87e4e9974645740049e99b 0bae05ecb709c894f8c7792d84819ab4 0baf417d0030195f0a415e2f36ddeb8b 0bb03e0b2446161e261b3a350a4d43c3 @@ -2704,10 +3010,13 @@ 0bbe3a603951c109f8c74493150575c0 0bbe6934ccedcddce1dc278238525722 0bbfb01b2aa4ff123c3c34d16edd8327 +0bc06080159497e70b1b0c3d63ac52af 0bc0e1cf1b517d7289775efa1ab45d2e +0bc1bc590356b6cc0653138e55eca295 0bc1f9f26f2adbf7627a468598d64ff4 0bc339d803bbee55eca2aeed50bc9aac 0bc443509667b5b39ab40de6aa6945a5 +0bc47c1042369047f8d41ec5153b74b7 0bc555e02655dd6aef09480e5a81a86a 0bcc7fe80d2c80c5cdb5a169d0a9cb76 0bcd5007e1e70b1c720d513a76ba3a9e @@ -2720,18 +3029,21 @@ 0bd331e4d32f30f5b02647b51fe525d9 0bd3a43392b90f7d41f091db3e5484c8 0bd3d3502a6ed6c024caad44b9b82380 +0bd4bd5cdc4e40ff764e97280ea95dca 0bd4eaa9f2cbbf6d7be5bee048e2c429 0bd5c7e61551848005c3994ca37fe9a2 0bd6388217d41de4aff53347e37ebad9 0bd89c341546334664734d4a934f2035 0bd907d4c1ae9af05860308ab7c9f96f 0bda4266222fff5a2b85904a3c947383 +0bda67955c7397816ab32de433c29ca2 0bda81ae1bd5f38a429e862b1ed2b830 0bda868992446f928570bfcf1aceb8c3 0bdb6b35d0471146383b699f630326dd 0bdc27c9c1b885a9a848e208038f450b 0bdc4bedab4c5905a7fef42f501d51f9 0bdc6811d7396f982d45b8f7e61cc2b1 +0bdcaefa30ac1cb004dc23520838a88d 0bdcc29ee516de7aa307bd7dc75f442a 0bdd93ced5f506962d4186f15e89eec7 0bddff61793eeefd08ce666ef9de6152 @@ -2749,8 +3061,11 @@ 0bea995be6b9dd2d56cf50687409abdf 0beadcb1d4bad0a5bdbd93a6382943bf 0becc9780c18190a4ef4de97524d06d5 +0becd35ae424ce056de9adcc43d60d78 +0bed1310b18433bc2c68e4baa575e1cb 0bee608b94ae0155842427dbe78619d1 0bee8cd1bdfb09a056cc5f78f128f222 +0bee99404ddbe16ed77d66a293843cbb 0bf09e67d418b5c79a278eb36a301eb6 0bf24e77c3012c12559e4f7ec829f398 0bf52c993da433f99a08cbc3e2398a3a @@ -2760,12 +3075,15 @@ 0bf8070e12f2f3abf7b1572770d6770b 0bf898a385cf80bf027b8ecf03f1e64d 0bfa51a39c0f135d4a3e1c7e3c5fc06d +0bfb6d7e8fef4e303ffc94e9f1341a6d 0bfc33bd0f8a28812fdefa831228cad4 0bff348803b34b2887cfec46f2cc38a1 +0bffff4050cdd9f2d5c4232f629b48f3 0c00d03cfc5886a667db0489bed82de3 0c00f955ce33aaf4ee7555eb46bf642e 0c02c169487200cda0c798d38455e50d 0c0318f6e9d94aad1d5b72d0fdba072a +0c03dcfd4274d3a7f265c5790b685f7c 0c060c98eeafec2386d9bed805a72f2f 0c066280d538b5b412d434af8a2c98b3 0c07661043022cc8d8cb4936f6ed58b3 @@ -2782,18 +3100,24 @@ 0c0ed43e3be293899be5e79a82d4849b 0c1066d0a1c1918b62ae4d2657c6298e 0c10b316ba7bf29316e47b169b9ccb14 +0c10dc2459e5f189df9900db02443da3 0c11b6392e4fb9c2984facdfec2b327a +0c11df3a28c2663350b89442a2140382 +0c1459bdedf5119eb62cd8595fba9a88 0c14ab1ded7689f88e2618218a33c10e 0c15608b3b437b452a533dc8a985636e 0c1562386f4d8ab143c7a75717020d05 0c159a9a8aa1ee80d4923a8ee152ec25 0c15b1eb6f32d7c945d714a45dcf938e +0c163dd6d7992e9278fa657b4055c3aa 0c164219da269fbcd54c6bd2067ab7a6 0c169223688a360e4e8dbcfe07fbfc19 +0c17283828bc176184a54bec793b1bad 0c1859192d3f9cf0a23f385666e15183 0c186b9b738d505f0c1caeda7489b076 0c188e683bc169cb6a23c09194405929 0c195cfd1e404a3acbda416f8d343e76 +0c1a88c951c5aa2b2c7cef219b8871b5 0c1b3e35cd0c62d01deec40cdf8d308a 0c1b8c7c3b5c5635d0cd9b16c5791526 0c1c328dc46c32094dfe633f15527557 @@ -2802,6 +3126,7 @@ 0c1f8c87e46e101dddda9c0b972555dc 0c1fbb4ca2ffe238a6e89b344c9e38e0 0c211864ffaff931dc2b9bc7a9d3a0bf +0c21d00a75a058ca66b6f26e23c2d91c 0c229de7dc0aaf4d506068aacfe71875 0c230abfa1538d28904a7916fbc6ddc3 0c23d1d9ae4b6e5cd5a4f9dd44bfde2e @@ -2811,6 +3136,7 @@ 0c267da2ea405ab0e3848f61d08a97a2 0c26c1581efa09c04d519163e019ba70 0c26d7da384a04698cb536b1938ac68e +0c28ec2053b4ec122c6c916d93d2764a 0c29478aacc1782cb2e0fe315210d17f 0c29cf30c79d9f1e90bb02943e941199 0c2b3a02614d1352dd374697d2efdfd4 @@ -2819,12 +3145,14 @@ 0c2cc3e270edd2eeb4507223b24d560d 0c2e3ca27cba89cfb30ced2a32bc9911 0c2e75fc8d15ba9861666c197fd9ff8c +0c2eff794be5fbca1446360270584b89 0c325bbe9fc34bd673b51a537618a4b9 0c329818bbab67a66d9aa94e0a605bf3 0c329f8ebe13b76ed440e4963452d63d 0c34ddb2fa2d0c80fed071fa8e8b55e6 0c35120b238009314716203d72fea6b8 0c365d4ae6d17190335a52bab9aa091f +0c367733df7e19910debfb4a9ccb9dd0 0c3855a9c1b0cfc6fb9bd6edcd1343d9 0c39560a36d438158caab03e7d129007 0c3a007c457c60f918ac2634d8416484 @@ -2835,21 +3163,25 @@ 0c41396b7937bbac85f61fbe841ed2eb 0c418ef444d18727313ae75fddb32d78 0c41d76c58a4d31be12e33ddd1969270 +0c4279ca3ace196a8df552c3212441b5 0c436c5d783223d0de726a8368888592 0c43e70308076e71ce393bea8419580b 0c44c455455f826550078f710a1f4c41 +0c47a69ae055f7cf0a138f5f5ce549bc 0c48641790c3e7f41eba4d5f4a2999ab 0c4a12ae89255b6ef32929dd848bce4e 0c4b63b996cfcf760ef96df6e94e828e 0c4db99835d33d1cebb4e436b05f1650 0c4de9583a1c051c2fa8ee7fb5801ec5 0c4e92d6c1a6acfcff2a14117fe3a7fa +0c4ed01c3d66dc8743b9f8b155892c73 0c4f003fe6296aa7000ee07b179a1068 0c4f27c20495dd6affdf0000510eb612 0c4f79404cedd21d4ab319543dbc401b 0c4ff7eb93583735501464e6c00997b8 0c502d96db546d7d10bce3b5c0972b4e 0c513963bac3f6516b6d52f6e790ef21 +0c52da3aeeeb67ce17876f69de5eeec4 0c5304811a165d30893e9435d7f58c88 0c5375203369e0bf639809f0d0e82817 0c56728840c90311cc2e7973432db088 @@ -2857,6 +3189,7 @@ 0c595bd5a8f07f18436b7c0647987e11 0c5a16d8dd5adf5afdc85648fcf0e1f9 0c5af4988f4651aad0c12e7efa40ac41 +0c5ebc700a7d55548523c44d02609396 0c60d10383e626af487ee609e80a2384 0c61241ba40b96afdc013030f9905042 0c614536b1f766d701c1cbb5cc289eea @@ -2875,15 +3208,20 @@ 0c6ff4397bb91ed253c422911cdf1cca 0c712101f41262675b63c893a288399c 0c72cb542dbf95650b9464d640b1f385 +0c73883c07ffa1f942884552e7c442aa 0c738ba02fc3774c1d8dface86a90abf 0c73935bb9860e88f484ae69bee11628 0c74574593d927f177bbdbed1ef43fd0 0c754bf9872b7a0b5f87b7818cbe456a +0c75ff9abf8d19340e03e69cfa5b07d1 +0c76e23c8cbc473470c92bfd37da1a86 0c7829d4027d0cb167c458323b57e839 +0c7864542bb8d1f81f98643f4531f12d 0c7a18427fae160a37edd0bd4a75f584 0c7dc400e1758d8547021ed05126672e 0c7debae6699e4765c48b9f1e4781fd8 0c809e865a6f66ef2725aa5602e2b4dc +0c81a2f4604568c61a3feb39e44dc5b9 0c83f1df2de4275258325fb6262e6961 0c848ce503604ac0f9cfcff5628d789b 0c84d6eb2fa1cb68e477c37e8e12a7a9 @@ -2894,6 +3232,7 @@ 0c8ba5a43423184143cd2264a3dc2280 0c8d5c2694e80e8d7859026333f3eb21 0c8e5383802539e765c3f7bfab720d83 +0c90bfb29ead42351051dfc59dc98cf8 0c92475e9795e94979c936db5cb0c183 0c9277b0c6188626f9cb418c9f126387 0c92ca8b0d0c5b1f3c7bc0a57e8c6264 @@ -2917,6 +3256,7 @@ 0ca44e0b32275fb360efb954bd0e29c4 0ca582d5e5c0f650aaba4661589cb17d 0ca74cfc746d30a57b6d1cd54beb76f4 +0ca892a0369b57a730703ef548df0803 0ca8e3f13411dce0d88d27a3bed5ed13 0ca96d245a8e59d1ced9f1bdf0a4c600 0ca9f528a266ecfb429f61fd9dc0a273 @@ -2936,11 +3276,13 @@ 0cb92d16888a0ecadfba72c787588143 0cbacc5f39940a23da6d8264a9341bf1 0cbd1e51f71fbdabde14d8653f95d87d +0cbd382485e4ed09047d57236455a0c8 0cbd59b15b8b7c877c8c450763482a40 0cbe264402f9c82eb5b61241c5e2fe6b 0cbf1b09ce5ec1a2514396a0f40e92e2 0cc05000008985599340cc87f5d1b5bb 0cc16ec940402544626d807f8490df99 +0cc24a4659acd44b7472d83dd000db0c 0cc2d3002387a87e88f402919e365ec2 0cc41001512935aec942d1766348446f 0cc758244f68e7da63af4019d1ab718b @@ -2962,6 +3304,7 @@ 0cd21d1df2f465eacdbca83ec580b340 0cd363ec4444c12d2674869691ff209a 0cd3658c60634d77d2b2f5f9175881c9 +0cd3db533a46a024b2bd87d65c56e08b 0cd54beca5ed14ed15a536f0c9a264ff 0cd603f729f6157278a1de1f7d5e8a61 0cd7c61857ea7ec8e494eb300cf17aa3 @@ -2970,6 +3313,7 @@ 0cda3f74a28ee32ee7f4e90939b5963a 0cda81de698cb75bc2337e2229f7c5ec 0cdb31c90a29460dcec3b0edf3be6505 +0cdc7cfad3513df44922383cf04c6c67 0cdcf3e87d1ad7099e2620a74bf7b3f9 0cdd4ef85d321ea5654be5786b5f2fd4 0cdd90bba7b5422ecfb59eae0f1fdeb2 @@ -2985,10 +3329,13 @@ 0ce544a6dee68c7442fa536a1704f069 0ce55c0071259e539eeca241744ecafe 0ce5a708cb9d3ab9e22ce31376373664 +0ce628e2a026e68db297dfac41ba2a62 0ce7193da57ed84ed405eb4a5bd031cb 0ce802f137c70b848de8a22973476ea3 0ce88d30f4f056767fc30cc6282f3b24 0cea24a232fd104a0f96a3b6b733117d +0ced8808af35ddb01b62c08bf1e2004c +0ced8f937f52ac563c9cb083f1ca949f 0cee236e1f82654ec44ce391d7398b57 0cee2eaef2086d14aa14a4bf13da4627 0cef86f948db0353c36e42dfafcfcd87 @@ -2999,6 +3346,7 @@ 0cf28a289d06562066a1e172e59ee696 0cf4a419230a9c578156517ea2b69b04 0cf4e72e9b4904cd383423ca49844495 +0cfbe501861ffa12f7dda783fba6cef7 0cfd3b306c59d5ab9593739a09774787 0cfd79339fb2fdf1630f61eaa4f18578 0cff57e8e85118d5bbd6a5570982775c @@ -3009,6 +3357,7 @@ 0d034974887f6be0247386dc172e1025 0d043c7b19b46f6d8c16177562f2216d 0d0510b18a1ea8e021685aeec732767e +0d06dc1be2042667d67c183aaa719801 0d082e3a8590a2843abd890333404d4e 0d089889c7894526987d8c624961a29f 0d093656e61d640b555d0ede3ae42611 @@ -3021,7 +3370,9 @@ 0d0c27351b2c8da3fe3a85f05c18c623 0d0c6f0ee7f217b87cda6b34778541ff 0d0f4f4e0a493ac6aa9de96389a94bb1 +0d13b022ade504a43c7d7f7520e63bac 0d16397862d7ce918e02c9c638c7c372 +0d16613f6dc50e49ddff751c6d32dad1 0d1701d38fe96bb0f99a08a303c30cb9 0d171af6ab000d376e5a3f8941e91430 0d17fbab108b23676d1172eb79f41aaf @@ -3036,10 +3387,12 @@ 0d2706c5634bdec29adcc9a71e468ecc 0d2938459f80e9535d1a2ce9770d4515 0d2a4a33ff23560315619105076db074 +0d2ad442daba30043b3eac8866347474 0d2da0e23d812ddcf372a4e09746bf80 0d2e6ec84028cc70fa75f178525d8800 0d2ec6d9798670877b2287de65969ee2 0d2ed1676e5b87dd52ce8a018f5d750d +0d2fac911c5d4483d6fea72792a53f16 0d305e959a810c2519ed7e6c47d3b3bd 0d31748dd012bfd45f543f6e25a7dbe7 0d325484f4c13489acae6d3b7d762c61 @@ -3052,6 +3405,8 @@ 0d372e92bdad24fe533142282913f82e 0d37767ce986889d6641fa06293854c2 0d380e7e0790f512a4066014af8ac82c +0d388c4b45aec1c18aedda540a559be1 +0d38e0d4f13c6e688a46e0e0d3cd053d 0d3d3b20b946f35c238bb375ee62434c 0d3e1736579d3fa1b489e6cabd096cab 0d3e2ec94521b5bdfbcedfcb7fb69092 @@ -3085,6 +3440,7 @@ 0d533efb6f554c0b089d8046794a152c 0d5421ca1c8baecb45cf10da62c2be64 0d57285519452c46dbd447e9b98addc4 +0d5898b9aa70628cc662b24d43233faf 0d5abb498053f2a751a21c8f93c82eb8 0d5b6726fb23d7bc8e6e5bff58d6dec0 0d5c5ce5b3d9149caef857eb56248973 @@ -3130,26 +3486,33 @@ 0d80a941e6263dff22c1d84b3f801619 0d80f597a9bce794c3c322de3ee090a0 0d826e8e777cb3174e0885095b79b0f0 +0d8a1adc2d7da588b9573dbe44abf023 0d8a37017ff96fee09b32ad090d98191 0d8ab4b2ff9591b495a9de0510e5b14e 0d8be543533479aaeb1eeb7c22f4427d 0d8c28b1d761f0c482a2decdaa1a1a1d +0d8c5675c0c0e4e65f5986e38972d105 0d8c8cdb314fea0c3a0960c11a86d2c0 0d8d897f8ddc695874faeadd1f77fb4e 0d8da9ffdd2c36fcb0ad0d1a33cb6c1c 0d8db6cc8c93699e6e9be2bb00d7500c 0d8e3888b66e666547d0e47317286953 +0d8e7316f11229a47695aabd8228114e 0d8f59b30c9d507dbf2a87229e790a7a 0d90037413a8267598fe67569f928172 0d901e9d6819e73fd60238fe8f0637fa +0d9185be25e70ec1cd72c05c3f23a5cc 0d91d5d0db052459ea5fd68de3605a24 0d935b62d3dd3f12ba1239817ec076d4 +0d93b42a3ffccfabccf658572349a21a 0d94209ce9f874b9d1fbf56aa449c21c 0d948cdead4ceeb51f08e4fde057d60e 0d9523db7ffebf29e84b0c96f61f0819 0d9616162f3447bc2772e9bef721a84d 0d96fa875fad10a6d2c10d1602cd406b +0d9776981dfa44f91f40ebbbfaf2ada3 0d9825e9431f9a309cdebfa3b3d70630 +0d989574246d7b5af2f0c30175dccffb 0d996cadc5b32fe42a2b2eb32b920545 0d9bfc675171b7512f60e2180ac27900 0d9cc323adcd7912d1b232cee172f5a3 @@ -3164,6 +3527,7 @@ 0da1f9a4a92afab554749ec870607d62 0da4d11d2357a5cf041ddf6f25699b1f 0da4fd88ac31fcb638c7c8f26ba425aa +0da5af02c7ad91e7953c13c4ee9f77af 0da69c29a7a4e3ac1d04495b5a6de834 0da7b5377fa768cd594c3d9d1038dc2a 0da7d734c70e28abc6194da9e0be609c @@ -3189,10 +3553,14 @@ 0dbc705c918a3db0baf8e46d58e748b3 0dbcc3958a72861751b89e5a217501d7 0dbdf11e96e4227190c2a6e0971954e8 +0dbe667a0ff1b6e24d2a6c95c97b2970 +0dc0206cfc71e41d1fbf2e5eedadd67c 0dc0549924709113303d05250bc53ca7 0dc11a1d1f195e1db2f3cc0d317eabb5 +0dc11ab55540ce624e548a0c1ae33bf7 0dc15109e806dd1b69f19b56610d1c3f 0dc2317e9d7c1855814be690ab36cb02 +0dc2e7e31f91ab134163a8e67800e430 0dc3de9f47088c7861a891f658a52f58 0dc73c1d9e321a6af9e92db350a57c07 0dc792bb2fbe59a4dda804121d328108 @@ -3251,23 +3619,31 @@ 0e01049ab1cbcb5f32bae1a721112c5d 0e02f4271f5c0789577710ff017be6c7 0e03d898c824c29cb8b45103e069b3d6 +0e06d8d041c4ecd8961a16f8fbfd2666 +0e070e06766d8a2e0364f43765d97541 0e0720b40c42b2e7fe10f6dd98fa9980 0e07e06367a2e4593766e55c129bb3df 0e07ed9ead6f2195e142f37fa5319a30 +0e0e4ec0e0189405a9ff455d12930c48 +0e114a4a9af193082269b057c5a8c3c9 0e125d9ba1e7135a226e523bad5ed59e +0e12c2fad6332bfa390bf55876f6e1fa 0e145d7e8a5eadfe8bdefaf749cf2f8f 0e156170caaa5b098a2fa664c23e61a8 0e15792498d61ccd5cf81f3339013dd8 0e1770494214b19d9c7e3de2c05fef5b 0e17aea710917c2058a04e2f01818e7f 0e1814e3d1092d070910c9b899cd5ff7 +0e19ea8c043e062f47f1bb845266f53e 0e1c308f09373cf7d83e70c7b8f5d81b 0e1cc22ea77b1ac5de5c7e4dd0c617c7 0e1e40a16950ebc250d5cf24b1b16a52 0e1fe830398c9a172e1b6514fdc870fb 0e210164523eb617bce3a5bd93b567ed 0e2121ad73af26e9d105bc97d41c2823 +0e24d4142e0b90afd746d12644bef6d2 0e28e85962a24d8dcdf8a49767f15235 +0e29caad651d5db15a48805e76f7f6f1 0e2aeeb582c6b0c1d8c1e2b91daa5f44 0e2b009a910411939857c50fd7149be5 0e2b706448bf46362c4833c8a452640d @@ -3288,6 +3664,7 @@ 0e41dff013ce421d2bc7e78b8fb93e6c 0e4210b122f431a98dee46c435bbcfb0 0e4316afa1198b15f8260d2bf8bdbf05 +0e434daac5e1349b5f939e0baaee3b7d 0e44cd9dff8b8ed574f706c828bfc8db 0e45f5515a022d2d26f0bc23f2b70358 0e461ca94b8f593a875ba1c6e4d0badd @@ -3295,6 +3672,7 @@ 0e4709741e6646dbeaa79351cb303bca 0e477890e8b93ceb3b1dd7c36b5c57da 0e481082086014c61a4a9f2b1ba33d98 +0e498c10faf5363bdcd75e872c0d1f1b 0e4a4ed7e83f437e15e5beb3e6424eea 0e4afabd7d2fb7301a810bda389e1f7f 0e4bfb66e1bb6e50de7d1053906b9800 @@ -3304,6 +3682,7 @@ 0e4ec6099dc87060fbb39f37d2ec61e1 0e4fc91984e6c2312a7aa403399d53f2 0e50d39a6b456bc005a4844dc5060cc1 +0e51f5e62357545e2dbdcd4b141ad4aa 0e5209ac0acf9db285a5bd1d89fca43d 0e5457c5d19988c7338a6e30cb38f687 0e547ea85d52997e7e093166fd688e31 @@ -3324,6 +3703,7 @@ 0e612ad4c502bbcbbf7b264ce18a1348 0e63676d2a63105986ef0c79b55e1f58 0e6594eea6e45251251657ea07b90b1f +0e659b87ed025b5e3ec5adc02d5c455f 0e669729c272cf6d00351861b5b6ea37 0e67dc6fff28d44a8b219a132886e335 0e6d6e4664bcece232d475bfc9540d1d @@ -3335,6 +3715,7 @@ 0e759fa18950416bf8729a5ed07cdd07 0e75bec2ef3a0939a2990901eb667610 0e75fe2072d580009f94ec4e53079815 +0e7600ef545afd01be5580a1e844574d 0e78348146c815da304ba1ac4cea89e6 0e7846da88f00f8d1f181f06c97468c9 0e786f9e0fe20097e44934091cbf68cf @@ -3369,13 +3750,18 @@ 0e904e3991c6848cb1fd58a799cf440e 0e90bf9465ce433e985b730bec9c97b5 0e946f72b9d73489873e13d6302778c1 +0e95fb2ceb5f1061181c7f12fc1f90b0 0e9676bf477a871e2526b9a3f99aee67 0e96f3d5a2cc28c2a5478d48f67f6a43 0e978264cb4dddfb5ef97799c7d88794 +0e97acd151753b609b3452036cc02143 +0e9aa6ddbe299d5c61ca4056374c4dd5 0e9af8ab4bfdc1bd8f3ba658c85a0349 0e9c3db68d0422f7297a9eccc6afc51f +0e9f1b735b050cb1e52967f9dc8b39f9 0e9f2d3bef56a7e97652f38f88590434 0ea3cec237e910fd1e96a97848bf8030 +0ea5496ab25914658456566eb7bf0a8a 0ea55695fbbb4646087f89d21db8cb2c 0ea721a55c3e1f64ddba5e976bf776d7 0ea7e347896552b78677994e87a07472 @@ -3396,20 +3782,24 @@ 0eb772da690ab3bc4cd96d34b50a995d 0eb79f6346b0a3a945c15cb94663b89e 0eb7b12595e4571e32b1e2fc4a371e20 +0eb9c4cc03245d8e08e842454e5e08f4 0ebad611327c1679bb88e352d8dbc9d7 0ebadf2f5f4580864dd69971ec7540ef 0ebb54364db157bb284fca7971648fc7 +0ebcee979d29f1a808dbfb75c75157f6 0ebdef02b5d32402e7dd6dec29aebd45 0ebe5bf2d87b0fc10f37297a95707d20 0ec10644260bf9a97ff4f8e34ce9d8d7 0ec2c972d116ddddc663a2d89f715ed0 0ec311fd6c517928db76fa9d33147855 +0ec450be5b68b671140a8190ec95620e 0ec48493b211080c8c8bcb4f3d381cd3 0ec48f2ed9df0d591fafbe344bfb52d4 0ec4b32b634bd4f965b64b1c5aa01347 0ec57e829ec80983e897ef7b1238a8f2 0ec87e385857af08656537980532a5b9 0ec942ab97c3323417cd4ca32efb8a7f +0ecac516e1cf5373dc383afee08dc2f8 0ecba65c08ea27a4100a5fee3a412d85 0ecc37a40189f93fb6fcb5924dd52927 0eccdad83f303ea3f706fd1bc64e3f58 @@ -3433,6 +3823,7 @@ 0ee71c4f9c342865813426d1d2c00b8a 0ee987c0b6b6292f30ed2db165bacb50 0eea2eedb90cf0486dcf8023564d60c4 +0eea546b46a48211c407062119b05169 0eeb10443f206a77fa8f555f4165a01b 0eeb3af04852f25165d5a66303e611e1 0eec7198e7fd60e1d08349dd16a122c3 @@ -3440,6 +3831,7 @@ 0eedc577222daa9689142298f322320e 0eedfdcb06271288eb40aa41d163fdff 0eef3663b2177162ef2a24da7a0b781c +0ef049e0b7198e4b1e9694d6a491af6c 0ef10b927be418c643023890c2451e4c 0ef27063129ee230e92180aa0992a1fe 0ef32cdcc2a9bb9cfb1c8f645f3e6abd @@ -3458,6 +3850,7 @@ 0effe69bdc61c3352c76643f4a2e6be9 0f002d39f1e2523c54b165c33eb20df2 0f05126da78a69de1f9e16de60c628ae +0f05e693beba234e9685c741b0c67f7f 0f063e8e4cc04d31104f663462c56abf 0f0657c0bee64015ae573c973e54fa7d 0f07edbc8001026d4418485cf7d30e0c @@ -3476,6 +3869,7 @@ 0f136243649540415d46b651e2367f44 0f13bd262e7e30828766d7b35fa17f1a 0f146562b2c40dab33e486c435d27fdf +0f1474426079e545dcae06d999a9de60 0f14a1a666e596dd163fb9a3e9b497b2 0f155d2e1e96c705deee3201f66d76e8 0f174477f8c05fd175cf605009f41b41 @@ -3491,6 +3885,7 @@ 0f21242034cb3ce5b9d73f3260dcc9fc 0f22018b7ea2cb0d3e653a3640223deb 0f2293b7d4bec3f83b96b62ae6f98517 +0f22c01d62dcfd5562f39713fe9b6f43 0f233507357d545890de3692eb102165 0f25d75043782c71a6ef3e0a1c2d9302 0f26277935ad7cc3d6042d98ef0eb44a @@ -3521,6 +3916,7 @@ 0f3ffab0266a3737656da83aa96cb7a8 0f4136e97d545d4caf3e8e5923f4d6de 0f41742d11a9f0aa8bac715e305bdbd5 +0f423e03d5944bceb704d1b90e711e6d 0f4433956579a32e645f71b3550af617 0f44a423f7787fad51fbca39c8c08ca7 0f450c11d33a1e550e16513639a2655a @@ -3528,23 +3924,30 @@ 0f4698cdb717cb9e9b814ec527f6960f 0f46ef50485715aa306f0192e6de7702 0f480eda91f4f6e357e3f6d15148c913 +0f481e64b6dd6121f71c2018b1bc8654 0f48ba1d5a54a5241259dbc50e38ca64 0f4944502c2bf68a2b96136b3c0a8f5a 0f4ada1add4307d85e7af969a855f182 0f4aef21c3dacd6cfd76135c481b695f 0f4b688ab5cdc2a3d05ba9d3b6a8ff38 +0f4ba4f19f100b9d34704b014699ef1b 0f4cbd81c6ccdb88fb401457980d8d0f +0f4e6379fc14b4f71d7bebcc3693638a 0f4f14ed0020f3fc9b6a32cb82dedf82 0f51cda6bb5fa57d1fc8819f71cd917e +0f55887e4d5e85878f49809ec15cdbef 0f56846ad3af9de20e09f7974aaba7e8 +0f56be489c2fee0bb01e853871804b1a 0f58d97e72a8efcc643f82d97255908e 0f5a6c23f77382ee30ace58dca300fec 0f5a876200d18f1cccfe9816d425a3c6 0f5b7d8143d6301f30349e6a1244c94a 0f5c0d76db59cf0a4cf9a9993035adfa 0f5cc9b0af3bcf3ab24ddf2ddbcf7848 +0f5d5588e5d6e6f229c823570d61327d 0f5e6cb256e0cf5368b875ad94957579 0f62535ba330e98fe77001af8e94757f +0f6341dda24941c92b728e5ab2aba29e 0f636f59a1b72704e266bd1eb2c304c8 0f64a386345937ac645bbbe50c7eb371 0f694ea96523802d3aecacbbf900d482 @@ -3553,11 +3956,13 @@ 0f6fe5746677c6e59d6616022638d792 0f704114682de7119a14d5c43b2afd51 0f70c219500c464534d0fa9dfc1b94d3 +0f7210b9604254b5713f17b5b2866a4d 0f7248e691f8401eec164e36f50f5837 0f7290ab380f0913c1888b2501444ce2 0f72f8f972e696301a6853f996d8971b 0f74494056b0bde4440472584a3d5d74 0f74983a13a7525d91fd7c5703ef2ba2 +0f77828d8a5282444aa1b3cc41a2b6e3 0f78557fc4299c2d43a97f8471045297 0f78a908c0eed3a69c15b9b85a606263 0f78e33fd3a5ec0961e241f99b251ade @@ -3565,6 +3970,7 @@ 0f7b1d2d26f8f5ad5289bb74624f41f1 0f7ccc8ec1b11ef3d1f3530688a42fe7 0f7cdd0dc519039249a48c33101a843d +0f7d3ba8f8c191707f88b1fc3e20b56c 0f7edcee0bc41c70e1da0c0d42fc528d 0f7ffe43653f89fd68a9ec7de71e4eb3 0f8337488ae733dffdb793ddbe938b29 @@ -3609,7 +4015,9 @@ 0fa4cc6bc99e09fb6e92aed7d7129cab 0faac4274f5bcd09692ed5dc89b733c4 0faada83c84d2e19ac8e4743a4dfebfa +0fab46230770c34a733671344dffefeb 0fab521ef703d4ca6a9635c6a7401772 +0fac587c7bac7b001944172e98d0ccda 0faccfc399bb3a63b9c1ebbf942e54f4 0fada499884e9947a0bd11d9379a3ec7 0faf2d58b9b802345f2ab2632897ed6d @@ -3626,9 +4034,11 @@ 0fc12c7e9f8abdb3017ca760cc5c2de7 0fc1b46e71d75f39ce35958050230fa6 0fc2ce4e86a1c636980f874fecc00938 +0fc3392ecfa46a8cabc8fdc33c55fb96 0fc3d7053944ed12291a10deaae0eda4 0fc7fd8f30930702b5641ffacb438944 0fc93f0a33d2518c1950031e84507669 +0fc95d42a54dad1d6f45b976bdffbaf7 0fca412012e33e508b4d030f813b7274 0fca7d178cfbd75a1936c47b83bc30b9 0fca9b9243d5b9c7a1c7eee2afefa4fa @@ -3651,6 +4061,7 @@ 0fd708ccd644715ac9377d32a6ae0042 0fd71d1f6c8167bee7740ac688b60c34 0fd78679937e17bc38fd166795ba483e +0fd8c2c2246e961724d72b12d90b969b 0fda526bee0d1ad217d53fba68a0adc0 0fda627d40584896a1199a1d9b110947 0fdad183d35a8e888528ad65b0a7672f @@ -3691,10 +4102,12 @@ 0ffe080d4b68079c405bbb7c45bf283c 0ffe4ed3b775c60f318791b4b23ffb09 0fffb191286bab4ae7ec04a272118f80 +1000826777c0dea7e76c16fd4f6565c2 1000b31cbb3c6c087c94aba1b04ab309 1001305fc0cabacaa99cab32ecbb57c4 1001a8a1439bd9f8e4f50e02e4f7dc7d 1003d8f11899378ea986f4e84cc98dd5 +10047a3f260071bdaa59d7b146622fa7 10078dbc57f60d59072eb36fd420ced0 1007a3fef80610110ca560fc4f7e4b39 100906e33016af6ce1c670b0166c0353 @@ -3707,6 +4120,8 @@ 100ca3579fe90422d14ba15f108d1a60 100d96795d8dccc85155933e5d9a92ef 100f82bf80f667232042c7d5d181b417 +100febf0f62b9b76aac9969fe77cfd51 +1010e0555635b06c1533e8c3ac3396f4 10118fe9542be6585c7001071421e4a7 101285d62f2c1b60263fc4b5b2af2bf3 10133dfaf62842614ef803c0515c422f @@ -3731,12 +4146,17 @@ 102166647ba8119f47d651e5456f878e 10218240c1008c95ea0a36daeed82019 102201f4c22d6bb19c2d21bb3ccd5673 +102208797fcff71fb383fe557690d93a 10233038ae17562f3358c8bee676134c 102534cee1c969c6ebbf383307178b52 +1026db8cc0da9479a233d58a83b5d69c 10277ffd27b10d2d275ed98994468b48 1029d10d1123ef3e07dbb979babb3a84 102a9d3a1dc0b30599050a6bc6a22b32 +102b02bf6dcac7c6cbb8d2b1bcc9872c +102c5d146748119cc152b12bcec1455c 102e843e300a601258c16dde33e88fee +102f0e110cd181cd199f4bb1d216d35a 1030d127d82821217505629dfae883ba 103141fdc6448578220e59abb518469a 1031bd25cc4dbc8b8aafc3bd439f4de3 @@ -3744,6 +4164,9 @@ 1033daa4dc4cb82fe24f6157165a0525 10342f404dbd8e95bc676816c9782c6f 103604b606a62b46ceef19d5c8908a26 +10362f0339f08117cc6e8739c2e6111e +1036cf2a645d3cbe4597e3b602eca27a +10392d2560783431cf6427c4c27e5268 10399a21ad01bcb6df26c4108839990f 103a605a9c4e10977cf40d65dd105610 103a7c261b0b2026e710ebb58fc8191b @@ -3758,19 +4181,24 @@ 1045a496bf737b46249668a1527d81b0 1045a97d8c7a3cb0be2a8a9ee78f61b5 104655fb5a7998112f5ef181bac230f1 +1047ab3b8c9d5b51cacf85d85e846764 104a0ec1fe47626ad3d0ddd452a0417b +104a9af7982c7c2bb44872f9a758ef96 104cb0e65f42aecb39b67ba6f111bf8a 104da92cb352e12e08f16818a65b7547 105109f86908aef3c585fdc65affd5fe 105528610ae06e45deb8164f2681bd2f +1055902638718674ba9d9e2b4b19e9e1 1055c495d327317a26a7b664acb1cbc7 1057295610e5cbc904074183aa168d09 10590da1aca8abbece44a184a9a57a94 10594a1899992c6871948810d177f835 +105d99e8f51c3b6fbc3fa05dcdf006b7 105dee4efd06dfa75421121b87666201 105e101658e2be13ecb3bbdc3bb78b03 105e2d44fdcd5b4c5b32585a3fbfe3d1 105f49e991ce8ae8f2e8b8a6079c687b +106006a4e8f01b4520a7204c03a6efd0 10608cec96c6e2ff666223e7498ba740 1060f6bc06f094a6023d9e0e41a2504c 1068143256e7fcdc7ce24bc5e3ba92b4 @@ -3789,7 +4217,9 @@ 1078631edbb546b6e0908537f0eb18fa 1079611e6e79538b3835bc7cf41eb7a0 107bb7cb2c8d5e497366de3bab2b277c +107bdd5137f9ab1c793436b343bcd5da 107e824cdb7aecca3334aa8d0f37be3b +1081685c4c0dee539641d85cb88cbfab 1083ae8361c36e482ac2972e91e94295 108447227fc17ffa083c72a0a097f608 108469397de416e5dd83d39c4b23b5dc @@ -3812,6 +4242,7 @@ 109c5f9c1ff799950a6121b6b31dc048 109c9de74af51d2fc132b2702d5c7ac1 109d70eb1d3871d622adfef9f0df2e53 +109eda0fdec27dd646970d54ad3c21ef 10a3e01615bb8b61b346dcf7eaa9cbe7 10a5d52acb6c799903770d552532f732 10a5da66a5ae7bb8b6d94c71c731d80f @@ -3819,6 +4250,7 @@ 10a7b507812c15e6676d9e03b2aba572 10a937905374edf836d159c79f3a8a06 10a93be5e8225b84a67a0f92f5c6fb6f +10a9fe97a4d3e2fd3b9c0c17458e0467 10aa8636a0516d84a842f1234475d298 10ac04fadf93aa4542cd3eb3f9830425 10ac16c029a8a2f2be0a09fc95ab7cdf @@ -3827,6 +4259,7 @@ 10accfd982d8eadca835ecd8dd8ecbe9 10ad35dd7e53d6dc0fbf6ca867bfde0f 10aea60fac58e34dff216963a58ce6ba +10af6f916a1af69fe4faddcfbd07553a 10b1a3c5b9919cde86bccd08b1c69b12 10b1c39ab1b28b20e30677b044f40d28 10b2437d1f390c4631a11cda374f4f55 @@ -3873,8 +4306,10 @@ 10f1a36f1301e293a64f59fb7755be82 10f2e8b277c3f5cb831bb35357e310f5 10f36ed1c0859b2172511517313dec94 +10f566dd45daa826beaac576d7c348a5 10f5f5db3da89d25a7c96ab059c55842 10f6be0f8bb121e339cde0d2dca3a7a0 +10f80a9ac66531ef03a64aad5af1cae5 10f94cd5c8a9f942173b3e8091ef0410 10fc5488af8bfbd440f04af11f1bccca 10fd1043393f347d937844e4f7e0b296 @@ -3917,6 +4352,7 @@ 1128ebed370cc8c5555856cbc2384374 11290c93611b5f8999cf3f8e4d51724f 1129a10975c0bb1c3ef9f82453cf6f70 +112cfd256397941768268b19660784e0 112dd50057613a5881277f75917e4805 112de4585c243a58e98c749744c53acf 112dfe847f7f6d80d8aea2f2c456b3d3 @@ -3951,22 +4387,30 @@ 1146c4953dbbd26edc5f677820c3ceba 1146d2e9235992a099ab55371d1e5398 114842e8ea39a081cce29167c5d5e353 +1148b6aabcc47958c4d66d1fe2c425a1 1149ee21885bfcb913177637c23fbdb4 +114b3af0528fa2d9798063db99c02b4a 114b3c2879a08d9a4b8faf68122c805d 114f9ee4cd90535daacb64cb5a1fc96f 11517d554441e7e5281e55602406bcdd +1151fe5347c521e28cdc9e9b474a9e3a 1153bb7bfbfe5cd592a712d020f90902 1153d12ebd9c7b7ad750a61ed9e2b323 115410572b90eafd604e7ea47a646e2b 11559a4e1f0b4a40665091ec7070e660 +115726f9d8dc5197f2f54d78a5be7098 +1157b2bcc2bf449d61d062f92dde71a0 11597e8094494755622df12cc9215f9d +115aaf5b862486f74e159419382148d3 115b6b7d81552d50bb20309a9661b219 115bcd62a8f5c554a8e9dea9c6164b86 115cb838c7c72d1e61338d9a48768380 115d01626c34ac1b0b9b53c1d429d820 115d3bcbab3ad1c10b4e0695b85d3ba7 +115d89c1d28e04ee5e8ce599c6c8a52f 115e4badd7a8d64275592567c1d8dfbf 116277ae4017505ba017ee9e38a48e83 +1162829b6981dcf2c12041d479983631 116474c35b53b843c971dc89d4fdabcb 1164943f99bc1c8d48d4a6a646f0db72 116593c631d7e76ed822a416c369f37a @@ -3976,6 +4420,7 @@ 1167f128b0a58d72765f416255ec65b7 1168779bd7ea780eb225a068c3591e50 116ddd5853e93878202f3cb70dde08f0 +11707b2762af0bad4f1356cef6f875e3 1173d9b3539090aa76ea43763c3a54f8 1173fbe477bcebe18f3bcba534331fd0 11745895be7414693e6441b72f681d3c @@ -3997,28 +4442,35 @@ 117f5e7b05e12e9f8303a1a28cfa8e1f 117f9d13d344f5a31c5c5c0753ecfd09 118019a3663c2e312527d17ff28b8875 +1180f5f59daffa788d31f2573d8c9c5c 11825f0c778767c4edac04da84a55045 118389abd88b120832218bf8689bcaff 11839e653a227b96bc5e0ea1aa70c238 1183d806b73ab05d71bf0f1e36d61b57 1187433ecfdef202d7f68ce662e96809 1187ebf0da53793beb1fc230633ed457 +118866980258f50835c4c6a68ac73d10 1189d49a0be036312b0b47e2914595fe 118cf7dd85e201f825319fec0c39e290 +118db6f239f7087de134a1df7d3d5fe9 1192ea902110633bc6ba54c6c5cb5809 119321b19e16d8d538302b11422244a6 1193906fa5ea725a8183a54844fd1d7a +11952339254e1498038363e2c577e258 1195e4c2cfe61e89b8eb9ae30a83fa32 119617e80751cd2917a931e71ad96421 +1197ad0d0a4ccc0aecf0de20d1afab66 1197b413c0a5ca464f5a8f31018d2d41 1197d8a1da26deb3f441e0136a02089f 1197e4d7a711f01e55df77dba9c36099 +11985f5ef099d72245d4e36f200d61be 11987b40b8bcfc2db3c0e8b6b6fc4e0c 11999aa9de849e73f59f90190551a5f4 1199d1f92548f1daf7d9a4229979f239 119a6cd63a049481ac228454837d97f8 119a9a6c47571fcbbef28a4b98c51ddc 119b7ce99c777bcb8ef630ab41ae5453 +119e7d5553868320354f76b02df1fb46 119f0b937ee00a8e2a43c203ca179b7c 119f0ec6cc41973dce1ff9e793d2cc84 11a046a64eed41b809b901a460237f45 @@ -4038,12 +4490,15 @@ 11b17a6adaabc1df315c3bf0a4e7be40 11b1f8aac36fdc832b1eaed93f57f656 11b1fa687db65526bfbd1648bd36abe1 +11b2cd116187674d06a4af2a2dd3f3ab 11b4f0e06ad027fe519be0a66e8e2f1c 11b76eae548ed79cede3592c6bd50c30 11b7782c8868c715771357bd87dc8422 11b8447138aa6992698f39a1068aeb2d 11b9ad2da661b821fe4b1325851af09d +11b9eca9945abaf2adf80df4c9ce9838 11ba2115d14f0451c999e8d63e29a294 +11ba919f01f0e8a9fb57e9cc1e2e62d0 11baf91b20b0040b426fd4ed5845355b 11bc83461aa26bc23f40ced8d5f55b9f 11bdd976861834ac9025e5f7681bff6e @@ -4056,6 +4511,7 @@ 11c489bc06dffc7e526233c0f7b5e867 11c60ff1e36cb967fdc9e93d9dd6f7be 11c6e64505d16d8f28703c049b2dd923 +11c6fd0f3c89a77926d29b426db2c0f0 11c72cc08f344d75d7a8cb3893e92dfb 11c84cc9e50494751412cf5439ed87bf 11c9dfc16a52c464c3a5b8e352004e3a @@ -4063,6 +4519,7 @@ 11cb3ee666845e926889ee735294c154 11cce2a3d49151504ec411db59c12439 11cf970fd27bdf42cfe379fe06bd55d6 +11d0a23ee52d666140fe2a80bb420bd2 11d126d81585165b858cf19b9294a910 11d155ae9fecc970325bbece001cb60a 11d2012c1028a12246946893cf808587 @@ -4085,6 +4542,8 @@ 11decdc5c871a78fd903da78b1362e37 11df5de877a48379b0f11611dc571e42 11e02973dab3f459fb2eefcab05bc33c +11e045b9075e4594e1dee40bb1667a17 +11e2ee47fb179b1f5a52108e95023413 11e342b3d03e7c274cb5716986081111 11e3e1dad8585993f1360c6fea29326c 11e618913670196a9b1c04ad78975af9 @@ -4092,6 +4551,7 @@ 11e87415385cdfcaf07aaf0638fd9106 11ec1303984c8e4d21007f66575bbb0d 11f142a2f7664ef3a4ad0da038b9704e +11f192ebb1c9251ecfffa81b9da2d522 11f41d781c031cfa9d8728f1b93e037e 11f482757eff505479373e233732cb7e 11f7652e5503b5f14fbf9f9ce2af9393 @@ -4105,6 +4565,7 @@ 11fda7b09107dd6ed1656b3e05382535 11ff065dd658cfc913e3547330c82b0c 11ff9b1d4d3f68b94226bb46e5960617 +12019d10236518922432c36f51351922 12026eb357b3e300dfb6482abe259021 120432a3bc6603feeec5d0d3b704f26e 1204eba90b908922c3c3d43e85e07db8 @@ -4115,9 +4576,11 @@ 1208d34d9e9995e83ca1ff6650e81a1e 1209792ddb813ea79d826024c818b0fc 1209d9111c5d4d329130bd3a5cd9358f +120aeefa6239fcaee9dad5426b8a8a5f 120bc9e0b75dbc8b70002571f3c4ac17 120bdb07b34c6597742c090cabe63d8f 120ca80db3b4cb715e540313291d8846 +120cc2f9ef52cbd7bdcebb1b51993906 120d7aa326270cb42be5e91965e0ec20 120ddf37487f8700f7a53dbcaf28b63f 120e96ae2e89a9088b551e3a6b65861f @@ -4128,10 +4591,12 @@ 12150c1eaf6e3515f6e687c8ec87722a 121830651f9e95e02dcfe1e2ac8608fd 12196dc0110981cdf311982a7d9f5e12 +12197217c3c4cf50fa42dddf09c3d24b 1219b28926238df6e1ba11abdfc4a52e 121dfa883aff7035bbfdad4307e5f26d 121e76b3c723420208e612e1655e202f 121f4d8eed1994dd2cfcaa1511a064ae +121f85d60adc8f9f870e5ef67aff03c8 12237590429e23cfbc0bfc2af7c96a3b 1225c4238f291f2e20df1091eefc92b1 1225f6178321d9a1552a555a552fbfee @@ -4152,6 +4617,8 @@ 123014610a497a1663f8e564927d375a 12309a2dbea3a37235383de9ecd7cf7c 1230c3eb87eebcf7151d5b700467db1f +12319f8b167b4518f46896572aabbad7 +1231e0ca226ab0d43b43a04a3f9e590d 1235bbfb2c2d9433326bb38fba2bcfd7 1235df8cc25dffb92a9dbfb8c90ee4bd 12382867c32328c002c083ba09f4ad26 @@ -4169,6 +4636,7 @@ 1242f98a8a34fc0b1cf31cc59ae95b59 1242f9c08236ece429dc6930c68a1446 124329f2bde4a43c5055d452cc9cab5c +1243914e8ac489055bb448c99b032728 1244b4ae80bf038592c22d7c28ccda27 1244cdf5ad004366157c623629f010e0 1247402305775be71cd7e2fba51eb65b @@ -4192,10 +4660,13 @@ 125a3ea2006b63b200775b2419cd3cff 125a6ac7b42f62cbdd58f69025885b1c 125a7d26843d36903d29c52a0a329318 +125b930ce9cf1209c9300c25bc8ea3b3 125ba124b79b1418ca0c5b087ad3192c 125e94ef57de7891ca4b6ffaec637ba7 +125eeab61f16e5e089f23ea50b0c6324 125f9ee0547f854764f2351664b07638 12605c24d839443bc405c68bf35109aa +1260649340fad89ac81a82038f169c0e 12612857bbb90ef3ebaff1981074e812 12623b1a06a00f5cbab6b3c55ec7a11e 1262d6717e4c56e13687258435e591e2 @@ -4223,6 +4694,7 @@ 127707e65caa351159a4e22cea3726fd 12779d3aa31ede59d98568411fe9764a 1279da5bc23bb63e4b4206f64279df75 +127cd1751fb6686ae0fbb5dbdd415b0d 127cd4e816935892f2473be02419791a 127e144b555ff80537c3e2672ea1cfda 127e6f15577365fb25ef7312aedfb721 @@ -4231,12 +4703,15 @@ 12808651ab027eabebca4590b9b98e49 1280def9bbd502c005892b80c09536ea 1280efffacd2e49e93c24e10a7de77a5 +1281878138773d4322a8cfc6d796afd5 1281f131fb36462564d49b92e36ed593 1283a1d348f1b4989bc8a9e490b97f46 +128413dda7583ae689b6166c716d6f9a 12851b82c63b99ed1b1fa83f29e2d8f3 1285c1fda09215f0f85296d8bd44aa48 12871c2ddb304f196a2127b67d6dbf37 12880c9edbfea43b126397349ba627be +12897a8ec5f234b7c6aa8929b4537f2b 128bd27712c3e2b42584f1bc261c48e9 128d901d2affbab4f1be7289f2eaa436 128dee43bede07c86a506fc1a93dd031 @@ -4252,12 +4727,19 @@ 12976475e6960bebca562c2a01ef3a34 1297c88edd5a7496e750ea1db855e519 129864aa15d10feebb69a4aa4ef9d917 +129882ae5c3a73f8e2c36fc31c68044a +129a5cddb99673767fad864235ad2695 129bfb68d6874c3bd533ae084b28c38f 129c43e33839bae6c55b4c31afa18445 129c49fc33cb10c5497eeceb31537061 +129da53b67d3d8fc3c41b112a2143dd3 129ddab45276d2931f80c7712c0390fa +129e118c4d23736bf039e7e3f113dcd3 +12a09af70688464c697562599585573f +12a193b3f8d386b4b82ec073e8a7e739 12a2399ed8a2b16d101bc19717cbbc27 12a31409ef8760344fb16798551a8610 +12a46445f93fe2624a4342d939fd2689 12a57adf290d5736388fb305f2203975 12a5c7cd12ed2529e5314f56f527d5bd 12a6545f1febbea67179fe8042b793e6 @@ -4268,6 +4750,8 @@ 12ab6e54ca42f638788f21c55ff7f291 12ad32a232796daf46bebb8b23450218 12b20b29d18a52e3205996d2d4ff9921 +12b253bcda26d86c58d40b73a30e1e5b +12b7a7fcf3fc74bb6009b20d275d81c8 12b7b709c70900c4317a8e1d5fbcd57a 12b7e117a2fa4e6bd11040591ca23fda 12b839bd266bea8492061ab032e84fa6 @@ -4282,6 +4766,7 @@ 12c233538b6b3f9cf209271f55c33189 12c2a859b0a1b9ff4cab9c1e91334354 12c2cb78f725ce4542e2185ff1e44db7 +12c32d98370813aa79e9169fb53b2bf7 12c55736c013613e03a9e4c6302cb7a8 12c5ac2ef620ae96eeea2a01da3d91dd 12c5ed0ce4ec47887953a84bcbb12fcd @@ -4290,6 +4775,7 @@ 12c94284f205633836fcaf48d32333d5 12ca0dad5d4cac6eb40e568309412418 12cb9d476d346d34e6ba63a62d2f204e +12cbc2ddbf299830a75e02ee7edb21de 12cc58ac92de2ccb091a516e520e7c9e 12ccb8c85f5ecbb4f5610f94dacbdf91 12cfda304e51c98e4b312a05d558556d @@ -4324,6 +4810,7 @@ 12e6cf4a67a24bc5d0c6cb8f9282f7f8 12e96adfb0bed9724eadd952048cbf2d 12eea6fb336afdb324147ae195decb7b +12eed2d2bcdb166adecffde8726231b8 12ef1bed8e44d1383884cebc5f7a31f6 12f1124eae6d5273511f696681a255de 12f3033d00cad371551a0bffd9bf7c8d @@ -4337,6 +4824,7 @@ 12fc3019f4846698c8dffe5567025aae 12fe7aa981d53143b06eab414f6a439b 12fea27db492b71cf663289b409acd37 +12ffca4f0ef38c58558357602fa39497 130001313ced605c946ae0e14a33e3fa 13002de3605f63df1a91995267fed313 1300ba1b4489117da6052e4ee2ad58cc @@ -4345,6 +4833,7 @@ 1301de3a4bd29d306c1bfeae4deb8445 130301e8eff713cb13215c2b8ccb2e3b 13035b571918ef522e1f808f3492b208 +1304cec17e931b0f3079cd0312b01b93 1304f4a2dd0cec1a5a6d4e7cac16f26b 1305036bb5070cdb2bddc34c16891dbb 1309ca7aa667ba64ca282f46a899bcca @@ -4366,20 +4855,26 @@ 131881688c24aeb84662f1bf4ffa6f34 131bcfc3a6dd8a8102b9b66692b9df13 131ce549efc5ea73315d867ce09e6697 +131d21fd89701d855385d06c664b51d4 131d2d5e04a4dafa5f032ac46b8260b0 +131d32857ed4536f18d65458352e0ab8 131db6b6c87f36719fb726fec2e01111 131dcbc5e15cfb747d829d1479af166c 131f0cd7cca3383fcbf0d5e2648f7623 +131fadf07847238736187205da65b95c 13201c16878e3ef9a97eea2e859e05f1 13224811a83811db420021b1bec7b59e 1322729ef479b7b7a44340a159f37b93 1322c8e97f4a68d957c3513d5d57769e 132368fd5de0bdfa83950b5726018c98 1323ada56bb235fdb3043c8bebcc4d9a +1323fe26880901e9ce80a0444f0cf503 +132459fc743105af71e91503fce2b6cc 1325795109f4747a3d6953c898c50ef4 132582e45cf266570aacf9311900a13c 13261c67594971b6ec812cd1b0a88156 13268a7c4f5ff0e594333a81920922b4 +1326d9fe4d417028cf8a6524ec73698c 132ac2a94441842c9127d4d820a5d055 132b3c67355f8c72b7872ec42357b136 132b943c9af8b67d80d251cc6934fc83 @@ -4390,6 +4885,7 @@ 1333773005d74460ac66b52682539464 1333b1aca22be3e0c03a6d25326a69c4 1335d719e003c0af278334fb8748ba80 +13365fc436b92a584d88207720349e3d 1336d2d1f7aaf122ffe6e6d834407592 133776a495d55e19118fd80442a1a484 1338cdbfca3fc8b7a30b66e855d4179e @@ -4400,15 +4896,18 @@ 133d1a95b4a1f648fcc5636762195f22 13403f4b12366b0d5b74a2b046dc279f 13440b79a087752161169627168b0cfd +1345fa17f0165025979df64e2c6ee07a 13467cef7f0cbf6f7e8160d91cad0f11 1346b9e2e0a1460292551b2ad40f5a4c 1346c47e6354955ca818d472f2291bdc 134a0640f87e13d90118001341a0251e 134a26ca512aaa47fa108e33525b3cd5 134bffb5b3155f7a82d0317ccbe419d1 +134c52cf24d85b1c3c1b9712403d5012 134c771e40ebf79f68a13e34d1694c42 134d2b2aa239a8a7194135f481aceca7 134eafee6b6cb36be6fb856c34e2393b +134f7a8adfc03b62bad2263f8db238bb 134f971d504b1fd1cdca10c1f2f8423a 134fe57cb2cbb5bc7b2c0221847ef8e6 134ffd387f3935f7dcfee163408f4b6b @@ -4419,6 +4918,8 @@ 135327560d62289c64fe6e390ff5bc73 135573b557221ecdf1a9d893ff4ad83a 135671541223c4a3e4b95134e149afc6 +13580973cb985883a6da1008401dff4d +13594c9c4de0ea8005d0e6d4eb1dfe90 135a7db442b9e03a6e7a0ef9d4de5ff4 135ab053e0ed16b784ae76574aec31b4 135ae5d4d6b3b2a34f86478862a6878b @@ -4426,6 +4927,7 @@ 135c92ae0a7933eb24f685d4f4ffe6d2 135cafe40ea64016729b25b026418d26 135e86a51fdb79cd05f717f3380f2d9b +135e87f466b4f50bee0f5ac8b33d2827 13603cdd508debbd5553a35d16a63bb0 1361723797c7c0b1b468709f71efb4b7 136416f89dc644c844558dda59162007 @@ -4437,6 +4939,7 @@ 13683fa48647fd8377f0e961a3121651 1368b418d08d979fd0ad4bf82ffbe2ff 136a5f27ecd019cf4620586c683c015e +136c26c8a90c762f62807bb3195039db 136f9f713535725f9fa527f8446ea938 137012cb7eb02a4000b8e74d9da1b599 13725042c309c9d7a8a9bf138399d66e @@ -4446,9 +4949,11 @@ 13759243c8858757f894d48015a9f4a6 137718cc16913be54845c656d5681cc9 1377c3d6aa6ca90cfcfb5c4b807de2ba +137830821d07f4275bc5e9e0b716c665 13788e7b29c79bd0e29d985efc25a3c3 13790d58893fefca5deb8558d911ac9d 137a3ecf7c08944dc0aefed82ae5a2ad +137aeb164c5f7c195286df56caa2c777 137b3cbe8de0517e10d3fa5722c79026 137bb2432e1594b7df8a672d0b389751 137c2cfada789736887934f440e9ece4 @@ -4458,6 +4963,7 @@ 138672e70d760fe9a01d8606cbc461cf 138686762fcb7a8d486e0277bd08bd15 1386da2fff93ebe937d539ace2d1e9dc +1387d430c14001e73d14e4d3aa9641c1 1389ac1cc5537693689c1168d771b917 138a802f4751610beea1d0b3229e5588 138aa6e51943b200b09288e76f059e1b @@ -4465,14 +4971,17 @@ 138ac511d776f633e7b0b01d4141c420 138b803ce1ebe0d658924024369d65de 138ba97d87643d6b7a93b429363cb673 +138cebcda0fbec3698e3122fa466c399 138d1a9f1e7ec6d850c77620479296b6 138e400a9c7497be7c0d3f6451c656b5 138f3b461540c215a18957dd3596568c 1390334612ceaa965e6d292dc62a8cc3 +1392f486a50a9c36de7146950ef9da65 139372de3786176bac4411726a199554 1393b4401e3a3d1b95af253a230129bb 1396adf90f490ccaa04c4b37024c1089 1397bc1b35f52b1448a54ccae2762d01 +1399c573a83322b0b1349056a62b8ebb 1399c930687a8335b2885f0f558a9719 139b47e93f03e749e10a20586b77838c 139b8eeb57d114d4354c4355b4915479 @@ -4491,7 +5000,9 @@ 13aef0a176e1cb02ac8935c2424d5ed9 13af1120e7eb46d1fff62defa1acd994 13afd099a43e91dbb8d6c1c2da5391fb +13b0d4e1097207173fb19b46053f1dbc 13b15af62c9dd115cc20cefc8701c584 +13b217d52f68188da3fdade7ba97ea1a 13b231d9a7cb729d4b3f0d9397c48260 13b4986b93ef62b60dbb4467ab7b0d63 13b530aa7222ed177cf134b5f7d4d8fd @@ -4501,6 +5012,7 @@ 13b7e664a7f64549ae3bd699042df694 13b835f43e880515fe4d00d82ec4d879 13b906fc74c9b65e1ddc92dc8cd4745b +13ba7c78f56e75e6a7ee760b4e56f6ac 13bda466bdcc23ca9fefa211f4149a44 13bf71f50251368a632fee94b3e15407 13bfd6d47adf993ca8410f698737524d @@ -4520,10 +5032,13 @@ 13d18aec3e3a4020f6173d34bcde925d 13d18d9635ffb0ca0d63fb618a2348af 13d26abbcd4c895bf2f7b4a2e4be4389 +13d2b1b66c3b000b3f03527464233941 +13d3285d6fca7491b7bfd62401784a78 13d3a35f256205e9ecb9792a9431844a 13d3d456d875b29870aeb1f877cdefa5 13d41219e9fcdcf54a207cee8f606ff5 13d4fce1a5538165405a72c80fffcdac +13d4fd531a3cd38befd4698c5a8354cd 13d7626ce7ff32837fdc423f7b6b90c6 13d839b87fe26dd13fac6d6287fc4265 13d89593a361ecbb484b2b8ad2cf9912 @@ -4545,6 +5060,7 @@ 13e688c3f71f1039d9ecdb70a2028b5b 13e7167f057e16806c4341b60969b790 13e966d32d34630fd997294846626345 +13ea9911e3bab6aa3ad5bc3b56c1799d 13ef03d4ab3a50f08cb47d49eff02891 13ef31ae5b15a4512b3e09f118a6a5bc 13efa77817e7fdf0635620aa9e91e953 @@ -4561,10 +5077,14 @@ 13f8d35236392a778d7c8acd45eed1f1 13f99d7f4c3dbc2ac0fed38b215f475e 13fad78df24e2a5709adde62e403e01d +13fae26a47e73b0c68426b98b0043b6d +13fb6e44de7855b3c6bd4984a3177c5b 13fb9135be7c1e13f70b9e8df3c38960 13fd74e2d01b7f77843c7615136cb83e 13fecfaaff6b45a33f91351439029667 1400a0ba56e2286282e077b22b12da6d +140208e454c1712fe7799401ba8b6309 +140259f1b3240b514cbfbb0f7bd52fcf 140265066c1cb7a2408b0251c1292ef3 140369d27e96feff02891f6abe9522ee 1404c41dec97d4128d0f07dd6770f022 @@ -4576,9 +5096,12 @@ 14109687a006f0ebaf143d451d5cfd91 1410d53f9b83996aaf62c4cb10fa1d69 1411017bd6e69eba5f4b44c7d705a1ef +1411948fbe794bd6108da41b30bc76af 1412a50b30c93d7d4a9bb01d2fb4d4ad 1413a48c20e9973d75ed28e20d4f5d01 +1413cdd7edfb54c9450318693fedab9e 1416f8cb8eb0457904134fab09c0bd83 +14174efc8542445566692e3cdecd144c 14190622eb28c4e0481ebb8b4ab3750a 1419c14bd28bdc9066150811791db025 141a56d68009da892599b3ba73baa816 @@ -4592,8 +5115,11 @@ 1421702017266f4535af28b1570584bf 142304a0e5e114f18b172d10c956a96b 142407fd6e250922b2f08f3928224c4e +14251d97ed23e1a2b9e2e167f37a0df4 1425fb223c5ada047bdd7a17e8ebafbc 1426511b083e72177477f0fd6fcfb99c +1426d4b8933f22773ae9df28ce7c8e17 +14274b465dc0c8e25e4eb4005679b59d 142b001ed0e5126e61d19a03fbb8e05a 142c34fe69dfe2368095c4a8b9393ab7 142ed3bbb287822880c1677ffc8f9680 @@ -4608,6 +5134,7 @@ 143677189012c4a983edda0b56fc773f 1437a13ec545e8f89d803a7e05fd4b28 1437d7f6d43002bf9a563e48a2b028ec +14392b19c5782e164922b22bca8808a4 14392ca9bf984d2736bd00e9b7bbf367 14395dd8cc6a4fedc90c448fcec6055d 14399500869d3d2e7bc9c33c56276a81 @@ -4628,6 +5155,8 @@ 1443c4ce7292bba9367d19de4fdd929d 14467ba6dfd0953ea3ec446774115177 144697347d9759fbc7acd9b19f3d6543 +1449021b568b40244d4f8ab7a1857732 +14498b4ff11fdaf8bac27cd0df1d3f57 144c912fa39c8f80a982ed9454d7b270 144c9d148333bfa751279d3834828496 144cca949a0e0b1e58877a53cdf8ac1f @@ -4639,15 +5168,18 @@ 14579e025738e15dcc87bc1a0837bda9 145a01c3ca940dab1b16b2c214695dc6 145a8aa1cb6e9fe8a28d158f818b2473 +145ac14ff699d74ea0f9695fb58f6ec2 145b1ca7495c4a5dfae4697c93fea5b1 145c2c96cb11b838fedbb7dc66d0dcbd 145c89a0f78673b8c4653358fb80fc32 145db7c76cde85924b7bf49c6bc77877 +145e674d2efc25a89f6ff27b231bfb6f 145f7d36af0fcd94780ddbbf11fe97c1 14605cb5d12d44430febe58dd03cc03a 1462ffaea82babda5bc6127a43cc47b2 1463350845936642df58316847172a38 14640b6bba56431e23f9239bd3013dd3 +14642dbc012164889622ac6b3fa039dc 146495e0ab253ef02c76fa69b6a6b355 1464ee558d195a1d66f44a769b40d06b 14674b5170017b679e045cc3b2188876 @@ -4657,14 +5189,17 @@ 146c00a9cf4589dfd2de444dbc00dbed 146fc2bba9b41ecdb4d93648db0d7d13 14711b678ab11b37c0d0f7c29ab83420 +147500038574060ccbae960bf11c215a 14750d3e317605030f554ca822284620 1475a2e5cd012ae4fb8b921202bb4da3 +147655d048a289c52998562d223de492 147a65ba555cc0e49b13e63b53cba034 147b56127d928c12d292dd409b24595b 147b92a414e32e270678eacd58bc4754 147c1018686542faee057649a462d6f2 147c9d7a91b0258a01258488e1862d33 147d4ec7297d635475449cf6219ee315 +147d5845b55ee951cb8f55c88c0daaeb 147f437dded2dbc2dc458cfa5e17b21c 147ff14ce71ce0ccc0f46dc48c1df097 147ffe6a6749cfb559edbb17a4c2ffae @@ -4681,6 +5216,7 @@ 1484af8f665c88fa3c6b1a7e2de136c5 14878270896382a4222acaf5a198a228 1489a125597040774edf209a82405a75 +148a61d03289041354433047ed07f85c 148c1cdf17d9409fa2873edbe982117a 148c8829011e7d05901fd883a50f1ffa 148c9c8383643dc808b30f82bdc479c5 @@ -4691,6 +5227,7 @@ 1492053a57056db6f8f9a6ad25db7b05 1492e8a200b22a6bb78411f6e537b69b 1495f9b4642e0bfcd0923d399d8f540f +1498787ec033b5b9f9535723cdbd98a5 1498b22c4e6efb6c9c57600788f11e49 1498ca4f00d462c7808747b3e78b5208 149942fca71a50648a9ee2d7ff824b7d @@ -4699,6 +5236,7 @@ 149c09591151ba176548690135137723 149d85506f9487d060f0943bc7becea2 149e025b9701ebed66e220f937eae05b +14a039ce827d7bf4e504aebd0bddb125 14a175b5dd3ab0388109712ebcc55e38 14a1ac77b083aaaf4732b3420e6779c0 14a2579069da79330f339e54ca3f137d @@ -4729,6 +5267,7 @@ 14b44fca2a57d193d21315d39f537970 14b53e202d452936540e488280aa4b2c 14b6c72e0406d5f9137907c8ba5cd335 +14b7f9929464a0a06424542872525e4f 14b833f27e903d9678eb7bf123a646c7 14b8c9d7d39ad9cb61234a19a6730a96 14b8ef1285611e75ac0595dafd927c29 @@ -4761,6 +5300,7 @@ 14d69673bff813f3844a49f80c08611f 14d869b63489c9f599b3496848e88a7f 14da0bcc720e18333647503872a68a5c +14dc8f1217f0e45f7863747a6ada9f35 14e09fe62083332ebe07a6ea7a267db5 14e0bdeb4d0263e59e6b2d4ed5f21692 14e15acefc508d7aaedb27a72cd4b7e6 @@ -4771,6 +5311,7 @@ 14e88f43f311349b4c2fd5f33f0b7c11 14e924801fb949f07a57e92c4d562635 14ea8c6f73e596331d24faf27f6cf1f2 +14eb04db02377ed931b1e1d60419f1d9 14ecd552029459756ccccf97ee5739e3 14ecfc0c26b460fc49292651ced8ea99 14ed02c522e7d4014005e3b24d025744 @@ -4780,6 +5321,7 @@ 14f046672a1fd591cdf4b3566d46735b 14f25dfb4195067d32e78be6e187b4da 14f3651dddea8a9bf2a52973da02ddb5 +14f4777e1f0e58293ef161871c46cbc6 14f48a923bef5b0c456fe10c878f32e9 14f88590bf5728ba0072a837538a985a 14f8b6ba8f5e01b7e86114cd1e7b3cee @@ -4799,6 +5341,7 @@ 150daba20b4b365421fd13b12a8134f3 150dc1dd4904097b43b686d3d2b394c4 150dddec178d428ca15f188b938f94e7 +150e8611429f68e151321d2d6e1a41cc 1510a796dab17b5fe17c3478d74d44b2 1510f65c0e2e18ec38d18f75ac1a99d1 1511567dac80dc4b8f563fe88d8889f6 @@ -4824,6 +5367,7 @@ 15266db07efeaa7c68e3a48d12a7a1ac 1527c47ba684c691bf3e0928d08e2633 15282ccebdb6521be262085590e1bda7 +1528441fc2c18141ef1b03e15e352b32 1528bd9d5727560e1862f3ea5423b53c 15295701bf03c51d4326d38d0c0fcce6 152a5bc70e4fb1aacde1529a4d0fa3e6 @@ -4834,6 +5378,8 @@ 153163972cb44165df1147d298996134 1531809569a06e06bbcea67a491e936a 153185b470ccf434780f90d6dfd60811 +1532293d9ead8e648f65dededa2227a6 +15332cab24a09e5443377fa4b0c63702 153370cfabf411614dc42f3248977a51 15339e4028ac0d116c2c29af8987717c 15362c8acc6bb1aa0b043f3b97846458 @@ -4842,8 +5388,10 @@ 15383c2cf2fad56c3f4365761c92e9de 1538ea640b54b48ffa4a91bd71d468e5 153a6cb5d028a6cc83c7e8e72d57beec +153afd69b8342e749bb065a0a4c03b01 153b025233b2aec538f53c49c92f1e5e 153b9387968a16bc60836042f9c25e28 +153c1308f1bd3dca929f4f5a39fddd68 153cff860211b3e48c595fc1ef3cf78d 153d89dfcc5468f183483c07d004b9fc 153e1b5e15ee7a983050136bfa86e9ed @@ -4863,6 +5411,7 @@ 1549571862e951ff4fd559d4f4d42eb3 154aa7b39beca044db4643d55913f1d3 154b7fd72c9968ecf854351bb2b72326 +154baaea37113804225786200d630b33 154c0cd1cdf2cad948ca2edb8a464704 154d1e2de882f1fdbb1973ed48cf29ca 1550f4f78825b8bdb13e995cb993f069 @@ -4871,12 +5420,15 @@ 15540127870bece64237115f7b56bc2c 15540604275675d9c0d8c1b508d536dc 15543cc1de2b7aab9203bf3d7a98869f +15547f0a1769ac330f73faacfa0b87e9 155665b312213cfb4cdc1809690c8ae3 +155687b630a2425228f2729234cfaef1 1557728891d1a53238fcecbc63b1f18b 1558098426278d784f8572358b3ecfae 155a078f7e04fbe005a0e490cd4db1d7 155b055dc44952f5502674905dadb8ab 155cbd90ab7cb71aac798370c8fc8af9 +155d1f21af1a061d5c59555e7632663d 155d6f9b3bba3269aa4cf168ea6a1df2 1560584fd8cb708deb1e38442404720c 1560b3940ccff4d7ae0559e22e8d2200 @@ -4885,6 +5437,7 @@ 156457e770c85542cdaefd61733999ca 15647fd409449a0eae26c35ed9df0447 1569aa8833ce8f1cc796aa507213c7fa +1569f1f0046bfb52459079151839261f 156c3bd24791cd2d981e93147ace1623 156cd3e2bad12847b15d7b6854ab4a7f 156da521cc8d497709dc332a3bce058e @@ -4896,21 +5449,28 @@ 157032ac20c56ee00e395ab01d060f64 15710f4abae4a6c9f512c75f8627266d 1571450e44707f08fa82c9c568af8b35 +1571d27251ff76e8753d6edae860923c 15721bb8e99ad3c6b4dc096681c69cb2 1572b34c6d902fdf50aceeb444c104ed +1575aeef3699c8a406970c235ceaac33 15771e5d104294424d7def0206c4a076 157778c15a9ffe91b5b9f7b13dd88917 +157830a58e490d84fad780108b13bce5 1578e3aa63787355b804278210f88ce7 157989d6e5766a19e0109809bf1008db 1579daed36e2674c89f8ff0ec5785b4c 1579ff7336175981e283d87c72964065 157a305ee66ca5b3e4a32b72fc4f3b43 157b3db80ae3efd8a5b5c5ad91ef1833 +157d1a2145f96e0a0578918426919727 157d762592b12dda58b6d4c54390d2f6 157e1a5e77058749a0bdbddb7e3e30ce +157e3ca1820c05c2087b589daa28a3aa +157f205df9fcaa80a96edee116c082a4 157f7dee58295642e4bac3f91784d41b 1580a335825e345b3d0bbbff0b50564b 15819f73f2dc3562a1ba57e6aafe6b15 +1581c69f8cf1d5b95476c1dff5d179b3 1584ae1303bbfc8c3c832de5450eda8f 1585cb89226071bc87b5e0dcd3b3cd47 1586ef2d9ce8a60c1239e8267dd4792a @@ -4919,23 +5479,27 @@ 1589779383ba4fc14574431a01753d82 158a11e6339f77db6b69056cf920759d 158aeb242136ece5e0870b45c49c7510 +158afac8b37b05c323cd368faae77d97 158c296a1e1516a338a3eafa4364bda9 158d4ec6485d15cb0a1ceadcefe3ec49 158dec787cba597f1918fb5432a56fc7 15911be70ec39e79f957ff778f61265c 1591cb27d77b6454db630dacf87c2488 1593cf827ff7155a777cb754e267c52f +159565b139243eb35d08c3b9187665f6 1596cf0f7c7db667cd240e03f3a4263b 15977d8dff6a91c9754653d951992bc5 15981ecfaf929feccc1ff98061559cbf 159845465bac31f8269433b900cf944f 159a63e7f35babe27877eb91fd446259 +159b79d314781f99035f74d2a3c756dc 159d253b6a28b3d7557f9592f830fc67 159e675b2f54647d9c3b8835cfa7ce13 159e6f947fe4d21983c4b92566a53fae 159ec81de667652c0de12efcde2f8c22 159f45a5bc0d401d55c7b00977edf1f9 159fc9873fa7c0977368788afd061cbe +15a0059450fd9b122d2561b4eb454b31 15a072c82c3adfd8dfb3885bbba4cfd6 15a19d122f7c86329fc5cd9e56e8d66a 15a625c09e0dce14bf5925e22c50521a @@ -4948,14 +5512,19 @@ 15a9ea7d08a2421301501357d8309643 15acbe80a639f405d6eb8351a20112f1 15acd1d627a7e99477e433026418791f +15aea809a67c04bc65414564d1a6c9af 15aee3dabd3ca1e03c8d7f7687eb4e53 15af72da523c35403adce7c7edb30872 15b424757cf21328061fc5059a65e571 15b4291139df2ffa93334137d23763fa +15b4e1a6ab39e357a6c6065f28cb9a25 15b6ecd60252839d1a917a0d316294ad +15ba05dbea4a1fd7784bfd4988a8573b +15ba3a93c5ca56a54f8d2c40b54149fc 15ba4f5965041e76d0b632ff83e69043 15bbd07733e2715d2b352d8b04b6269e 15bc8ff9fd3e9b595c1407e40542cd51 +15bded93b7d481c8529009e62f43a3ef 15bdfbfe986b4c4a0ef31e978f78c84d 15c09de159d44ca45c93ad8b0482364d 15c18eb03fc9a648fd9762dffba372e5 @@ -4963,8 +5532,11 @@ 15c22d2a4e914148f59df87d2c5dcc3c 15c411e1c8274d5d03769980ba3b298f 15c45c01e0ec5542fec5091a531e4fd1 +15c72177120923851b157077147c4ed9 15c7f6805487247cdff0a40a883a9bf0 15c9a3737668b270fe74dfca822d10f4 +15cc87dba8adb648eb2285af76495483 +15cd47ee600b603f5b0f7099f7e79980 15ce2158c0dbe7ba8dec3f51c535d4a0 15ce6a31d7c6406674eb0a0bbfed5635 15d16fdc50deb821f689767dc5569b20 @@ -4976,6 +5548,7 @@ 15d438fa351dd07309b8e8a6a9efcbd3 15d4e9cba324cfaaac3af53bd3344187 15d570e50a552ffb98609858f09b4f76 +15d6ae3006eef7cb1d85ad4ba6794fc0 15d7444cfba9d7a85ddbe211a0acb750 15d7643df9d793d3ea2e60fc5b9704a6 15d9a6f195acbbc387f96773afb79ba2 @@ -4983,10 +5556,12 @@ 15db5887ccf319a50052e7d2598f635c 15dbb306014fe71690dd059574372d6e 15dbfa4f4df1685218d9f58cde2db2f8 +15dc251dad780ea4a0639cb3908bc4bd 15dcccd60578439a7f0bd146d3386251 15e0f0e16ebe17cf25c03a6210957564 15e6b3fd1b4b0bcb2d8f6d7c0482e524 15e7d6079ffbf58b4704578115b67ce9 +15e9b9671d082d9d0da193df079529be 15ea503c5015f172820fad12d12526f5 15eab61287d31deb8bb4c7a37c1a3c27 15eb32ab38693571438d0b3388e8c0af @@ -4996,6 +5571,7 @@ 15f3449c26092110997c79c45f29a763 15f3ff26f9bc8e910959adf9c06741c9 15f40ebc80c69334ddb75a58dedff11b +15f46bfbfd4a8b9443842676099c8764 15f5676931fe80810ac18999ebffdf4b 15f931d83359288556d049a029e42da8 15fd6bdfb9abe078ef1838fef53c8056 @@ -5003,10 +5579,13 @@ 1601bae4a3f6a38c226d98dcb83ac912 160417345f19727ea36c51ee08fbfc36 160426ac344f4922f85e447effa2f4dd +16044ce5b9cb880181f79d3848a53f33 1604abd91db4e383bd2a5b0ce3ca55d4 +1605873520a647413d27e23ed3d4a974 160654e90aafd0bf77f4acaa849bb6b5 1606ac9e092ea1a45b737d968c07c2fc 1607938be5968516588d74fa16f974a9 +160807c9b7f2db385a87c524cf9ae150 160cbe18d9e6f2b77feca03eb0b9bfe0 160cf7237f17f134682993f335311cd4 160d0167e3ccd6a952f8d5d68815a4d7 @@ -5020,19 +5599,23 @@ 161574ce4ee51e4a6adf802f3d0d6a04 16173f15f06e07ca3756aa418215004b 16184f0db12b939da034d153b04ae43d +16198c10f1894e24676ef2959887e172 1619a7b288ab015458e55eec79917433 161a36c340d7460e753f3fcfe1b28093 161b5b21fece0a71e508f2c9885f485e 161b8ba4b43c23af6a4c616dc441806e 161c0cdb3cfd12e9ae84d09fad6f63af 161c333b8f41b613265e1316d24daed6 +161c60eeb5e803c8d36f96ee3398e308 161d036be3d34feedf8e421dbb55fc50 +161d92d430fb35d9662165ec25aacd27 161da74169b57166a7201a491e341de4 161de79b18fe465d1c0eb81737b90d7e 161ef4758a1daff9fd3b044ec4b541bb 1622c3516a9757cc11575184926be41b 1623dd8996c45589de4a0f21fc97eb25 16246c5be1369bb89db3b9e345fca308 +16262abd50e7f50e964809262de328c4 1626bc2bfeadd57acb9130627cfda6e8 1626d84a2e833f3ce89078219a8350b6 162799e90a77c34fd6035b182acf44f8 @@ -5048,7 +5631,10 @@ 16346e70163a293a2ab03f4f9a6981fd 16350304ee08ff39ce93eeddf78481ef 1635baceaf8189b85858dbc822d05e4c +16368f829f96e5af5bcfd2edcf83c7e8 +1636ff83e94bd060207706d26dd8c659 1637639468264cce72ee8f8daae9525d +1637bc504dc5d9b78990069f07403f72 1638750041ec78f7010ba547235841a0 1638dcad3d17e8e5fd39fd7f14a8c2ce 163967fbb9c3dbc575a0009e0c1c586d @@ -5065,6 +5651,7 @@ 16414e857597d08ab874678e7f9d76d7 1643fbb1a639083bc707616da062fd49 164401c43ca6f0e04f4b5d6b75675bd3 +16478aaa32cf36605b0b90079acc3bc3 1647a6c2f8a17bd013a25d8d97d142c9 16488988593d30a9b7ed454d913521e9 164b90dc96bfa01e3e62c05ecc957896 @@ -5080,13 +5667,18 @@ 165721ecebd7b3bf491e920db557f4ae 1657595806a3080e6610ec81a4e26aa0 165832ed80abad524c59ed1353dab8d6 +1659836b0e4dc7cdf562ab29655fcfaa +1659854c68de8ee75ba762fd9d351fbb 165a10b0e9e7c0383e6a92b9b4ca83dc 165b32d5b028d1259951ca9a1b54497b +165ca8dbc2db210052f1b221bac27e03 +165e69033ca91c6ec09e670bd024c717 165fcdb4c6a6832a2294f7c0aef7bc48 1663d8d90d70b44d9e30189ed6fe2e44 1665e21017e03832a2d54c1c6dc3e7b3 16667769f0a138209045de056569ab79 16684f8a211ed66b914f69b7491665e3 +16690c2b0b20f3a4ad66f15d8771d264 166aa5450f896a45ac8af246c3694bea 166b662ebbedd7325939494c4fd08169 166b9fb4135668f87b88e7a628d72afd @@ -5130,16 +5722,20 @@ 1695a54e6b8e0fe7613116308c7ae64e 1695d9b13e8da191630b1d3a2c5a8f79 16969fc5b9e89f9ac860ae5703803406 +1696ddd4b7a116f411ae6ea8164a4fe1 169816edcbe9d8d8cd85b3570ed2f08f 169828a16daf9588e2a2cc1e53952acd 1698491224a9e8e9d75f91cb3937278b 169865876f5b2c051756ffec35ae3f34 +1699efd4587e11b9bfd95fe29ad36fb5 169afa01843e698076df4444ef308ad3 169b05b8ca0584895655737847154773 169b7a02742284e8f5fad34a3f3ba220 169c621c4310a22bcbfad80d2ab5fbb6 +169cef7379e4f0b3ff56455b4e1ebd3f 169ddee39ae227051c28ebdefdd64ae2 16a095824d68be9e35d9c3cd90c7ff78 +16a1db6b3ced3ed8eaa6e557ed6a0080 16a21566b7500403cba299c5bc1777a0 16a257cae989eb5ca11b381bb3457bad 16a298448405b10c18d5f8baeb7a777d @@ -5149,11 +5745,14 @@ 16a8ddb68fe6c51e796fa55fff91e80c 16a9d4f8714043a4dda0e34c8d807e3f 16a9e250bd21588716e040b2bea9a0b8 +16aa90f01adb1c8b525aec28c8962f4b 16ab24cfbc428f1e44bee9830c98624a 16ac29a06634529cf837fe35cea6a2c9 16ad0bbee41a266472301e9c24a159ca 16ae630cdc307e73dc48344e4b280929 16b24db9fd2bf43b3c791de1a1cf8afb +16b2a7c4873f9ca64821b2e3c38442bc +16b3b0c9e85539901de623518bb7053b 16b411b6ac66e08fab2e802133ae5b62 16b537e7a14ee717b2e90352c187598b 16b9a2e6ba9a1c5971b5c2b24abfde2d @@ -5161,6 +5760,7 @@ 16ba73e2438afaa1126c4674722adf6e 16bae89c0ef47206702f79a4642dfdef 16bae95a04c05fc542e59286c974dea1 +16bc04a29fa236e8cb87cfa92b7869ac 16bc3ad7a3a9907a224d155b8c974035 16bc877874ed8caf02f7dd406692bc46 16bcab76d52d2c8bc5710d8f6c7930f0 @@ -5185,16 +5785,19 @@ 16d18b7d97d0e20f865cd29094a2fabd 16d2847e2d7389b4ec52cd05e8accc7d 16d2d981b7d5897a54addd8f842b4c17 +16d4ff051ed4d0345c01e7402ea78ef8 16d6214bd591c62960c3f5f76a31d778 16d6b92d52e19d0018f946a3dd2270eb 16d72a007c2fdaceaadaa4d2c7eb0ec4 16d838eb8131a2d8db6d6a081781e8c6 16d8b1c502782b8ae9d23ec8adbbb184 16da1707556a345e1ec96d36f7896f59 +16da99230c66f3a6e56509efc1b8b13f 16db922b36a222237090950ed8f38f88 16dbd9b39f78037d8ce81bc5d0bb39b2 16dc3820b46606b0258ae51d162b422c 16dc5a072ac22ba44b23e190f4b55bde +16dce7182a179b5e402a9816371dff21 16dd2aab1b2757422cf422c18dc99b3e 16de208fd4017270da4d8bfac06d4ec9 16dfbd5d2121e83e7fdcba9d13249803 @@ -5203,6 +5806,7 @@ 16e35f2a8402ccbc4dcaf91333c2b5c8 16e3a1d770d22cee601271fcc0b27dc0 16e4193d3ccd91268f1059ebb908aded +16e42ecf4a36fe3cdcb77a0587a922c1 16e482059ded39f99e8091eaf9813504 16e49c6dc0d4f40bd462ca8d1f9b3e00 16e721bf1af1fe376be9d15acfcc5ee7 @@ -5213,6 +5817,8 @@ 16ed78d3c62e6415c73d38aac2c382a4 16f1dda6837fc0057318d2a171a6da56 16f2261b876c60908dfe30d8ca9d4edf +16f2956ea889488b83ee302d79efe393 +16f31086e43dbd0b8d98a217ad70cd08 16f6f143969c2e039bd7aa21cee06afb 16f70fd23299b18d70c938fe2191bf1b 16f844a86722748682774006ad716958 @@ -5225,9 +5831,12 @@ 16fdb8e82fa2777b4fcd52ad037fd17e 16febf0dbbb5c77b2ddb512e829f9b92 16ff468abc517442af901de06a035a7f +16ffb775dfacc4353893dab50df57c3d +1701164d1a475aaa1bb2f32f0af1bcc7 170153b3ad8bd48f30e0801c575491d9 1703d79fcf1e16958d69f92b4e9e0fa1 170579c7d55406fce592f3f536c22e59 +1707225ad895a58d317c99df6e995772 170968e46b3b2046ce3d4b2619bfe475 170b5a8513727fc61349578e3651380d 170f631d7c7e611889d38fa6ce44e3ab @@ -5249,6 +5858,7 @@ 171f631a46a105f1e7b59cc57be8dee4 1720713886ff4ba7fa04c1a97def968a 1720813d8c6ba4ef77edbdfb13df054f +1722ab5dc41833a77d7010f28356c79c 1723342d46938821f8055fac992f2638 172373c26e3d93bca73067e36bc4c134 1724303cf519f0658fc8a82964c302cb @@ -5257,6 +5867,7 @@ 1725650f77a713f860766ba22c15d916 17286a6c99a22c184e10194d283d47e0 17287e67922d9f23a657d6834e3ec420 +1728e261cdd7e0883aa656d3091126d9 1728f5c64fe4d6cd8a911cf8d9feea81 172ac5bb08d800bc5a8644fa1324f900 172b0a0c079cde02cbbe16651fd57ff8 @@ -5273,6 +5884,7 @@ 173584372caacda56ba92c543f39ec82 173704c1b7f336868fc1fcaaf9d59c73 1737b6767eeb5c9619d957b06776651d +1737e88aee6dd6e7d2bfb12d6110afc4 173812a8f977bec46312f125f44d98db 17385a0ccd333ff9e99b18b8ca61ac9e 1738d770f0da2889af19bed79b177bed @@ -5286,6 +5898,8 @@ 173da1a7be3b66bb16180778df9ab9c8 173e1010e4cf81c6b59e6c0d94a2906b 173f74b337cf8b341ac8b8a92c15b3f0 +173fbf978e2b10b9e5a3936358f273ed +1740c9db0cc6be1b3af2b5d509a81176 1742156f90b313f703947f1564b4b200 17421db1da34bb7af83d712c1cce34c5 1742f826ae6ae0350548e84a8fa9ce91 @@ -5293,6 +5907,8 @@ 1745a7dac8053853cbef3f71389c2289 1746a0c5fe9dbb42887df9fa8030b2d8 174716e39acb6293ceadb1e6c6bfee18 +174724c1ee5887034883dd810a9c8bc0 +174873d780c137af4054064591d7f876 174971b5571b6b2571a3d7345f2fb942 174986ebf2c11bea1bc919c83ac47b2a 174b01eed617cc4c4fe2e619bafce77d @@ -5301,6 +5917,7 @@ 174e509cb743282aa21a5716f669aca6 174e64f84a9506ffe7e3b597c8b100b9 174ec33e82b36c48841d49712666dd65 +17506b7cd9aba31978367a7cc97a0f3e 175093561bae9ab19a1832ac7a1b9570 1752a4f3288c08ab5fe23b0f1cf9c7c0 17551ca0d9614256f95eaa13c49a11d5 @@ -5308,12 +5925,14 @@ 1756a11210a20af3e3d0664e7a0d6da6 175a953f1369420bf35b2f1ecf4c95cb 175a9e8c09a4c972122e934d9ed96ec8 +175aefcdcccd9c3cac0658dfb4f56b9b 175b421ff245894f2ff54cacd138d706 1760b5e561f5042bf1de53fe6647caa8 1761007981e23d929d3d09e274b1abf6 17615f40afd0291bd471fd7f066519fb 1762f6dfb5a659145c65238406d5cdbc 17635fabb48f135d98b981be21659f4f +176510e0b924ea41852ec752c5bcfd9f 1766eab5b1c8973527a25c5238ffc2f6 176b78ca3f02cfe66ac1471884376d01 17707376046a2b17f66b30f571e76fd8 @@ -5321,6 +5940,8 @@ 1776adf0a5b455b262559f955a094c5c 177857329a932451a1c86de09371a268 177873d55a72aa114a9e771d602686bc +177b3373605dbc3feb13da2c23e0a5ec +177bfcdac3b4e5e562a6d186440f0119 177c24702979be311fd74c1e2b373c18 177cd17d43bfd7eb7374d7184a5b8312 177dcf5a1c8a5c36e762609cbe8142c9 @@ -5333,6 +5954,7 @@ 178076f0cd2668c1a19e460fd1bb2453 1780d52ee2fe879450bd0b96b6c3f685 178210ed6ab898b7a355f2c24c0fa577 +1782151c47e1c5b3bad69b5ca952ae33 1782d67b2f8faa980d48174df6e4a3b7 178465e6e5c84972fa7133cd08f45d42 178606ecf74376145516aaf234c5f8b6 @@ -5343,6 +5965,7 @@ 17887d28284474c6224e6b07ad2a3bcc 178aaa66599d744f416099a5dff36bb8 178b489e191608ab7edfd42730394f64 +178bca07f6aabcbc0da4ca37bfe0279e 178c1ca8905cc709c8203a9bd32b41f7 178c4a76eb34640b1cc53c9d3eb5fc44 178cc85a7b6ccc90af1bd4a71460edf5 @@ -5359,6 +5982,7 @@ 179576f743f3cb628a0cdf3444d73815 1795bbdd1aad8d8ed5d1f5b19a828f01 1795eaa4c817baee58ea099bc752c371 +17964f52b898eb59888c69c9c6ac2462 17970a91b3f564417be61abbddf84122 1798391fb2ca7b202b45812687915f2d 1798fccfdc3d7be5e79d6c039af6eaf8 @@ -5371,8 +5995,10 @@ 179e091ca936927772463eb22bc8df8b 17a0c3eb7f76567fa69c2b1a093a597a 17a16c1770d5adf711905cfa05b30de9 +17a1849da5f48e431d7ab93b88262c6f 17a29b93f6d2c0e5ebf5c08d87e21bde 17a397ecb975b92466817ec1ee345e4f +17a4057e5e7a9914e05911d7c74bd11f 17a43e9c3c07852a2d1e87fdadbbe087 17a5251bce8bb6d65fa5197eea22ba6c 17a58ab7b63773abbdab28db45a27244 @@ -5428,8 +6054,10 @@ 17dda51aa78a5f03328561b716dda609 17e0b6fb412720ddcbef59af5cfd58b7 17e16350934b4ae96ca31df4f8a76667 +17e1af2675c4b681dbfdafc36aca67f5 17e2219e377348796ff32984252c5ab9 17e270568d43c53803481f07ee10966f +17e36a2cc08be517626d07041b247482 17e3fa62d575d242452c5063a38662fd 17e487b4ebaca4c2616c0b9101cbdc66 17e48bba49b23c9fae705248b0c9b35e @@ -5442,8 +6070,12 @@ 17ec94df162563c12f09b350fd6e9148 17ef3da9a794fb25f059e8fcaf895790 17efdb11ab0d4dd6886d660fd9c37d43 +17f10683cb2edd1e193f3aa31bf83f25 17f34c701aac469fab3d6e1e7521ae42 17f6a9980ce49efac80a8de2196d8da0 +17f6acf9029d2e290e46876871b93251 +17f82b3fcad172f6601c06a8db6ae206 +17f9ec051e88a96812794bfa4593c0be 17fa2b3191eefc9f7ed9df69deb229dd 17fab6a5c529df20a9fa361932d46d71 17fea7667f850fc081878537e53287fe @@ -5458,11 +6090,14 @@ 18021d3f81d398a85c99d792e3f3380e 1803016272d6abfff22a8c6200421d35 1803288c0ca7c15c046cf6e4dfd34ef1 +18040f16c859fcacb8debc71c7ad9bfa 1804752eba2b915f3434dacc0015a832 1804af9ef5724726509c35733afe00f2 1805599f3644e85eb61f5088cb5bde64 1805dbeb723c2e4ba646ab7c51827b86 18080e5fdb9567981f9a500974d1a012 +1808319cd3e72b89d3da648c831cfbb1 +180874e81fff7bab5cde705ac54a01e3 180a95ef7f049511f3051fb7d72c8c0e 180bead7b71d7fb8b651ff0d9afd4e1a 180c9c75b95869f46f4788b0173917cd @@ -5475,15 +6110,19 @@ 18106a7102d0891150702c7dff9c5431 18106e6b409230e127b99873f5773461 1810f15b2b337933f87be709698bbca1 +18112ef064f62b9bebb44485cbaa67e1 1811738c7da1c90e91de3bc12e045742 181208c7e2eb0863fc138c7d99efcd61 18128017b2ddf61f47bc959c9e508269 1815352c2fe8f06514a63961fd3b554c 18156fdc4bee4c39bd4b9897a8c52be7 1818929d1623769a7cd6282ba078dea5 +1819474376e90b3b7635516f0668a993 1819764739508b13143f145caec68b54 1819c0e7e9363e831f016d899e3f1a78 181a1d279bd5b6a967f855c1c23b1aac +181ba543f1f53fe02ba1a8b3e7cb9c9a +181ba9cbf05e0dffa47b58ccd7f776be 181c92082312efca30b57a85092fef9d 181cc1b50587f6fc58c50fc6001dab0e 181d65ab099ed613d63084851b7744c2 @@ -5494,6 +6133,7 @@ 181edda21556d87c7fdf9ab5552e9eb0 181ee31c7a75e6d191a91b937f7f63b8 181f8b1a7e6f7c0eda13af73611b9fd7 +181f9119d27ae36f5477d9a0e48e2605 18213343b5ae02717340d1c0859e6598 182209a0fe3ed9fa28ce687b633181bf 1822508182f16227f3429a32b5b35b00 @@ -5504,18 +6144,22 @@ 1825f63318beca88ae1194976c2a5eab 182611550d5bfa9f55c17d15e5633d03 182728f1274f94b5a8e7b039d1926fa1 +18279bee4da57ac2ae481eda3ab3579d 1828b1758e070209a51ac3e0bcb6ecb9 182995da01ecae57b64b823444076743 182af53bed2ddf5ca6169f082cbe6ff5 182c1a1ee7d51988209fd100ea4e6c31 1830616a93a104729291bf0528a99840 18312801be5f072f1229abec0aa6c3f7 +1831a1f7407db3310319e21645d708e2 18334f7a67d08d385c7cc55aff2ed37c 183529a8f4709bcef836ee07a39f8ef9 +183548b6eeb6382ded416afcc255678a 183a45a0a6fe8d3f9abdb7fe80620999 183a8ddf77b7c51719ea237c917f34cd 183af19306f11248d5611c4502819c5f 183b584c4366fbae04e264227db8d57e +183c49665313aac4eab81fe296cd19ec 183c7038e446c0d8194912eca901952e 183f40d3fadbb099994c93a3f8a2c667 1840907695c20322767937deeaeac1c9 @@ -5534,6 +6178,7 @@ 18505f6c9baf974fe119c74443be7dc8 185078b83ee196f00bfa7bba432f2217 18517f6c6ea82cf79f2f107600bf7767 +185354d0bba5787ed4261b7e1530d254 18536a5ce7522bbed131daf75e16896f 1854d4993c848e323cc3fc17e31ecab2 1856808df6f54499797e8a125ad92e04 @@ -5541,6 +6186,7 @@ 185747b7118e9b4584f732a70692b76e 18575ef86a8af8e89fbd362b1cd64992 185969942425a17cb0b2ecaf46f29dc9 +185ac7e5a54ffeccf50b83f6abee1d2d 185b9eba3fd33b2983a0be88ff60517a 185c75a1ae0ac7941e4da0858f3995b3 185e2afb0d88ed20cc4ddbbe86100107 @@ -5553,6 +6199,7 @@ 1861aacab14559d0918ca809e2dfe677 18654af399631eacea5b75d0de20683b 18656617c2f67b094ad95b02fc17fff6 +1865b6a66d3a55671a6e8017be7ed5d4 186928c45b95b1c7269ecfa7121e9f61 186a41cb65cc8c7bd337deb3ceca1d2a 186a58dd6a30a634edef45c791598f57 @@ -5584,6 +6231,7 @@ 18858b1108a05c894dc7fbb27c0610dd 18869ddcfdc1b487efb2f88b03b5c52e 1887b8c7cf8d764d00500e07f1ac50b7 +1888db9c91a5fc3e2eca236f0e1c8e7d 1888e8f1f0fa4a3bf4a2c50bbd6185a5 188babfcf5f9c7682b7f14cd4ff28ac8 188c59a02e4e8ca7408594fecccfd10d @@ -5591,6 +6239,7 @@ 188f55a962f00c36990481ac706ae83e 1890ca9024ecf1e921e6fc37a41ea2f2 1892111df5667ead62b0c255eb00f48f +18929d718a044834518af28a00af4a75 1892ac802f3871194009f36545f48c66 18967a190ec4af8302225645ef13f54d 1896c58883bea94fd477654286c1150c @@ -5600,9 +6249,11 @@ 189834b3a461cf73c36c88da18cb4225 189a106c3be35386878fb536c7a762ff 189abb518f993774be46bbf26dc1f61e +189c5880cca338bb61c50269e7d29284 189d1f7c50d11ac807a31ba133465bfa 189db1a5dd298d7f865e3560a279e151 18a2156ff8265a06b6202aad7c7b0b9d +18a262cf6a4e2e3287f4fc2bbedb424b 18a2c3a8edbc81b868420b1e6928d1aa 18a3815ff20567c0aad6b4c73aefb7ce 18a3e89546effe3c89edfa85eaae8806 @@ -5632,6 +6283,7 @@ 18b86447c8dbc593408fda19a2263aeb 18ba11fb3a3734af88ec1645dd212f09 18bbabdb4f69267dfe212b943fc61e53 +18bc24d8beeb3c7f6fbb6124720f62de 18bcf3fcc4052418de7c334c43b17ab3 18bdbf80e105d07f2959f738e6a71897 18be3a35a5e8f4409adad13dec04b010 @@ -5667,11 +6319,13 @@ 18d85124856f56f1cc0e28999be37426 18da3dcfaa7db1074a36859346069f2b 18da4e60f5b621a721c9f90247911342 +18db2aca17bca6275961036ee5c8d10b 18db453a14754ff95aa0568bc7a5cb3b 18db9cfcbef320b40e6fb89a9b034bbb 18dbd2cf35752d4a50696555fdff250f 18ddde4568c661bb38f04715f9016221 18dec00ae959339bcee666315e8ab0ba +18dfe061fd5cf272f8c91190c2ed7251 18e2a0cf77667d81beb0b1e002f36255 18e2d800d25760cf87b78bf65cac9f32 18e3bf11824ad66e8df502e9a3a779b5 @@ -5686,28 +6340,37 @@ 18ea7ae3f4ffa2fc0c8d2e21b0ce09df 18ebfab69423bb011487803343540aa2 18ecdedf836c0d37f33c169915c1384f +18ececcbcab7c8c75aefe045fb08e99c 18f0e21fdb9a7b7230ededa38e9a5333 18f1a0b4e7ed4dfa4155858f07d5a9f9 +18f22c34bcb9007449df422e649c3631 18f2f4834ea249c9d09ff040005a79c0 18f33208c5f6807422874ef5cf559dd8 18f35f49a2bba9c775c3f002ca5668e3 18f39bfa949f990df76265a98660fb42 +18f3b52f3ca7ccb0edbeaefcf8dc4a0a +18f3dd4a8139103a29798deb3b8c6383 18f3fda872fd7a4904ca085cc6569f12 18f879d61e8cd965da83fa9b399bb0b6 +18f89538cd4e39231b78745e25f71e19 18f9781ea2eb4b4f1055123caa4d62f5 18faff427a08a9abd961cc7440eb6ed9 +18fd1a5c3ea3a4da98de379f0a4c0d72 18fd3adc054b83fa10154b667720aacf 18fd98ebc18735020bd79f8efc38fc2b 18fdb7bad1f379c2ff5296c7fa18e1dc 18fdcde61ab9a8784575496250190e52 190072f4a5024d63c6d8108b469513b8 1900a8f9d7434cb34a09ac3d66147bd9 +1900b85fca7dbb8208088aec6d92b58a 19017e667bddf9d2f2091dc0afd29d90 1901b57167bf8267e4018185ec1f5622 +19023b5691d9d0cab617e6670b5d1066 1902b2464d9b891d6768073f9d9d834a 190360c42290149ba02180faf16a375f 19041f2bfbdde17178d31f22ae3692f1 190438e79f64c4dd643d48dc0400225c +1904d056729f71f85a6109ecd6a009af 1905960580d115f019e9271ee8b1d678 19066d8bf14064660a3a3db3b39cffe7 190719c784bb123ecee45c76fe4ef7bc @@ -5715,6 +6378,7 @@ 1909815e1536eb7407d31dd252ba2d21 190c2a0eb5481d3483d006ba38731c47 190d63c8992198df866ee0dbb9ebed7c +19103c84e981193038f9a6b1d94fb617 1910d3b4d1e8e23404b8982b0e429892 1910e99ffe8c0cb25cb37e371e3aa185 19116ba3ee05134cf582fa7bf33541a5 @@ -5722,9 +6386,11 @@ 1912d9392f3bbe63a771a8f4c31c6896 19177dca22c46e0809423863bc929b40 191876a58129c9483e17519d19c3d758 +191982680a34de5a6f81146384e96e62 191af0264994fa065db511ff92399a81 191b1746b453974e9a9789b9a0e1e22f 191b4b4321637ecf8e5101270d1ba0cb +191bad4619322be65cb80f7847303da1 191c21d50fb34bccea75a9f5e0085e2e 191cfd61638820f194b00eb00545162f 191e32eba2b65ebad10261e1eaa1bed2 @@ -5748,11 +6414,13 @@ 193369619f2c2ff45f312bdc75e97472 19337a04e0ae67848ebd60c246a1193f 1934663bcf5c19c18cc1bf04a10ce240 +1936a513906bdd5ee7db8aa0ff5c109b 193839c7fb0837163180595aa5cf41c3 193840af5c7cfe65a2b50824ad3e19c8 193c162578f677b6f2db96795857b90c 193d3c3260d8e0ee6ffdcff3009f36bb 193dc416c4e5b5fa6a8116ed7c86f681 +193f84670b6d4dd9f45dc3ecd28b70ce 193ff010f8acac5bc8e0efe677fb30db 19407c251489291495ba4e23a8b81699 1940a8b0b468964886bd8bcd907ccbd1 @@ -5761,13 +6429,18 @@ 1944b0379cb378ecc9b55e2c253746c6 19456e0ba0be73a56ce5dfbd86c32dea 1947c227c48765627fe8c362e85199ef +19485951fb47f208db6ee538b5d4d5b7 1948e9fe5d762948b4f0847bd69dd0d4 194af1329e07d08c4f5aeef0384fd47b +194b2560d158c1fca1537e75a3d86f40 194bb396b76510eda54dd12c853802a2 194cf236c5fa6c6d71346ba98ef2b797 194e41e4f4f4d64e8a8719c636a0a20e 194f0e8d0c3e3d7422123c0923a5287a +194ff05ecbfb3fed65e15e1483c0a33e +19510703a82839bc9da8fc62c54b2b34 1951a0272b53ae142554fb86dfa66ff0 +195305dea1da8ee64ae179eb506ca886 19549cc2a14e437d48222abacd54d757 1954aae4382191b5783956f7cd4cda71 19551600413286933a9dd7e2485d59e7 @@ -5787,7 +6460,9 @@ 1962c830b8d917cf12f71ecb6837f3e7 1962f538c584b381d5066ed669e6b832 1965e3ee422bac5a3d955e04d837c13b +1966cbcca4b700f0065f29e1eb8cee53 1967863081ead5d3f8f8020d63ae944d +1967a7ad1e7badf401aaddc40e76ac77 19685000056ec5a5cde4f27145babfc9 196888668f23efb945f71799c927f804 1968fb9d595846e4d529887b2a1dc01a @@ -5803,13 +6478,16 @@ 1974494ba4e1c76ca572743a61c84a82 1975bf225fc2a2b435ebec26347f37a0 19760f68c4e52c3d3ea41ade69b072de +1976a0f12e5946dbc55e278299e54ddc 19772a3101a1a5bd19d0d1ae4856cedc 19778657e347bbdce3ad41cc7f5e5985 +1978cbaec19bdc01a3c7056f5bea407a 197a593a9744727341ad4ef449ff03ed 197a850b9a1237e27432a9312809f0fc 197b6e9ba508fef05487030425f11bfa 197c15edddec04ba1b1b2edf584cb983 197c32263296003248537bc4d4754614 +197ff84dbf6d5c8adaeafb5b98179917 197ffd734239dd6d6c9563231786386a 1980abe8e56e6e65de4dd894b720f9a7 1980d770fc0dd33849e93620d057ac88 @@ -5818,6 +6496,7 @@ 1984e9479b0a28d137ef417eab69ccb1 198703f8dbdfe64ae16717d339e1ae1e 1988e0aae55d4ca1f51706149fd0fc9c +198a3374e39ed92377ba0c73ef47c75e 198b5b11138b75fb30423ddb4bb8fa13 198d9bfe7d5557fed629adbd3873a060 198ff38db228923a95f1fd1114afdbd7 @@ -5826,6 +6505,7 @@ 1991f9431fa7498b37d2d1539794ce63 1994ac5426ac560e8196189f681de8de 1995918e5a1beed60faa72985c2a477e +1996bcdfd799a0e6e3597901cb23fe18 199766bab40af9d57c470cf093b3aa0c 1998846cc14a849f802ec3183093ca76 19997b58a81b807e054e0fb466ced908 @@ -5833,6 +6513,7 @@ 199aa5873e4576bccb34091e7f08dded 199ac4c02665eae5bdae55b66d4a59bc 199d36a4a8764626d01eda0ac9bacf6b +199ebc09758ebdd7f708990dde30b5fd 199f04476e3bfdfca12e5acc787a8322 199fb110f1d471c2850f4c374df61c06 19a0c21daa8f2a26a2cd3bd3e1bc2b84 @@ -5851,10 +6532,13 @@ 19ae9c86cdc9bb8430cd98b0fc84b862 19aec2fb6e254373f08d4025e61fa328 19af39c340643122920f35fd30e10439 +19b1ea872d2d007045bf8d6c6de26ae8 19b2a3eb1ce71371f53d0cbb5d446269 19b2d1d76d2c408f1cf91e27c2dd4306 19b51c66e1e85deb496c734ec253671e 19b5b23eb63ce42f0ef0be18e54f08a5 +19b7cc11fa165d4161ce1396819c96e5 +19b81b90072f7961a46e0baf6722ecbb 19ba5bc118a0293ec3b3293c7c5b1614 19bb48ead70293f636e3cbc733cfff36 19bb7c8748b4c21e13d5c6c7e98ba2e3 @@ -5864,6 +6548,7 @@ 19bd8067129e52a8c841e1ad2631a0b3 19be63a82381d898b5f00fff7ff8f9e8 19be78a09d1ab2cb327726271c334fc9 +19bec52d962aa9b8aea7e882d469b630 19c1187b2aea096bbe2770fb942d3740 19c1207538456454633c4c909befe3c8 19c5ea00f7bf1bf6e3836b65d457a795 @@ -5873,6 +6558,8 @@ 19ca46dde9ba5371d98c5548f88905b8 19caf2332c229daf71260d7c41696cc7 19d069ce73a47bb5a9b7ba3c7912fde2 +19d0963a0690a56d65406867a782cee1 +19d12ba33af8a21786492743e37f7f4d 19d2d4a44604eb362372dd82f175b530 19d4e0b633f328e70c8c95ca51bf29e8 19d65a40a4929eda2f478dd4c8c83bdf @@ -5891,6 +6578,7 @@ 19e2bebe5e05d67c34fab2f752f94229 19e45d854974dca04513dd45b7a90966 19e8664b78b0bdb38dc110677e52e2c2 +19e8b1a692aade3a917d2d98fbd130ad 19ea2486c6beb999fe32dac6322796ed 19eb0c94900cc4cb6c63dccbee085955 19eb728d9c061ff381e899b27728830f @@ -5899,6 +6587,8 @@ 19ed64a5796c54afb062e4cc7d423257 19ef7f76de5e48bf1d92f95ce8827264 19f3c7f25f0f36f54b7cd2868cd420e1 +19f45fd2bd5a8f65bacb904472e4895a +19f50995bd5ef57be6cd4893f26cd715 19f52b1ba74bd646412e145b17678db2 19f6102477fc6004da7865dea8234a79 19f65fdecdb4bb32f63918e0718799ed @@ -5906,9 +6596,12 @@ 19f76d428c0dc27ba71d30a12c536a10 19f9cca578007a2bba28aafb78ebd7c3 19fa256cd7f12cc2d649e041055c218f +19fa858899526e84f0511383e7b3bbff 19fac42a1160ca4875a65834aa011a73 19fb86bc662676f6ecedf1c99e9e2b48 +19fb8c0a2e067fec213369007df2d536 19fc1b8af5247ec4e28434ba3bd139ce +19fc4802a6a2041701eba73ea0413e4b 19fcb848f7f3d01f823e6411f3a1c4c8 19fd7efaf11e8703b6cf436d7b250469 19fe8db85e32328c58cedb30c07cc9ee @@ -5924,12 +6617,15 @@ 1a062b255bca5bb33ef5afda13326811 1a087b98be38d22e468030d9174afcbf 1a09a986eb810e0bf55a2b4561033121 +1a0ac3674484b3ef59058f2bb37f541a +1a0bf00fd0b158bcb04ab8d271077891 1a0c0c367e4460c92fe1313c535d3f2e 1a0d9da72186bdb933ff0bc02d0a3ea2 1a0f75092f4a1abd59067bc2cfc38156 1a0fb7c08bf4481764e8734f8569bc12 1a10f5b3c4c7fb7b6e91e86cbfbc44bc 1a117cb8a8e6180ea7192451710c022d +1a11e474dc4f2df802021e98a6d61c0e 1a13d05607dbe47a0b743c69cca03c70 1a169f0a2150f5ab8bfc02a2d9acca46 1a1778c0f5e59262825fb3617a93a674 @@ -5938,14 +6634,19 @@ 1a19eea68a65f0d1e4018bc64e7469de 1a1bea0bfb0ebd7205e4c9fbb2cd0890 1a1ea60abca15d6cf161416bf7f96156 +1a254f7422ab041a4aa39d7561112cce 1a297719a4942421323766c9dfb75e33 1a297f2fa67c45d4401545471e094993 +1a2989b7e13d2ecf4d0fcba57c2624af 1a298dea08f7c14456a20c7ccc180450 1a29cc359cb4a33dd79d822b716d550e 1a29ebc949cac3b8d02519c2d0fc1937 1a2cf37cabb44379dccb3f84a4adf420 1a2d19e815541d66506df6557387d326 +1a2d9425ce1adb1914e9fc695112f0f9 1a2ec37520fca0bea3388698b51484ce +1a2f36b1079020452ee91631803dfa0c +1a2fd3a0f7f91a6447ba6b144e776aff 1a30fb767120f3ab972d960483ebe0b3 1a3231b6dfcb5c1bce168c5e98840a1d 1a33adbe4d1725536f6d1e3ba35ace83 @@ -5958,10 +6659,12 @@ 1a3a93dd9edf2f6c365951c76c8e4145 1a3abd7c7b48c8f86379bef309c7e377 1a3bef78a18c85110029134896dd8342 +1a3c8a712b5b7465d7152e78ee6cf4be 1a3d248cfc6a8093825d612535cd3e05 1a3f24020a587bdfca96c2f8522ef905 1a401dc47f331f302ca4e6f4667ba683 1a40756fdc2db70639cb022804924ee9 +1a4129e10fc45a9cbda5230a96a1caad 1a42c1dd9008d676d963463471d047e4 1a4336a08a9d5f185f9c13b90960fdeb 1a47ab0ac3256b384127af5d0908c34c @@ -5986,8 +6689,10 @@ 1a61a6d3c60a92d432f6bf35971721c1 1a6265af7cdf46d77756e46957ad1e03 1a63c481c09dbda631c942f01e1bfb57 +1a641804db1480d91f38be67332b0a89 1a65cd1ae88eca0a13924dbd2f0f0292 1a66e9d292612c09e36d0201db1230a4 +1a673687e783a46e1e074dca3017a5e0 1a68621e2d08881156cabdad1100fb56 1a69b630a094d4b3ebbe2e52a2713779 1a6a6cb4d29b28e85bbd6810d6feebb7 @@ -6000,6 +6705,7 @@ 1a6fa34ae2caa439db47aa2d5b90425f 1a709c56499cea3be4ce82eb9dab50aa 1a70dcbd97fba17fffb42a3b213d2125 +1a71012eaf9f5907a1042f8a102b2b84 1a71714c8d5be507c6c67f44daeb8690 1a71e80eca75511850d7e2c592c0548f 1a75d5dc4aefa85f4b4d71ada7778280 @@ -6012,6 +6718,7 @@ 1a7fb060f907fbef4f7b533d51be0528 1a8067549420f163f1019f02a4f94cc4 1a8356399356c12f4acf334fab63940a +1a83d0872417a73978af3ea1ecc71f9b 1a888535b4f795ca586458dc02b73ca8 1a8a3ce3526e33a531be6c45725f92ad 1a8b0c8fc4a197fcdda58fe049e3cf76 @@ -6020,6 +6727,7 @@ 1a8bb974db15236c4a68be5649a86d7a 1a8d2b284c8f62a1746b968c3490ddd1 1a8e142797b1db0fec748f72a2f8b977 +1a8eb124cfccae513d6de581cde16910 1a8fd7b48761255c188154f2b6e1be5c 1a9138dbe19ec5ec5706e75d304e0d5e 1a9183248a8a7482e4d2f530ff45f641 @@ -6049,8 +6757,10 @@ 1aac05519276ac46c454d86ad8e14a1c 1aac4f11a5a1d06c0e7b7ff84f4968f9 1aacc513259225a9fad55ec5d58eaa7d +1aae2ab46592fe88e853bbd10d2683e8 1aaf24b163d956e436e0fd1261292d88 1aaf7c30e6b8872d0fca3464c77dbb35 +1ab02350d72456e534780c2336eb0d50 1ab069898a2937047d73490f99df05bf 1ab4f715bcd892e40a5f81520ea15daf 1ab59403628e422131eefc856b022e55 @@ -6071,17 +6781,20 @@ 1ac9626dfe22d0086a8ea0c2e17b558a 1ac9e98414a6316802f41991bb4dd92a 1acaf1b0a5ab2ead73f1763e822834cc +1acb5a0833780eb7a75016eb9679363d 1accf87c2605c915579c98ff7042dc11 1acd1c30d9b7ceb283ef5d5d911f2f1c 1acea225bbb955def0bf212add6dc78f 1acfa360f69e7a8647100b77ae5deeec 1ad057152f5713544bb000edb597f734 +1ad0d3dd856acd4031076e3f6261cbcc 1ad140e75fc6222ac6f15ffd2f35f10a 1ad2bfc1873dbd2e1f08cf392f70aea4 1ad342b64aed9975aacf1d049868a363 1ad4720e88f4e6b170e69e1af96919d4 1ad48594361aa150481b5d05d9a64ffb 1ad5e11d715984f452edda3a5c29807e +1ad750b0639673c3797de08465b65a0c 1ad7b78fe59a95e7c37f10783ba9cf91 1ad9d5afc89b363f63e878892b8a95b6 1adacde5b2143f36fd6d28f02e0ba700 @@ -6106,6 +6819,7 @@ 1ae98399bfcc3b852103f46371a22cb1 1aebf0dc84306c61c1ca853cd3e5bf4e 1aec334259366b484628612bec1e561d +1aec965954e6e996da2ae8ce140649a5 1aece368e684a29f960be6eed0d12498 1aee4c9ac88003ce2f5f0b8ff8d4b64c 1aef59a8156954d2c4f05cbb204148df @@ -6118,10 +6832,13 @@ 1af22101e997ef71ce35edaacf9728b1 1af2e9e9b32d871f56cf5600896a51d3 1af3e4d2324619eb310e800af3aa4a91 +1af5cf09246c5cdad8286d18d2b2731e 1af5d56fc7f37b786f9ea7597dee2462 1af7b62de38974a9c611da15208af0af 1af868cc3fc59556a273f605e55157f9 1afa3a4ab0f9e8aa44ba29dfe9e6f43e +1afc8360115b75822e78b1beccf6e69d +1afd281f9c808625b5535bb6f2db847e 1afe27a0d6e1ce30a349313eb669345d 1afecf4a79340a9f42fe463b5a97404a 1afffed17559b675237d0041930dd444 @@ -6140,6 +6857,7 @@ 1b115d40d51e5a58dbb0d234773e14e6 1b132502f56e20db02287ead1557b365 1b13936f76437dc9dcc0f4aa0b635ef9 +1b13dd13abb6ffe5bd8646bf88c417e2 1b14ebdd1b605232207e6823907f07ad 1b156504936a54659dfa0598bf4587a8 1b16a0c941b28ccf7bd5565fc4e72be3 @@ -6147,7 +6865,10 @@ 1b17f97417d72cab6893505fc2bdbee6 1b1841b7ad588ce3a0db13591dd8257a 1b1980bc2c300c8b1709b70493b60d91 +1b19820113e4a79f81433b8a799d6ce2 1b1c49f9b37a50da800e2d9b452f6d8f +1b1c71f1f227f72948e365e3d64783e8 +1b1d58b496655ef8629ceda0f0216c57 1b1dfa23dcbe3fd21ee09755e311f933 1b1f2d53912a7e1d8bfeaad27cd3c846 1b204bf3f15338447ee4bd6bbafcf6a9 @@ -6155,6 +6876,7 @@ 1b21851fa6843dfa6598d02594542e56 1b231d646c4393f5759cca2822cf2aff 1b235d919cfccf21f02fc9700260edd2 +1b24a1288db8238361e8d4ef41d860c2 1b272e14faf30e189ca131372302b535 1b283340ae51e0355717ab0ba757cc05 1b28b0d954d32b0368c7e237dc5bca81 @@ -6167,6 +6889,7 @@ 1b34b47a399c0d6d5a8ee25c81ce0e1a 1b35997188559c09cc21e34a65071da7 1b35c1cc0a2108c7e7b181c4099ef6d6 +1b371e4fcad90d1fadf4f5be78501acb 1b385097ba5788f9e8c4587aebac41b2 1b3a5b6720254130fe00707ee60395ca 1b3c4f98d078f2233515a1d590cbe6c0 @@ -6182,6 +6905,7 @@ 1b48552ee0b42023843f3591a10f90b3 1b496d5a1006d4958b92d4976f28481e 1b4a2b8150239956a7961b37ee70d9d4 +1b4a63b804f9e556aa7bb7187074e327 1b4b030d7acf99552b794f00496be81d 1b4b72e1dff31185e7e20bcf9b5a3aec 1b4cfbfd0fddd55cafdead49a94d46b0 @@ -6201,6 +6925,7 @@ 1b5cdd1a8bdface35315967d20830c4b 1b5cecc2085f050ae2f7141809611539 1b5dbe37c09622d525ba39c94e1b6ef9 +1b5ded786d7b0b098b455e11b48aa9a3 1b5feceb0c23b752c1b95af98babbc51 1b6039811d8fa688205942c74d462c4c 1b6059693c8f28064f0ac21665a25d7d @@ -6208,6 +6933,8 @@ 1b617e3f9990b8f68298f84b89244f75 1b62520be08df279a93d57913d108c85 1b63b79a9c26af4713f449fd5d58ee0e +1b6653080a277affb873d14c9f31f3d8 +1b6703f6bf1d586035d071f2ed15e279 1b671fc2ca5a307b8430f8d2cb81d005 1b690ffe6531701026ea9fa9f4b37ec1 1b6943dab979ac859bab8011ecade526 @@ -6223,10 +6950,12 @@ 1b746879ec3d711efbda805010e2059e 1b7474f65d72cda46cb10519467a9635 1b783d3ba45217e497f89b53ef7617a1 +1b7a0195b20c64c63c49f04152cb48ec 1b7f6bfa6b439be60596eefab9aabaeb 1b80b4718605024b8c40972887edb975 1b827205a3673e67456c0a1b67e22dcf 1b83877ea2c1ab464c6bcac297d623a2 +1b84b7203c7fff5d3675c0b2a7502858 1b853c23773ac4561e18abed9237ccef 1b85769f86c0ff91aa1869a767e14db3 1b888a9c5ce983fc14d623c8874d4a61 @@ -6237,9 +6966,12 @@ 1b8ba6131e347f44087584599365dc98 1b8bdf1a1f2858059a38f23be35ec665 1b8c70346132d9192f2f0481c6b4072d +1b8dcdffd8986759fa036dd0a09ad664 1b8ef3c117caa2db9c9db567bf0ead10 +1b8f45c2b4045d18fd1f0650c8af7457 1b8ff395adf57d784c884bdfe4489150 1b919afeb0c276d77929d6fc786b3b1e +1b9368cb3d6a071698b1716b515e5b42 1b951f76a91498c01d16eb30d63501e5 1b9688a9eca2f3ee4f93dc62de5e1421 1b96f7357b58e1f56a8f73cd96732b0f @@ -6247,6 +6979,7 @@ 1b97b3544a3cbb2c9940655b17723755 1b9868d5306c11cf74b4d04e0a4a9aa8 1b9980b37959281bb2923850a1c698bb +1b99fdcf3e85a4ce991909297404c3f9 1b9b9f9d3ba106a1d86ba1ea84fb4872 1b9f34f56bc0b36e5b8124177dfad8b7 1ba0587a640df64c7b7d6dba6570dd35 @@ -6260,6 +6993,7 @@ 1ba47140c0a24eb8d37131e01848335c 1ba94b5ba0cec79f0d1be9e5fa57b94e 1baae12a117a5dfedf40990d32d6d63f +1bab5512c7a372b70e114b65376e465a 1bad4d415c090e2fd4f3b1510fad77a3 1bae7027eef30291a99486be148999e1 1bae9a3acfffc37101d6893148effdbf @@ -6275,6 +7009,7 @@ 1bc070f07486a2524b195d3b5cc0a79c 1bc152b63df7db6220f4555d5e3c51c1 1bc2de3e1c5db99546ad364247915581 +1bc3dfee45d832740532e703dc162ddc 1bc4463af394e98ccbc1d79d6c606f39 1bc53eebe47666218db66a17876a60d9 1bc6d9134ece43b0c97116a1a55b6456 @@ -6283,10 +7018,12 @@ 1bca06be23a0cb9fbd5848f397492c78 1bcae800a0ae8e233fe6c770f4ea2452 1bcb4c5ee51202b5bd6bc7ebb9a337a9 +1bcf7b42722cd07a8b395eb9009b166a 1bcfa61a19af191d6e0e627804dfe664 1bd144bb1ca6aa8f2a5046c58ca034dd 1bd31e13319b3f381fab316f1af82fe6 1bd3694028d7b9ecac7ad07a47a575be +1bd4914f75b92b582211a6205c5f3824 1bd60056460e82a4197f2e9512cd0bdb 1bd7af03a673e163abbf45459a02728e 1bd8ce03e5581d7a8ef7f18cba0e3de4 @@ -6311,6 +7048,7 @@ 1be86e9f3f5a4c2709395cb0ee9cce4b 1be8d988b652535603821a582a319fc6 1be9a0014330709bed8d1f3647d8df3b +1beb1503f72e50084ccc3ca0f776f395 1beba99194bb1fd3b45bd598e0ba98b5 1bed0524d9af29042bda33898d0eda42 1bed398a01c4ad3402047344c643e760 @@ -6321,8 +7059,11 @@ 1bf4db8b3b586f04b54ad6275f2385ff 1bf57074834982a516af135d28438197 1bf64c87738bf740cb7be1c6e6186bcb +1bf666cba92faf60e31367846120a18c 1bf725e66e16541ae0554c00748e267f +1bf84141dab9424c31c36b7f19693dbb 1bfa1f3f2740f7aa14ef878683b241ad +1bfabe5af513677e0ca3276227d33d2b 1bfde0f2f2f4beca74c92a5f383fa987 1bfe3ab9a6252adddf1280631a6019a6 1bfe582f97241c3aece35d26d891a248 @@ -6335,6 +7076,7 @@ 1c0a0d324264c3d800e485ca61cd04e1 1c0bb9fa955ae7f61f86e0b469f0815b 1c0d127999b8d722c509d67a7d8033dd +1c106da38660b150c6b3566be0ec1d6c 1c13da54611e4c2ee716393807d62f82 1c146bd3302ae84f26a8d3e9b9682e58 1c14e495bcdc177777f079f3e5ae2a0f @@ -6347,19 +7089,24 @@ 1c19b892bf6a331ec1f370ae2f20568f 1c1a2a9a7d696e31c2763fd17b9a4fed 1c1b30e5ceb45589a244a770c9a7da73 +1c1c674592e2cb6903ef73b658254975 1c1e78bace1c10c078e5502a55230c48 1c1f87b36710b936f8e35a627add2970 1c20c57f4c439d219539684e3c059f89 +1c21bda092b313f1a828a3e065827c5c 1c21e4b176e385ebbfb9a8736a85a4c7 1c232736d64f5ddc442ba1a034817884 1c2362cf32af486ae9319fe3e48ffffe 1c23dc8838ff3035ebc1742736c738f6 +1c241bb3dcbbafdd716ec5e0862702dc 1c247dd3fe7d7b8d2f712726180a3f24 1c272a95b70832b19fa3435ab0c57418 1c2875e9e1c0b1d544fc4453c6cfb688 1c2da2ade9dd899e1903dc5bf30df5e0 1c3049ac87019272b7cc18f51dee1d2a 1c3352ac3bbcc3e8cf07c9324e5b849f +1c3452cce5421a1c1452ffc6986eb701 +1c3720e629da4c255fbeb0723c0e55e1 1c377344b9a17e03ba109e52fdeb0c98 1c37c2212d44fd6079810f5fa50b4903 1c37f30fe26f64c56241bb1143c4923c @@ -6391,6 +7138,7 @@ 1c570e81a3bbf102ee62aa32301d988a 1c5729c939d2063b05d9a72a1b27e201 1c5835811be15c9dc99120af3636ed29 +1c587951c07fb065ada15c09c63e4763 1c591957e0e876ca19a7c2fc8c2d33ee 1c5d1f769e8963baea5845523ad51254 1c5ef6ccd1e1a2d6f7350436bb0e1245 @@ -6401,6 +7149,7 @@ 1c610b6f43bd15ca648b165648c62672 1c618506efa9e8ea391aa26875367df8 1c6336480b555c4eafe0d6619c8cf3fd +1c638deecf9a2e8014437c3a97758093 1c6413b734ac7d14cb2addbe77feb632 1c645cb553e27f31f9847a421f391f50 1c64ddc97514f206fda3777d28d4aad5 @@ -6408,6 +7157,7 @@ 1c660d94756115296340449c7a7e0a61 1c66e57160e26b6d1ec9f6e8b8660cbb 1c68320102e61e42792b26610dea46dc +1c688eda675c3198c5c1c656df6170f7 1c68e8955b7b2ca05215edd7ba875942 1c6abdebdea5330b900150c44593dad2 1c6b7761cf524bf171d6210d2eb8c9b7 @@ -6416,6 +7166,7 @@ 1c6c373b9eb5a9359e636fe9ced89f5d 1c6cb45e1b180b6e8543e9f02bc7a546 1c6d0e0bad37e108c405692a95053bef +1c6e9b7d658a4789083e8b559d817bb4 1c70b2f4a393f5e86041637b0c31ec6d 1c710c2c983dd83979f4f3deef18ca46 1c715da6de84525422b3096c170dee26 @@ -6427,10 +7178,12 @@ 1c7cbd22af7ced0364329e9cb5cba809 1c7d9078b1646df8d82551d6f32f90b0 1c7e6b3424b3579ceecfa0936d4ab76f +1c83c1a428247063e01ac03aeb22c091 1c84b0618557d868a1d8407c6cb136e7 1c852428bd6dd65e822f9a077fe39967 1c8617e3786add95df9976a560e1fd31 1c886f2bf65aaf547a6ffbdef9aec99f +1c8a7ed87e00f1c50516d224510375b1 1c8cf4d4d88d53bf15e99a9da76a57fb 1c8d25785d3007f90b358915aa4d1385 1c8dd3412ba9f35792546a97f9db0239 @@ -6443,15 +7196,18 @@ 1c922914fa6cecdef19b9b9edd99fa4f 1c932c9da538d2be2ca5565784797f6b 1c937c4513b0798010711a2f4e94d886 +1c94257d9e6236ea358a99ea39c2f0c6 1c95073af1f8ab7d88f3d1099d1b7f55 1c95433068f16677ee11bb629d6a9a99 1c960239783e4d3b64fec91d68d0badd 1c96e62109e02ce05859145b47d8c018 +1c96f4c9413331200e4617e78970897e 1c9871eb281b045411fc67ab3a70c51d 1c990adeccc7230cffab0d08cc8ab08c 1c9a234507c1c4cc095d249756153bc5 1c9ac3437e7663be7ed6b43dd01f9495 1c9b7bd554497d2676178fae8055506f +1c9d298057de0677e4f6d7f3db3aa91a 1c9d33faf8d714dc4b28269f8adade1b 1c9e2be4e3cb586564b911d0b9920190 1c9e78ccd0aa52bc57d0957da3f9a236 @@ -6466,24 +7222,30 @@ 1ca38c109002058126271bff662ab924 1ca40d41f385d8fbdf0733523d5fb34e 1ca4f0e7494a7beb445cd6dfe4f3c461 +1ca56592ec102a66f6cc4c1719a0c283 1ca63ac8333cc0712fe55e37dbad6dcc 1ca7a6eabec7550513ae05e09efe3f28 +1ca7d6d6893c4b38dbf249aa9323c333 1ca7f87cd1eeff5407ccf8eeb193b9b0 1ca9c427590bb10dc904f4ed435446d1 1caa35bedf3e710cac098584b3ea51f1 +1caa3ae9b7168878503750ee10a20751 1caa5b5856e4f64a2de029d3d8d79348 1cab6431459dd28446fea34f242dc1d7 1cac317dcd632f4f1cda1d1cb43c34fb 1cac56c31410905616029c36b660ac53 +1caeac421ff5094b55dfa0c96e004b06 1caecb7242d53379a8f530c4ee65a6e8 1caf33efd17feab655acb305cb15fce3 1cb01450c502d3616e28381eaeadd802 1cb1c8298a60ce23dff13c47bf846d70 1cb1eb1827f5ed15651da7ee49d0a43f +1cb209170abf1dc48b499a113f28484c 1cb249dc7d64a73ec89028c8cc87dfc5 1cb2605f2eaa29fe585e301148c8f3cf 1cb4557ac9feecec72b1d82ba2a02eb9 1cb5f6ae2ca3c7727f6354e3b66e2902 +1cb67229916fe9541e5d5ff889ce98d7 1cb7668d56cb3bebecf9f13580e2624b 1cbb3cfd12e92a59a97302365a9e61c6 1cbccaf453b05ae012d9293f8b53835f @@ -6491,6 +7253,7 @@ 1cc02c744668bb2a31cce28a2310ce69 1cc2b8da4df808ed5959ba717b8a92ff 1cc61a9cbdad1b3c29c8d3d08913e47b +1cc7d641669e703c58d9357f15e3fc67 1cc82340d9f296b33e8d367de663ab7d 1cca1fd853689c7826d13076e11e4431 1ccb62c495f377772133c0c9674141f4 @@ -6512,6 +7275,7 @@ 1cda86ceae26b5507188994d94519cc6 1cdad7613cca75564d946e3d283c85dd 1cdc8aa61c730aec3cf03955ca00bc9f +1cdd8bba66838b8bd63fee0fecbf05b2 1cde52aed850784ffbdd1f8bdd74d6bd 1cdf69e387a4a7c1b8ec44933ac3cf06 1ce01bd2ee96873a83350ecea458bba9 @@ -6520,14 +7284,18 @@ 1ce0fc97c4ec8f0e1e70ea9c6c1256b8 1ce206192d3c370cc620a124cbd1f842 1ce34f949a6832e9167fa1250994ae16 +1ce3a04013a6eac7da4c1b4ddcf6039c 1ce4eb5fc2a4c556e6a1ab2fb1655dd2 +1ce4fd4d2d7e31bc45f2c00ccc1c55b6 1ce6d675be1974db3ba3b73900840568 1ce8cb443fb4eb246dc6099a24448aac +1ce90ac44516a912204e34be5fc4c3e9 1ce9471ffd1d5ca0d64e2ace51bb898b 1cecc6c38e078caefd4fa8b42a5c932f 1ceec969c96112b181f8e8bb9b7e5bfa 1cef5521ab9232d3edd4303592bdf23a 1cef9a3a42e00cab5620cd59e9504bc8 +1cf0c4bdbbc73ccf628ad2cbb548111d 1cf16bfa10877e3181dc136af7bfd4fc 1cf384eb6bd174e5473d12f51e2eeb94 1cf3a97b0cefd7cc2126e7f58d3c1f70 @@ -6536,6 +7304,7 @@ 1cf72a5afd59ae568f567357a2c86b9d 1cf9ab377fb0866f640661989cbd2c0b 1cfa750cbc3b139b5cab805ce4f0deeb +1cfc7dadb52f76f4a2c4b70b05de7759 1cfcf8e2fdab2e8de77cd41e45f85b4b 1cfd656be9189ec81783c16a97d8a21f 1cff2fe05e984badb3d4e504c2186ef9 @@ -6551,6 +7320,7 @@ 1d0366639ca3ccabe464562c7fda499d 1d0495441594494ac82eb1881a6532bb 1d0498698487c500a31ca4245f1593a8 +1d068d9a9726aafa9bf0f80ce4d88aa3 1d06e7a5394c9221377b77fc0b95008e 1d071a107f7677a4b94f40b2637e994f 1d079053fcb32eb03cdc862fbcdfeaeb @@ -6573,6 +7343,7 @@ 1d1e5b5369c5734f2ffd7f971b4812fe 1d2062f30cb83e5dafd52d1b42e73c8f 1d225aa4613b8343988fa9c42a63f7c8 +1d2286313fb0818ee3cd407ada7579b5 1d230f76154536dd1f68ab2f9d94553a 1d238025a3b090db7ba09b4c634eebfc 1d238859f08a0bfdbb5dedf454fb092b @@ -6590,6 +7361,7 @@ 1d2d12c87e40876ac98042e6d299a9e8 1d2e7a365d4f8b8fc0f4e4dfeeeb117b 1d2e923d5aec3f551f1af6687d91bd06 +1d2e9e870e8a63293d73e7f89e7c6025 1d2f1fa013cffa1c95f4617f01ce96a6 1d2f6fa64f2fd4fb9e7b6a531831cd2f 1d2fbaadf1cc3ba6033c8ed04f354980 @@ -6615,11 +7387,13 @@ 1d402786a878a11d73b5db546c2ccda5 1d41a6eb4f9e4783b2d13cf2d6da6950 1d42e861a607f14727b5af1aeeea9b71 +1d42f2be63a1a3a286f7941b2142d440 1d43117f99cf243733128750719db6cf 1d438da705fc6782669e900efbc540d8 1d4517147365348489ac5c3f9cdce666 1d46a46a987be1c8c5542a910b513a94 1d4842a12ed092f5aec8494383036f0a +1d486fd31e37ad8262371087d655f121 1d49727300e7f19e60121378a351a87a 1d4b649158da2ee150cd332bc2f2ae6c 1d4ba5007e9cc64274866f20b41f9164 @@ -6632,6 +7406,7 @@ 1d54f169f4edcfa01f4ee7f7b1287a89 1d5910e53c160142feabe877824eab2f 1d5a6f8c98e54b657cc89c2c344bb03d +1d5c75e707db9e14fdb27418346ac693 1d5d8da2e85ae89d52fb161b4f8fb536 1d5da16226e76fcefe39b336834f0628 1d5f6cd3e55187eb6b27c5759556caae @@ -6642,6 +7417,7 @@ 1d63b39c2c9b57565a13ed1d25d95767 1d6424e25837d4afb6cbe38b0e7be785 1d64433723d1be38c672659fb40d7eca +1d65210aad389a140ac09fbf2b55c1f6 1d67e4adc8758790ed6867bd4fc8ca23 1d67faf81e82e8b73ff431536e43a761 1d693d6f133ca6c299ca16f61536ba28 @@ -6678,37 +7454,46 @@ 1d9036bde2b6164a6846fe5ebb133492 1d9082a1609f55b0686d5be89052e537 1d91c3ae6be0740f55876cca0111f9c6 +1d91e3a8d1fff63c759128f5ec78b641 1d92a0dec1df93b48ddf595638bfd586 1d93724eb1e515074b1651114d9245d8 +1d9391ab74ce1b3372dd8102d191ec81 1d9724b750b0fa2c2a34f6786f07b639 1d980f1cbfc30b9eea016167dced928e 1d989feb437fad2b2a0f76c7aae9f1f6 1d98d6c33b87170ef38fc6e1d8b2392d 1d998d315d622aeaf10e54d3585fd681 1d9a1987c86814018fb41843b209bc60 +1d9c2efcb9768cbd1a73bee9e93d9429 1d9c43b62fd15c4f4b0430498564f8d0 1d9cffe03f81a2bfdf32a739bdfb26f8 1d9d147281c6b0649629da5553cd743b 1d9e1664dc5a4d2d4898647b617a4e36 1d9f1afbe0793fdf9dfb526c4675ba1f +1d9f3750e4eb26963eefe0334897ec15 1da0ff3e8fbee38693012dd6c906e947 1da3d71c665b0aadacf8dadae4d4b0dc 1da5c02177a67f09480055a1edb9a38b 1da5ebf06bab0f341b5cd483254667de 1da690ec35fcc5bc02b9973a00d01046 1da87f910aee8875e536a19f9fec7bfc +1da94e234e80f41f4b406e2622350ed6 1daadfb95fa886ce83e9c457b718a933 1dab43a2b69dd8ab95a2ddb66be2cb56 +1dab87ff9605b1a1e752636ebf1ad1ae 1dadc146b6bc628c1d66c7071e2ec5ac 1dadfc5880d03d1b370ace5fb5780f6e 1dae85d53e737bd8a34a948f265aedce 1daeff3663e930c9db176344c1c65dc3 +1db1ae0f24d3ad63a5ad781b35ebee75 +1db27eda77b89246c37514d754dbe451 1db342d235729696dcafd2eba41db532 1db5d630f291c3bb4b5916cb909b3b64 1db604f0b901a211af979cf531431c84 1db64ed873132b1d8f362b0de16a006c 1db6db1d28cd82d66cbcc61d8cce58ae 1db912bc2322243cbef3eeabd1f854d8 +1db9c322de2ac7328d691b6ea06dcb4d 1dbd9204b3dbe80fb19a28db76bc317e 1dc04184d9a3ee36d514c03462f88676 1dc18389cf4c46668ec0468974172683 @@ -6732,6 +7517,7 @@ 1dda0b5d21db9669973171e1f4731a29 1dda77d941a371db08225de31d26b5ba 1ddac830ae42253bd220bb5c593e8f40 +1ddad8bf772dd7c7c0a1d185fedbc92d 1ddb0ff48979909c18123eeee432ae59 1ddbf044929e741a477e6f7806632bc3 1dded8133901ba1832fc4e353e4ee979 @@ -6749,6 +7535,7 @@ 1de7e5d935426fe821f311d88e8e0058 1de85da5aa6a1306b760b97e646606b5 1dea1c747786f04c98b87605b54f7924 +1deb828b6d7444db723573661a02f0f7 1ded3f1d93633b6b93bce8da443dd357 1dedf4019e30e71e60406ec7f3b8e5f0 1def12276fe95a74b8345b116a3e71b2 @@ -6768,6 +7555,7 @@ 1dfbdb88d137256ea6c1503944d9155f 1dfc8eb43a685108b97d19e749da0d20 1dff40947d5d1358a04f132de0688f47 +1dffb87c35034d5eaa21cc49382aef33 1e01ce3e67dd672eebff9b5b17a96ae6 1e0297bee028ac32910301155e420786 1e044dab59144ba1af8d8fb23aa40bd9 @@ -6801,11 +7589,14 @@ 1e1b8961e849e0ca3606beeeefeb7c67 1e1d3bae00f7e46ba1e8176370050356 1e1d7ce359defa536a21bc44100419e7 +1e2145632c36eda82e59b277146173a6 1e217870c90d609341159a213004b0e7 1e21d46852ff85c1c99badbf74e937a1 +1e221c940a6d74399cbb1cbae183bc80 1e234eb8192ff68760264825f41d5a5e 1e242a8ab14153a111d67b8bb426d6bb 1e244da488909b6d2cced1714572bec5 +1e253e5d324cfaf466fc59d8851beef4 1e2647ce84d4ada15ecca25c1115955d 1e2783eeb056a222c69f7dc185144027 1e28476e99f08ffaea9957a6e81a40a7 @@ -6827,6 +7618,7 @@ 1e3f07e2a69769822afd77b8515f13d3 1e3f68f6c11bc97add87d01b9a8ca075 1e3f9f5412761923a856b28ed16bc5e3 +1e3fa164d5fd1d120c2d76783f44076f 1e4021fd92217b3610f17e3b8354135f 1e415be6d5e0317cd67f68c61ae6224e 1e41a9c821208f4af7a957e3812ad77e @@ -6845,6 +7637,7 @@ 1e52115786ee065437dce76f88a10151 1e527b949b3f667daf55e84090c40928 1e53093abb202bdf25836d160eb8c7f1 +1e53a2ab3fe95617df8795b8af334f68 1e54028d1ac7721d4da52013936f9bda 1e553bb9b50526a9c59f30dae9eae9e7 1e56d548da89820cee394977bd9bd08d @@ -6883,14 +7676,18 @@ 1e7d63e44e83dcd71fa991e20040e386 1e80544bdd8bfe53ab2c9e6fffd52a83 1e80914fd98e1fde092ee35ddab9908c +1e8099e85641a2a8fba5bf4ff43f8fb7 +1e81d4d26846f23bd803ffbf929e27ac 1e8551fb74cc4bf894b97069ce846660 1e877ee8ee6c5b8de5aad7e7cd53669e +1e88fe4b504273e897f54b63a2175f89 1e8a59e227290ec869e4b039bcfa7554 1e8a719dde67b68bdd2e68cc285b862f 1e8dd2a72012e0c3f3f7b6e3af1bdab1 1e9023e21405ea6d35a8120f8a5ad3d5 1e9059a262fc537c8f19c7a9b278d771 1e92a25561ecd6212d9d3b6df7b0a6ba +1e92b55c8e1f5ad163d75df61da06480 1e930ef333afe16c3ea26c10e3fea39c 1e94c847beb27e13de3a3c30781e080b 1e952e353e4f5059ab3dfade3f7e1f85 @@ -6903,12 +7700,16 @@ 1e9bf6e74d84e8af3c220a41e9058f80 1e9d1b12b7fa4970e9cc8f5442899315 1e9df6a45963de6b6fc175fd5167f08e +1ea13a3a3f9dd5c3f6840a5fa552753a 1ea168ce8ed19889dfb190487cd9a2b6 1ea16a31e720d66a4409f4d7f8343655 1ea2f28f6597d48d6f5f0cea96c882b8 1ea321be9ddcece88323666ce634b518 +1ea3885eff24c29ac42c4175728ecd32 1ea38cce509c37cbb281d67c72990579 +1ea4789bbf9e31d12ded172ba94f49af 1ea4c69fe4572133e7e1e438d8a29c56 +1ea4df8dfaebbbfb48087d0516b132af 1ea57804ba679f60f5ba35006e9b5156 1ea5917117a305105dd0cf1337d2f6ad 1ea64d96b09ca035cbfeb33bb3aba17f @@ -6927,6 +7728,7 @@ 1eb5102557d8672689a5198824a0032e 1eb5735e68b5a5d0be1876a336904235 1eb5b3d18a80809077176b934d3ef4fd +1eb6e6cec31749ab23b3d42516364b50 1eb7af774d4ce0724c4c52433b02f358 1eb801b4833ca880ffd79949a4ac4551 1ebaae447b543c36e5bd95e739cfd51a @@ -6934,6 +7736,7 @@ 1ebffb7aa7ec20f5611bdbbe8d47718b 1ec2a38c4235db3166bb6a0804c1e799 1ec2cc2dbc77269e3ce151c3517f8a43 +1ec4a180a99631b0060dbc33dd9b8261 1ec642f8fbb3456c881930c8275bffc7 1ec782b814c544453ac1f908a19df12d 1ec8a3b22b9c77f02f0ab3cb25b146c6 @@ -6958,6 +7761,7 @@ 1ede581bad243848c90ff75fed39d43f 1ee0396eab263ffef8890caed4dfbf73 1ee1d905afbbaf239c062f7aed05971a +1ee1fef2a7bb2aec6555fa228776153f 1ee1ff2346ef4bf51fa9b9df6fd07b53 1ee226479d8e600cd32246f8ef35b53b 1ee2656b0efcb8908d5dc998b6fd4161 @@ -6977,6 +7781,7 @@ 1ef67d1df5725e2e99539b1fe0a305e1 1ef7b2f934d2acb5185c6dd22d6dc455 1ef9e0327c688ee3f7339ca03b440ef6 +1efa4f1b03dcd9877399e5e79c0dded7 1efae3558c1959473c864c7ab5b65fac 1efc3b34a7250b0b5b9f9052e9828c02 1efc62c577518ac4ebab0b04d3617f5a @@ -6990,6 +7795,7 @@ 1f03f58d9c5fb2b2bd8aa7967687df26 1f049d139efaa17026f6f8904036d6b2 1f060079c0275d6f679a71e32b38eff3 +1f08e0107a9bf84830c4bd1e59d4a3cd 1f0a45d0adc41e58d01cc39dfb555228 1f0cd802a6a3eebc4441d53aff8b794c 1f0d66b723edc83d56ebf38444c7c8e6 @@ -6998,6 +7804,7 @@ 1f160194fab2a1c32d025cdd751fea50 1f16d7f270b3d636283ff9f0fe337bf6 1f17ed0d44cee08003b11ecdf67d1b7a +1f18edc2dd384fb323f7ae6dd9bfede8 1f190c7faf3962f1f33f6cea47f6ad0c 1f1915e834791b812de8c0bcc98fddb9 1f197299912158de89958ea053da6a50 @@ -7015,6 +7822,7 @@ 1f2b87fc650ff9f6c8498231e59c34a7 1f2bf3145738bb3ce94d61911148101c 1f2c7277a9a51538a83ce7fe293237fc +1f2c9a415a342c20c8b2bc6a81a234cf 1f2d2e52a3cbc23c7d4807d224aa1087 1f2da8a93e50bfa41d3d92bc7a2ae1f1 1f2df6074ca765dec51c78079ad98e78 @@ -7034,10 +7842,12 @@ 1f3f5157b2bd4b065463fd60bbe1515a 1f3f99b3ff42831d0c28361e6a93d74a 1f40bc7eeb38233be81f9ac2245ebaa5 +1f40bcbc47cb5f4fabb0a3c5e9db7b82 1f410225c202c1d3562f7e602a81615d 1f43a543b36eea7593ab5949c94e6b85 1f4607ecfa8af6e93f86a2619ba0836f 1f46fbbce9badfbea14adb6bec970fdf +1f4975d0569c998a1115849c784ac268 1f4ad48ee5216ae01ed01f9b0c50f9cc 1f4dea72fddf6c9b2b54129ae4abc37a 1f4f6ab4ec96e0abaf4f20970847063a @@ -7052,6 +7862,7 @@ 1f582e9b2054a97beb010d85c60f30c0 1f58b93fe6488dada0cd1afcbc46f5a2 1f5a6ba0281ebc175462f82f7c873364 +1f5b288d81a2645c50e9cfbf888ccbb8 1f5cebbcb3842e618f74c5170a002e06 1f5f8a866bf173f8fd0f8da0dfc8aa0c 1f61cf632a076ecf0d9dff5fb8b86434 @@ -7063,10 +7874,12 @@ 1f652e556a306a0c92cbd646e182a02c 1f653e87ef27690ee6860680bfffe413 1f65bb2eb5e57613e896db20992ef190 +1f65e10367c5548a1534acef3dd45572 1f65fdf7deac4ecd7d5237e984971600 1f661f963fc6df82bec1ea5a71f349dd 1f677124d236a045d81b4a8bd85bedbf 1f67751c319f8ebc95a77b91236a31a2 +1f6ad7fbedece24d5402b092c5fab5c0 1f6c39e2dae45d78d866b466dd55003b 1f6e99b3e05a25685eb3c782252b4166 1f6ebcda640825f9b7c13fe00a99c47c @@ -7078,8 +7891,11 @@ 1f760e7fe95ba7a59cb950b06e22a1bd 1f799fd6a798a8201709988163786789 1f7bb01bc5b86cb1ec8c227393c1d769 +1f7f8732e48802b90c88b2b73613526c 1f7fc7a55e5e769635899acf590c7af0 1f8403467a2e3873c93e56d7d7540fa6 +1f8659e68289e430796fab8a35332f92 +1f86dbf23813dcc7f6c9c19a23fe0791 1f87a2b3107ab515439bee42f107ba84 1f89282620b1b47f9a91710eace37ed0 1f89b8de69114b5347eab1b917d8dc93 @@ -7087,16 +7903,20 @@ 1f8cf64d9e7bf652ca0385b2783ebd2a 1f8d8fe3327e3b91cbf8aaa7a3e88ce3 1f8dcd3231f71c3c54c6f1626cf820ea +1f8dfbbe9a0b35d840b64ca0eacb523c 1f8f3a05980b8909884d937aa7e5eb33 +1f90dd4dcfb297d367bde0d4d399da4d 1f9469c45ee94922a52ecc0a6b094a03 1f95f0035781c0a8238260c1f2cbf19a 1f96bea5630022240276933df4b8ab82 1f97207ec7531a82e828582529323c37 1f9787a30dfbff8dd79243076ce83920 1f98bafc0b8807913074ee2610c6361b +1f98bc4b42b318cf6f658d8dfc48ad49 1f9a3554b9fb62157c3b777cd71588df 1f9b381dadf709de45a2ba7aac1894d8 1f9b84e40df7a4b32318397d854ab2dd +1f9cd9b22494e130e914a859c7580fdd 1f9d8345e2244b4ee2c91ade3027bd40 1f9dd500607f2a6fa6b17f4473def65d 1fa066f5538da33cc68990a5d853ff0e @@ -7109,6 +7929,7 @@ 1fa264caba285b00e2d832f4cd5cb997 1fa353b33d1295bf35ce85d3b4f3b7b1 1fa35fe518eecac5b404ded9707cea71 +1fa426b0b6b0ef60293a3407e52615a8 1fa4bc65b1a3ab94db7dc47509bfef0a 1fa4d9e192fbb1f457731596d69aa1d4 1fa8eca458771e4511bf2790d4cb6c07 @@ -7127,6 +7948,7 @@ 1faffd5ad02d271aced7ad8be42218f9 1fb00f15838330e31d54c46575fa927d 1fb03df92e1354b1baa16b5047d76d89 +1fb40da6c8a40879e91b50c35e6ed24d 1fb44f00e3b75e9b99afe4c22a728833 1fb4e04e8cce12c2a9e9d4a06e18e942 1fb551ab1ccea36eab643176b69ea606 @@ -7140,17 +7962,21 @@ 1fbe21c3955f57aabc1947f24b9aff87 1fbe3bd6ebe509280e8038319de6e2e8 1fbea2b833320d83c6dcb3846a4cbfe2 +1fbf1fef18506d0ad95305526a05d68c 1fc14964a06ceec334b6756138012a4e 1fc3c913a74a9e3dcfc0237d19d5346d 1fc44f6cb9acb21c1d6e301bab616db1 1fc4fb26f96dcee4c6ef5e2217bc8b0e 1fc56d40897af19058724fbc04b6a1b4 1fc5cdc590cad9cb77747d603fb702ac +1fc62088d44225bac765a88505f7be9e 1fc636ccbf7a8371cd2951150b8942b8 1fc6e4daa26ccc691c9e206414f2d2dd 1fc7365e7d15bfe3a9053feec044e5f8 1fc7c321cf0333621f2e0756fd328feb +1fc878882dd5e3462b04c09e36c2a8b1 1fc888f07db1f2dec62d51a6d2f8d59e +1fc98bc8e9b9446fcc56420e18c43401 1fc98dd268fa3479e89580fa5d8094be 1fc99ffaadd93941fdfbbff16145ec39 1fc9dd836297f81c95b956305fc13799 @@ -7172,6 +7998,7 @@ 1fdbd832a7708581f3a79fb3e249954e 1fdc738fbea63a0d36e822cd26304b63 1fdd51882eeadde0da7c447fe73dd5aa +1fde464c925e98bec42ae4fa364db712 1fde82611438429d6126b29bc03c32dd 1fe084456dd1d3f15de9aeb363889086 1fe08a7bb79ee893b007896fe1606ed8 @@ -7195,6 +8022,7 @@ 1ff137581e3f8cf44c7b8c48fe29d968 1ff183725fbd56e3e3415a790b6626b2 1ff339e1c64930531242dd12d28a99e8 +1ff4a3d7ef94a9314778b11495bd44ab 1ff4f76cecfea3f6a98027e34e8a32ae 1ff694e808e1086f0750f54e91f1a89a 1ffa6da053578743732d22b64d96c036 @@ -7219,6 +8047,7 @@ 2008cd54bf837a8a9ccefd521e4c9c01 20090c5c1a1df4c4e2c7666765788e95 200bac8c26201d7d30c79d9b3c8bf886 +200c2f5735a501e1e277f9e35e738c19 200c7c5f7c9bd6759853973beeeba97e 200f0edc0a783849f752dd84fce33227 200fcae2a3f199e8813470f3f1030fcc @@ -7270,6 +8099,7 @@ 20371a6aee8b70a9de383506857ad16a 2038239340f5e02b7979e318a88f0427 20392ef9b7ac54af49f27b23b44da158 +203996e6aae56bdb2d11449c8ea7d35e 2039d34e3f3aed4596336e9145087430 203c468187df8cb87d558156e996281e 203eb2cb0bac376612dc87c8e37df2d1 @@ -7296,6 +8126,7 @@ 205a384f3c9a51fff67bae01a6f0af94 205afc9dd9b2de8797d4a4fba5bb2232 205b5fb3dddfaf577a3737c908627e7d +205ec020e4c4eef51b73c60fecef287e 205f1a028588cdb1f37d161f65cfb19e 205fadfb38079faaf2247f6bfc221329 20601dbf0ffe16a3ea046fb839d37856 @@ -7308,7 +8139,9 @@ 20685172478425820139bd57f88c20d1 2068d1c4197b97732f31c0cfe2d5dbad 206aa967e88dd8371103ee7aceaf1f7b +206bce5809c724416555f5e763f52728 206ce0d64a144c2678cb48c9cc0f8d27 +20724653a43163d53972dc4da9d4e0f0 20727b841faef8d1a730e44f5254ab0d 20732b7fd90a65069e8d649b8e919ba8 20746ac000f9f6859708e28a19bc32fc @@ -7331,6 +8164,7 @@ 2087861fdbc74a62ccde714ef4b46e4f 208834852f0ce19041587a3c76dfcb0a 208859b658cbe209ff83ac1a57f4027a +208963ab87f240e833edd0c2239cba24 208bf175b8a48f722585e42b317c0108 208c2270bb8d20de96826e3806af7346 208c2cc43fdd93804f59a5046a8170e3 @@ -7349,7 +8183,9 @@ 2098a79019f7a7d232169f542c66f212 209bfef9441323b02f2668c64c7c12f9 209c20c23f6b4acfeafbc0f91cd5deb9 +209e5d50d630825f305b150e8a6ca0bd 209f00a4ef5ef0b9b643e38ca95cc8c7 +209f2a05dd64cc131694ce7b3f875edb 20a0846e3ac3ac33b100db908ab4a1f9 20a0bc583849c3637ec32fdace214ccb 20a0e6951f6c82ae863c70a82649c6d9 @@ -7370,6 +8206,7 @@ 20b244b0e940076e51d21823b68803dd 20b47d598eb52bdfa561dc5f7f8d0db2 20b4be5cc40a010f65f8e15d0ac4a47a +20b4e6cddd5ed3e7263517794f1daa8a 20b5d00d0250e34c3b92273ebe8d9eb1 20b662c61d93d4a036d0b2aa93264083 20b68ef46bf41d15c3a5b3c28d14496b @@ -7379,9 +8216,11 @@ 20ba0cb2bb0cd077d948673ffa00e85d 20bb88541f7b5dd5cbd687b21d475178 20bbb94fb8d7367b6ece1c8210246423 +20bc1be24ac2cf1eeeceff1d72c55d50 20bcb5fc662f506641d99d185110c334 20bf03128d039f2b999172a4e0e05c42 20bf562f3ef2efb63d53e524993499ad +20c06e9d6ab006964553cf0debc542b5 20c08414aa30af051bbfaf1f23e1ca3f 20c0d417b251bc28bf680d1cd526247d 20c0fa0294a552fc7a52e7e42c8834c4 @@ -7395,6 +8234,7 @@ 20c8ec4638186311588ac1a2b6d936a9 20c9e0ec721bb838e3e72e5f5b816351 20c9fec53c4d0a7ff881696ee093c9be +20ca3a4ec12f1e3be6a9579d9c541ea3 20ca76a6cbfc04553902d48cf19e7ce2 20cbae19d7f32da73a6b669260536dc3 20cbfe99d235ed8aaa3aa5d5b6653a1c @@ -7407,11 +8247,15 @@ 20d76e791ec077c792fd99f112be74b2 20d7c075eab14ff987d5a57be94cec63 20d8dec456257214a88ba4dd86e87325 +20d8e78232fafe282cc785f27cd6f0cd 20d8e97d887542aa0dc67b6a3bfad044 20da03807f091b78fd3b9fed300f467f 20daaacf2a1570fdb14553a1e7869d4f +20dba5a78dcc8203f6c16ba9a0847d32 20dcb4722d15b6b8bd01f72d03783601 20dd66f2d2f6ecf6ce9e225cfc889a4c +20e18d6f12c1b128a036fc81ff1a3960 +20e2bc8836f282115585dd819cb9f62d 20e2f4d2487624629a9b6005b45635b3 20e33b7799c5207c55d57c4dbeab9561 20e68e032260118f213f74a0c0abbe70 @@ -7454,7 +8298,9 @@ 2114e088488812306d0bc211bc050300 211506fbdf67f649425bfa0569a8431f 2116626c9d1c1c0363e90e2348fc63a7 +211758da46c3471136241700f206d605 211b9e4f47535e543814e2e5eba60553 +211bd9466c118bb75f9cd5109451b650 211ed90db15244404bba05962b03dece 2120271f0a6f66fb686ce9c35e1dbd10 21228817bb6b43b1cd7c2fc94e9b9b3b @@ -7481,6 +8327,7 @@ 21385c62ced08ee648ebec71bafbb540 213910eb178db81dc89e69f323f58f3d 21395993b656a40e8e82c037af8aaa1a +21395a440ec0c2ab6191c7759a384829 2139c380d775578fb2315f9248e5416a 213a6512a40116c0030e992fcf9d9f54 213e081256c80707959bc8ee3f468c24 @@ -7493,7 +8340,10 @@ 2144f1ec97add9b30b9ecd0465fb98d9 21450980ec2aa5a2ba691c304ab2e8ff 214a9f7a71e5deb2b0610861a0d0a24e +214d722b192786c7afe49e8196570869 +214dac07e86ec08a713ed69b325df780 214dee30e7f6cc4b78a40dc82759686d +215013684b11e9074ffa1eb687dd8b38 2151b2f291df9337cd8994d051102584 21521b856a946fb3778dec7ac23f35c4 2152599e092b5550125832a70cfedfbf @@ -7509,6 +8359,7 @@ 215cb046f491151cf29e0400a1a23a26 215cd1fda65cce95751ded9c8e3df23e 216105968e3ff72540e67cdb503728aa +21611c41fb67d53b202460f70a35b608 216268c3ef355c160623126e03666429 2162b518c3e8b0a8058db4f591423221 216393f8bd1de1c516d55bada2ed57b8 @@ -7519,6 +8370,7 @@ 21675ec8cb00941a8e431a538b5144fa 21678afa4d522c95b2272df06daf7af8 2168644056db8674ddafae6d3d247952 +216a340fb7a99897da8dc2980d43ce7e 216b3309a73dd4698b0134378a0ad84b 216b96058100dd6eabdb01c3b125cd2a 216c4b6df5908278023b1568766fb6b7 @@ -7529,11 +8381,15 @@ 217394f47fe29b9c183a2f46b349ba0c 2173aff9105566ebc29dca02af6e6c1c 2173e97051cce22d6ad3133e07eddfa1 +217479f89e4e96d6544b5b83bcc384c5 +217630ce668d5317dbc7a8248337a521 21769151591bd72eac7428a0b57dd3f1 2176e4fb6722df48bef98b27650046e6 217722e245d3502b156db853c73b7b17 217764bef79659497d2bd85f5278bbe3 +21776d7510aee2f0ec681f9e7f93c2a7 2177f0c04bea6af3118a27ce253f8382 +2177fc6224eb9f812dcbcf5be5950d7d 217911129c5e657b76aa60708c6a5557 2179ce7549635945f32b415f3a7c79c9 217ada5f778f2bbf79f5c435c6e64336 @@ -7544,6 +8400,7 @@ 217cdd275435adfa7d5a311e8d2b9c93 217dd0132d1fc622f462ca2476ae4f8e 217e40cd1cc773cd75c09645c0c56556 +217f7a17468f15d2bc743a3efe66c246 217f98b67574437eed6cffc495f9cb99 217fe8047433ebce9f498972903c114b 218033c3d414514971ddb5660346bed8 @@ -7557,13 +8414,16 @@ 21888c33351e700c47971aee32f6fd0d 2189d511732a866643a2d6ebabc1d5bc 218a46ff80cfc57118f615894963c0fe +218b95a0aa09c8b62c2928b62f1d5c95 218c98bac9546cafc3b835359051540a 218d6494fa219fdd72b4d562bce2e29c 218d741e1a75db73d8bd394c9e1e2967 218dae030e9e7d39bf266141694f8cae 218dc269e24f87722d075a93f7b63e60 218de96f028a4d36e912b8bddadb3ebb +218e7e86180db56f41f6f129d8a520b9 219124cf8022941d7ee78f8c22d0aa69 +2193e2b5f3f2bc8fbff16648ad6cb2be 2194333071b1a456173d0d587be836e8 21957bbbd7a341c2643ee6ca86fa6509 21958742cd2eb467cf2f8147119426cf @@ -7584,6 +8444,7 @@ 21a2a6dd9476c7ee6588db24ae386bfe 21a3760684d10a38b6ca18ec7ed1d68c 21a49dbd01826abf1c14a25c2d452922 +21a52d968afd9f2f5e3dc39b53835d3d 21a65a48a1270a8e45cc58388b877edb 21a6f227d005e149b9fb63bc4e373311 21a8274289f7a1c2a89746551e69204b @@ -7627,6 +8488,7 @@ 21d1d5d055c90f044ef76cb3e20992c3 21d33085b301fe0c369739f40aebd3ac 21d3e6360c80d0639a21dd5efdc1b187 +21d53061ecfffd4833a3806b71643dfa 21d5bf21d3c6b40128dd029d3f7725f1 21d680f61635076b9f11885257fda885 21d6a679d959e155361db0e46b0bfb6a @@ -7634,11 +8496,14 @@ 21d97d9b0ef55dd6fadb449cb1847f52 21dcc236c6b8828674e8f486b5df9121 21dd5a44ec4e3bf2734e527f086b1a35 +21de72fb31eafb5d5473fe14c238c9ca 21df79afcdbd488d65bffdce29c1e189 21dfd666f45885cefb9f56b1b57cc9ee 21dfebcd7b7c524f119fb2aff437d381 21e25266376b33050f6e16bad4b9cd45 21e3c30da1fb894793ae5b6ab3c0b14a +21e4a757dbbb83750e135a0dec299871 +21e5761db9512aeea1121d4acd7a8144 21e6f9149b06ee1b5185156380169109 21e7bb19c9e36ff307c9cc72d448f9c8 21e80a2fdaa30a135fcb92806d6e1c04 @@ -7653,6 +8518,7 @@ 21f2fb1f4a7c3b61e6dc8a8263d8bb1b 21f2ff26009f788f6b102f4c039bca44 21f47550bc32009b809ffcacfe575086 +21f642edb64ba69f3f3d1d503af06e6d 21f755a818fe4a52e3e34af7cd86498b 21f7eaccd3c56418a848e75d2deba4ed 21f8a7ee700e8cf15abcd921ca16d614 @@ -7660,11 +8526,14 @@ 21f985d0dbf405faa5ab43c4e4f318d6 21f9ac58aba0ff0d189a43e6d060e72e 21fa0eddfd39e36c9ce64c9ff3505709 +21fa95680fe44fb20aa28f53f34f5497 +21fb7efb9b20f2f3ba0b1c269f6f865f 21fdab3ad11e3a57f5ac0bc55bcafb6c 21fde059ad63b6ca5fc013288307f9a8 21fe3567e12b0f4bb422ee217dcc6f1a 21fe408e243c4d89357e7273123eeb60 21fe68b0bdf74908309d3048a86a2b4e +21ff509300840e17a17e6895e83f27b4 21ffe3c915ff2681b058a2d9e6653508 2200180d02af3c1771cfbd405d487417 220038b12911f5985a304444a9f10c6d @@ -7690,6 +8559,7 @@ 220e7919346db7ad0e3c954c907ec1d0 220e79b001eced4cf4de996641b9ed98 22100656cb212167d8a65a99f04044c1 +2210149f213b3087bdfbebd165341a58 22107c6a486ec943a31b005837dbc76f 2211274825efe940f25bd44658343068 2211287b67cfa7868c55fc07903a21f1 @@ -7707,6 +8577,7 @@ 221ad0a93351eb5b7bf6d0dca8676453 221c1fecbbc6b8dfa49ec586de2fdf39 221cb33d55aa7d52f07384f7836ff7bc +221ce33649336d6f934f088753d634c0 221d8ca56ac8e54f9d75c87fde6deb8e 221df60c9a6a89f27343549dad422d7f 221e470297292f295f2220b08c6fd437 @@ -7723,6 +8594,7 @@ 2226eb86f6a6794319b9836b63bf3ef8 2227b4b32dfec577f1505e5febca367a 2229d5478b4a35829a8502e7d13675e7 +2229ead4bda4fd9b0e92b180572d1fcd 222a609a98045fe25fc8e789d4ca8255 222ba7574618edbf899063aa10f3b150 222c69d47f38d1984ece7fefe5c82b73 @@ -7730,7 +8602,9 @@ 222d6b9147952326069c9c0b840fe3bb 222de103f58eb55508e5d3bf61822886 222e9a7fb5071f2ad6cfc7c76de459e5 +222f1de9385247fe227f5323d1e239c4 222f8b97cf325940c705412675a9a8f5 +223364aec7c0f59e6c5e2e59042282db 2234a5bc177124f648cfb17f85f27520 2234c9699bde148919dea258f1b17e9b 22356e83677f7c953325d953db3d6940 @@ -7747,9 +8621,12 @@ 224239465a63c5b20f5ef9d6ba6c86c7 22428a6d049657314ee108308c05fe2a 22430243720410e1f89e7a6c03686486 +22432ec5db81882f354de7003153a258 2244fc5253d489b5964159e81698e273 2245901778d1ceb5e713976f0443834d +22466be029f353aa41e302d18d49b69e 2246730bfaec0d3025a47c497fdd4c76 +22470cd27bf72ae1dc249bc99edee28f 224789f0b195c14d6c42a1b168a5529e 2249d9419b570f246b817c6b3c85bafb 224b7d0421f314d26c1b25f804734d68 @@ -7760,6 +8637,7 @@ 224fa59a0e68297a19e56065df55a317 2250bb99305f154206b77d6f5e78c1b3 22510d387060335a15a597812ff9d949 +225115114d32de06ee23bb84483cc2e0 22512044abb7f990d1db39f654c17468 22533ef2cbd1b2522831b6fbe332a225 22550557f6d912a1dc24b76171a3c77a @@ -7768,21 +8646,27 @@ 225823cf7d45780e46f61be1dff05279 2258e6f25044ce23a2643d2d4be8bfe4 225addc7d124ea4844422997f3dc6e65 +225af420ac5f9974c6ff3af8b54afa48 225b7b2ddf81618f69b6775e379fc42a +225bc8096ccb187aaa5142b7a15728bf 225bd64cf35e9f69bb8b6a40c6cfc201 225c7959ae90b312c8bc0751543ab27e 225e59bcced7cc1d3aba506c5863954d +225fd9afd33ee02b0022683bb2abd162 2263504422424e691b628f5858bc3b2b 226357c45625f16793c55f0ca4876d1c +226736753988f7f54cc62207fc990e22 2267acea2070de5a850363ecbacadfc4 2268e395bef9d1170245f4f33a026e24 2269332a1325b2938133feb36ea57eae 226988a630cc03dd52a2a49337b5b6e7 +226a4da037b0468b3b340b6abce577d9 226bf0be16f85e376ab89de0f877407e 226c126a435482dd1469e1faa8542b11 226d8060c7bea22f477372290a9aebab 226dd61c2c190902634d9f7bf65c245c 226f2cf286e5bde419a947319beef06b +226fe6836b95ffc99711dc81552fd8a9 226ffe618db53256a7b8c0fc34f8a05c 22700379ae5b2ad074f26fbc9dd1fad2 2270b7af59f73864f2125803979f2520 @@ -7827,6 +8711,7 @@ 229b265edc8358a792c842edcaef61f3 229bc0f87595f1ab08b093a02d4de6b5 229be38238dad13575ee678d031a96f9 +229c5236ce137125ff984ebfe894935a 229d567aae40cc7803d5b3a781b06e97 229e820e05d996274666579911b66337 229f426943ed9bd597a61d80821f51f9 @@ -7834,6 +8719,7 @@ 229f546ccec9c50ceee168388023d923 22a05f2a9ff376b7c37b6ad3f5121031 22a14e9c34d36e16bec3250ca6626a4c +22a2a713dde4f0a46c3b22cabb3c8264 22a356afd44ffd2dc12f040e3b97660c 22a57b865fc995db66d4503363f40e67 22a664f21b4167417aca541f5c4d775b @@ -7842,10 +8728,13 @@ 22acf5fd41508bf1956cce37d317c324 22af3b74245bc69bb5ae2a8c155d2999 22b0ad8c5d65a42f8d0a1d180ff730ac +22b0ef8612b06dd4dfa8704cbe63f5ca 22b16cbf5e78cab1c4e10eb5cf0c1043 22b1add34937ecb21afefebdf9135c79 +22b1bae882de70978e0635ec5bbbd417 22b2949e3a272963206d9512a7c47b05 22b33495e4a6ebfc1d8fee0736fcb59d +22b35f4e7eeba5fa071f77a0ce5ed374 22b3ee236c7e1cfdbb3af79c79164e98 22b4f78210d4b2e9991745e484d903b9 22b513ec25f09a94b218873bf5a94c10 @@ -7853,7 +8742,9 @@ 22b609aed79699cf561b29a9cd70a672 22b796888ca66a235782c3e50ef3f2ea 22b8713554aa658aa8c24028458e935c +22b8e8f49ed76f5aff0dbf48fd46fe95 22b9f4998ff006e4a9db3d06df7f2dcf +22ba2817adf2c7a4fb78ac60fadc0183 22baa8398201f13e019f1853ed79844a 22be43714c91b02db0252c6fec2dc30c 22bec97dc2c9a956320fe329d029ed2c @@ -7864,6 +8755,7 @@ 22c5201549f63090069e690283a3d14a 22c60757ce48a19e00ac399ac0f84431 22c849455dc39bf6fedfb81e6b487033 +22cb2dfdb0583e4768b85de158c4adc8 22cb8f31434271b1edd2a201e7641cc0 22cbb30ebe6ca3542ad77dd605cc3c04 22d018577687fc844448a5e9f65dbb88 @@ -7874,6 +8766,7 @@ 22d8995c31055a1409fd937f92014177 22de4b59a4589c4a9b0bc6251e1adbd7 22df6fc15f7e5f9a15f23d6b009859db +22dfec5b5762da855060932e48160001 22e0744079dbb72bc2468272d2af5c4c 22e3cefc994d6054b9f102876a5a0453 22e76b335f3039b491adb374962eabb1 @@ -7883,6 +8776,7 @@ 22eaba109831b1621ec7044353eef6ba 22eb8ce343ec22cf65e0fe45535091fa 22ebaa66b23c8b2cbd057a3323cd6df4 +22ec2b14c319aba5c8cc574803c672f1 22ec716f28470f8952922cef79e4a609 22ecebff30ea3d58a7d3098e4b8705e8 22edb5e8f0433ff7e2143684d9de1532 @@ -7902,9 +8796,11 @@ 22ffc8154175452ae59ed90cb984f047 230096bd2ba463869ef3e6e15b5d693f 230125acdf25bf0ba7d78bae7abfbddb +23013597ac5a240cd582b185906e3684 23021cae8e41c1071dc970167a842e78 2302f87bb43f6b7ef538fe486be07034 23036e27a8e223169dd18a6414f028dc +2306a4339417bed1f496fb3a32a6339f 2307ad67acf54c1110d41b4a309dc3a5 2308dcac2919a8d2c5dd9c5d2c9ec935 2308df48d08a3555cc8a6c245a1f34db @@ -7913,16 +8809,19 @@ 230aca79247840cf72b70d92f82f2ad2 230d98dd558ba1f2a193801b17a9129b 230f348e48144e9114865fe44a593f7a +230fb9d977d9e5a9633009e61e0f4ec1 231046f3b83fcb83a6439c9be18a349a 2310a91a77feb4977f4f5e01a206a3d3 231138a3798c46f31a73bffc278a92ae 231277ff5bdab895bf0934dadf1030f2 23134cbff4e0a26d285b97663467b17e +2316933bf45c4c0abf4c5be0ec190ddc 2317b382e87c732582698f80ff6fd229 23180f208dda2e1018c5f5583fb20319 23186bd42fabbe173ec4294bc75bbe89 231b533d5f9ac6f23757ffdb5eedf542 231d06c898b565e6d8854c8c9fe8027b +231fcd4c51e7af99a1e8138b6b3af18b 231ff12c2b315cb59a0fc90f4e346bf5 231fff6bc659a448ff13baeb363520c4 2321913d6b504211533cc99dae150ba5 @@ -7943,6 +8842,7 @@ 232bc0fa11b44c18555a0fb9757eb50e 232c67121a2b1c7044e331209b39ca7c 232d011d58cf5d239f8877f11cd00df8 +232da2f7e704ac09c6f6dceedc02c8c1 232e27a74986d1a245bf908419607ee8 232e4d257ef35b8e79c25d2876b6e16d 2330a838ad55f65de8ba7f2b7bc6489e @@ -7952,10 +8852,13 @@ 2332122208b7f8566813837e09e4bc28 2333de370187f1c8a2d7c169bf2e1dd1 23340603b8ae062ef10871a7a7f7696b +2335874db71cc1dbe48b4c54228191a6 +2335fe25090c6ba776f951a22163b59a 2336be40aa968b844f6931d6b0e1dfd1 2336eabe3868a237398eb22c546640b8 233719391657d784007800775b692ea1 233b86753b509906f1bc9b1faaff00f0 +233c26da9b8aaa4c91058738a97659ba 233c80a2f5e7b3ee4c9bb4c72fb44b19 233c84eab1d62a7cc6a48e5934ae6738 233d1c6e6202ed50456233c39c2ec82a @@ -7974,18 +8877,22 @@ 2345c34803d355b16dc6cb340e13b8e5 234773cf5087d444ad1b09fec68345ce 2347a193c936ba8c3918091d8edd65a4 +2348278362aabae4f4bfcdc69a4d53f5 2348c9e38775cdd42dcf51b8d7fec516 234b9143642dfd7df3bb5e72e474cf3e 234bc66597244e470c44348d97cfb914 234e09fffd188d48f9a013e0a6303946 +234ea566750f437dfc689d3aee06d962 234eb78491c23bdc64bb3133a7a243aa 234f08969319176deefde79b2d7960b9 +234f73c76ad033b1b1e442dd21d055ab 234f79455c00c3bc564b9b509fc2d0fc 235168f4350fba84add541c99148dc8d 23525cf18695310b78fd0321f2d921d9 2352cdaf0075bbbef741a9ec2381aa5b 23552b57403f44f45c527457b47ce2d5 235649e1d894292c076aeae5be0abe13 +2356563e112a45196023f334292d6b44 2356d6c05dcdce0c76039d2bdc7024d3 2356e0d0ac855d1365b8f7fe175412dd 235765941c8999bebbad7b7f78dfb283 @@ -7993,15 +8900,19 @@ 2358a98b6084e777e950eb86fc163c30 2359fda8884a019cfb68e5289f091b56 235cd03a2fc84356eb63b78532dccfd1 +235d27bc67fd2ad3a02a97fc153ce24c +235d7a5e7a0e3f141144ad9d3c2b3ff4 235d7babeae71cad3d3502c52d0ca7c6 235e0f64ea33828dfec1990c97f79036 235e5870035ec12e63c0fad5e0b83a35 23655ec24b557a5beddc4dbe21ea95a8 23657ec88157711235f8a9b52351dafe +2367310fd418b91be4224621f85cfa2d 2367ed1537a261dc904364e5d31fcfa0 2369bd7e90d2fbce9716d4ea0bfa9c87 236b62e3324675c6b2e3fc46a673f1b9 236e9a1a9887ebd289dad93a3ad2b5cf +236f1796d46a144c9e51dc7d1e12a4e4 236f26c40c1d6c4f6e9bf65a0a1d712e 2370250488e4ab8772685132ca6f363b 23705cb8c890dd647f958df0076064b8 @@ -8016,6 +8927,7 @@ 237d93f523e67aa31a494fade3f728ef 237e3417377113ede58038aa91b41c72 237ed7529cb7692d070bcf6fcc2e4aa8 +237f3373a43f0ab030f71559944311ef 237f93eb24ecc133ad949b1981519952 237fb1c77c2d8eb7e329f9513bc9b6e9 23820f1b1ec91286152ce0a2f2e1f2cf @@ -8028,6 +8940,7 @@ 238da06e9e1879f89c1b06f8c61c52e2 238df71951848bbffa751e92c93e68a1 238e7a1b84ec791a631ac4de80158b9a +238f99b746aec50ce4513fcf3a753fcf 23902712ff609b4d455c66bb5ee9b82d 23902c96684221a7e06cc01a174a4089 23919b4a7638dce6537df1f214b4bc00 @@ -8051,6 +8964,7 @@ 239f335a1f99387972761f53b1262b19 23a07e95e3004386808576b7cbe79aca 23a309bfebd42ee316067fe5f3f747b3 +23a310ba21e1fbda110791d06b8e14af 23a33686b8f36307233be5fcdddbf169 23a3c3f6de1d4e05af972b78fc88c5b8 23a3dacf3ab540e9f77796161cff10f8 @@ -8079,6 +8993,7 @@ 23bfa207ffc18f0fd6730d2d7f0f56f8 23bfa9c66ffa40e15fc779e9c9f1b69e 23c0d847f667415551c45e82402a6d24 +23c18cbb39343f80a450911ca11a0668 23c247ef7a64371abc0d4a810ef9ee62 23c81aa66a60dce1c67baa237605ecbd 23c887c9435ce3207db847e706366ec4 @@ -8088,6 +9003,7 @@ 23d1f4fe676a67b0e184d7653ba2dcc2 23d2300788f1990bba5981e6765d1304 23d451c6d3d268a7b35b01be293ea995 +23d622f9648c63d039cc9ad863ea6c78 23d78de66a3c576fe6f00e93c0505e5e 23d82b67b6e5a4bb6f3220b11ada14b3 23d861429a02b66ca2c59c97a47af9d1 @@ -8099,12 +9015,14 @@ 23df71857b439f686c2807ceb864ed4d 23df92b323221c2961c93fdde3e6dbd2 23e0e24d0c33c754c7fe7407102d870d +23e205b0bf82447f35b99fb47d2ff012 23e34ecbd096cd3be7ea7906f285c21e 23e60ddc3be83b07fcdf6ee97a10549d 23e739991c702cdd38c3146b6c4bd47a 23e7a00d31577dc007fab32791676d4f 23e7a20d056f792c3749721cfd551bc0 23e7fbe22b69aea2836ebdf590fdb5e7 +23e8848c56fcdd4d364b03ce7c816e4d 23e8d1506e4f8f0f286299b95647923c 23e94cecd2cff4e82bfb36831bcdee08 23ea42669ba1e40e96285b41c33f53be @@ -8112,6 +9030,7 @@ 23eb4bf051d35d3bd5c94feb0af40512 23ebcd369b1af5c5b6e6656529157fd2 23eca32472de7901cb74bf177fb33b02 +23ed988a4506d1da80fadb657428135e 23eea01a8c1e678069947c8acd8cf2c1 23ef80dcac18eceaaa64e2c937af82f2 23f1e65f121945bd4fa2245f9eaa7882 @@ -8130,6 +9049,7 @@ 2403e6252c232ff10e6bb07f367c7137 24042b142a3518ca1dec0ce4161d89b6 2404394e0b3b29a6544ba7b469a0823a +240511419043aea860a62151d0e605d7 2405740e1dc874894597c72f44917a7a 24064dfa420cf1b66ded2334456743fc 2406fd03c9929aaa67ee9a2bbe26545e @@ -8140,8 +9060,10 @@ 240a7cfc0de4bee6b78b2164ecc8d876 240b1c2f4e2aa61650f3be77a91c6979 240c7e24c2c855a32952c18b1b086f7d +240ca3b96e61cb13a3839d03e3c84f11 240e506f8f31ae6b59f99488dd4cb65f 240eefde0fe2466c14cd90c974f0c52b +240feb1818d9c7b72299f809db862d4b 24101fbe26bac123f67b8180a3d268c2 241152cfb5b8317497235cd626b2fc7c 24132957781be21ff42129bd749f9fa4 @@ -8152,9 +9074,12 @@ 2416946a0facb146dec7593cc720e1b1 2417638409591fe1407ea5933bd955e8 2417b3032f8eb8bd92eda138b124cb1b +241815e01081f65680a06a4164d6784f 24187418a539138d79b3cc5cf62d997a +2418ce362c4dff162b71046bd7ea9fa4 24199c1f45c170861691b4f05afa5a7d 241b590d063ce05ac323c60bd0c6b9d2 +241c2fdb406baf709f60615f3ed4c212 241f4e33ffcc8373e074f5f0eca29ae7 2420fc3f8e8278a94aa70527f0939e0f 24212557d091fee5e457c27927c009b7 @@ -8165,15 +9090,18 @@ 242451f3553cb7c8324745ca2ff9b4aa 2425d9ab15f77e739c7c514cdea0f8f9 242698219f845200ab7f5fa503cb64b7 +24270c362d836ddfa02a03c112ed75cb 2427ead85df8a7623f2b1a9614bd6c42 24282147d4b97323dc28458e18df2d59 242b16a6d4048444314a8035a1901294 242bf4402908111e68ee5d905f24ff6d 242c6eada142c3e29cb337df7e6337e6 242cbc43282412c64ca15b481e3d6486 +242ec7757f1400d0b788873196e1b6ff 243039a5c2476001cf769f658abed582 24311924d5ec51f1e58081de7ce74a53 2431eb57d26e209e308a7ab8b03e726a +24332325c00daa96daa526eb745d1370 2433fb0553e870759061fb786bf2a539 24347117a7c58151f5a1dfc0b3667aa6 24354f493442fc58de2e26cc16d33c3d @@ -8195,12 +9123,14 @@ 2446bddad80663a13682dff5051a758e 2446ee64bb71e88d36e4dbd06ba3f0f0 244705138d909f938c333b9b08d6786f +24470fa48b95b75e5c65e28474f4073f 2447965b2f1a5cb02df387c1fcae8d58 24481c8d08314c7eb7613c12d84181fe 24481cc326c6769d78212e93be4f91ab 244912bf5948a66b20d7e3e690d5a0b3 244932ee7edd7ad8dd59ab24707bb820 24499e15186e6cbbcc79384d50048b0e +244ab1582646d95ed119615694cc8a34 244acdedf91c8c07214d42168cecbc5e 244b31707a17e148690d1d744f5ab88d 244babfbce81aebf2dad6785ea443bdf @@ -8217,6 +9147,7 @@ 24528909396db5e8d6a287a5f32d1994 24568aa66dc5e1494b5a7378215a7efa 245755d4cc97dbcb9b263441cafafb41 +2458f72225240b6413d85f4e28488094 245a6549ed490151a92e5c3a0e6aba09 245ac0165e3b1c2b2b1860e86570893d 245bdc8f03002ce59dd6a6dd9718bda1 @@ -8231,13 +9162,19 @@ 2464d6f38b5513fe587f99873eae6454 24652982adc6f937b0cd459fa177b9e4 246555c044287dae4f67fcbacad9a265 +24659a05b42c03833e351a8ee4665328 2466d807b163b60d902e58ba45ded1d1 +246771e03aff4b29940182b2d5220b85 2468859591268a1de2e254e268a572fb 2468b6a96e3cd856a3869c464c379197 2468bc2677c056807f26caec9b58f751 246b1c5c981c5050957962c377dde8b2 246bd6d1e23a7ebd2a9dafc3585b2d04 246d1cf791c38d53dacc92657ae90fae +246d6843591ccbcfa48a6e37df618136 +246dbedfb46bc93753fe072eec38daa4 +246f9dcc6a41dd249ed8981310b5107e +24700e19221f897bf998e331b940ac6e 2472a28cc792e22ef9b930fcc0dd663d 2473ef38ae8573a01e8ae28253c8e2d8 2474d0d95dc14ddfae5bbc27820e7c37 @@ -8256,7 +9193,9 @@ 247db9f2777ac604dee1667612e083fd 247e9a62a1740a9a9a679a1bc4d56c6b 247f7d5011d9d0095f7f24ee20f10f7c +248275f8d9151cb432f1cd15c4b8e3b9 24833dde6c3b9ae7ba4025599f14925d +2483dfcda0367cb2f0883f207e5c1a5a 24847a1cae26fca53831267d8e6f741f 2484d9cdbed11d87360fabfab3339858 2485174cc1ba3bd948209bb72d340d22 @@ -8292,24 +9231,31 @@ 24afbc55ca5a101d251bf76afa8f47d2 24afcd8f6d856ed3e11a05a9c196af17 24b3b8f755c3e5232ec86db982b84e99 +24b4b844bd2770bd657165423367723a +24b655a63e44e12d651f2e2052ccf3ec 24b6d5953f617cf9a26050ea2e7ae776 24b7a6e30dcfbf4f590ef27c47f09c15 24b8b6a59c111ebff4b6b86dc7fa782c 24b9e41ea482344ac3164edcd35dce12 24b9e81ff4f69bd11a7af550c43d47df +24bd26bbd0c24e2038a4f741253f7c65 24bd5c494d80749c8ad839e9a815fa38 24bd893098dab55bcbe8f818119b794e 24beda5bb9bd8fd15859849b91802b09 24bf10bfe00046e04db4f0f85df9e0db 24bfdb4a8c9a6d78cfd1899c36c8dc9b +24c397186731b738bfd922041da3cf4b 24c44850faf238de35e7c3c23cf8f813 24c6c55ae6fec8295195e7b4ad4d09fe 24c7115ca35ad1123b71bc6c7a10ed11 +24c7751e17f6dd8cc528338df63c7df9 24c78f975fb981f256b7ba44899cb49c 24c8b10945df5e8feca5adfab9854913 24cbcfb84824ff0ec048eb98afc8ca19 24cd8e084c1e718c158ccaffbfa5d42a 24ce3a4a3f695b096ae9c6d443737b7f +24cea4b7949635c97abad70b97d79288 +24cf7db039ecf487227c10516de63f8b 24d140e89a77e262dd4a58bc3aae3dc4 24d16cd96ece0ca3a523ce1b6301dae0 24d1817a38e2a0d936530361be6a0f5b @@ -8317,6 +9263,7 @@ 24d2a106fefc77dbf1e271dbf6944285 24d3e74caa534e9c20383506b06d07ef 24d652a38ebe00fbfbaba1d687d44f4f +24d87cb1ff9112f56c67332e71e62ed7 24d8dd0a5b276f9396e097ab3afad123 24d8fc6625d8f20c4c758633739e01cb 24da3462eb9a3d96630ee47e81501783 @@ -8334,12 +9281,14 @@ 24e3376d1c420550cc935a347da26dc9 24e40628cbe96896e51ce34ebd6d97d9 24e639eb5638f38ac9f055d907b5f60d +24e746efa3c44bd6fabb31bd85070975 24e9d4d99623e716d737018c8c7c4a67 24ea033cbee64fa0957d73ea7b41ff36 24eab75a3c370da7da792b351e18961a 24ebfc94b0bc5d0cbdd9c092d974cc30 24ec21146c950e68fc5f350ced0b617e 24edcac93851a8225255cbb8f5d047cb +24ee401465f1fff816ab884bf9a672a5 24ee4add0962e3022d8148b7a2c80a92 24ef9e4b000fc37ef5cfd61ee13aa2d4 24f07b7f8d40ed98e9951610651a6751 @@ -8351,6 +9300,7 @@ 24f38f6219102b4ef289a4bb07b46beb 24f3a230b378ed17e915b302d87a3ba5 24f45284dc688c51d3abba94e2d57fe0 +24f491cc85891561a070e97acac1f55d 24f632d6e088aaab2ac702e1456828a9 24f6da399f10167f1e6fa9369d92c40f 24f916e65f03be6d23d9e0a78bc657aa @@ -8365,11 +9315,15 @@ 250381c5933b06f042297845efc0dbd2 2503a3d21f5fa726a4eb28d12f469573 2504177e930d936a5c965aa98963fef8 +250435440dc2bee9170c3095bb3c9813 2506f98a25b2d049f08687ef8f5ec7b9 +2507307e45ddac6a234657888dd35a1f 250780b2d5e3ed18c2f336e9035f1630 2507e211f34a2a7d044b7cd13fcf1ebf 2508dddbcb5c8e0572ab44b990ada201 250a1c55a65b949a8e585c70a15a9284 +250cfd29abb13733c437535e36509e0d +250d07a4c60d427ea436fd56a3edecbb 250e172de7e966402bb0f99f208983b6 250e5f93a95032a29a909ff295c226ae 250e95e6585ab8089aec26dda84d2173 @@ -8378,7 +9332,10 @@ 25132d8ea916df72e50b2afa730c595f 251371874e8ee052cdbe0aadcb8e795f 2516555f9ef354f8d1b0e908ce4f61bf +2516df475462ac59d4329be1daa5db0a +25173fc02cdef1bd4279da3cc3a9b33d 2518bdc32b38836d782a953b4c3bac68 +25194aa743692a3bc579c4305ebe46fd 2519d93dfa44c3d6537b5f8996039582 251a873981de9f79bcd13151ca26a454 251fefa2995787fb8258e70a8c42c025 @@ -8386,6 +9343,7 @@ 252785e3f07a229b5c65b58d3b212b3b 252926ff06ed5247b4b2e4ca107fb573 252b692286d2f4d37cc105aeeb723915 +252d6a343749a0a32c92fee7c4e6351a 252f2dffe15baf39621a87321a068069 2530507e587cea9af52bb1556ee72e3e 2532d339f2535553abee7e8a555214fb @@ -8394,6 +9352,7 @@ 253464e9d9eb63a26b2fc049a298ee5c 2534a04d9c6e603bf244a3861c2fc2fc 2534c7bc69a0851bf34e341c6d74999c +25389c7fb00b3e8f1631391cf943cd17 253927a3ecbdde3f452695d139ce0218 253a19855e60b8881d4179d0c94d8750 253a1d66ad90844143dd5e0fb9c26bce @@ -8408,6 +9367,8 @@ 2543f78da09ea82ad5e8e2330382e42c 25448d5c88a27c6e01f1cf3fda2dbb06 254558e7172b54103ba7762edced490f +2549d6e377bc2936554fdcc0fb0bc8b3 +254afcfc75953c595219f853fb1c1a6f 254b28a7e3c479206e0c100e7af26235 254dffc85b106d665b693ca3bd8d17fd 254f9f1fe3cae4afd92ee7d3a14620df @@ -8423,18 +9384,22 @@ 255552617fea2189b9d8cf554931a35a 255557afb1c78300fd59c743a70e00f8 25555ed899b93275d70bbeedba521c17 +2556c14a2ce62c72f92cf32b91587d66 25582af4677d15cd4d2f5d8585d784f4 255934fe83c506d4e72f9ea02f0863d5 255997f8a4fe7995f27561ce4f3cca1f 255aeb8181189423272ddb69eb0eaf86 255b7415738d9f0f6da59174155b567b 255b8e7c14594478abb20423689cfe23 +255c56a9dace0cca322c55738b9cedfb +255d1c4add6ade11504e29d4a5ef33d8 255d2e082b41055bdda1d6bd85bb13e7 255e5e3cca4248fffc3fdf6d19663f00 255eabe52bafc39a2f7ddf634cf83ffd 25607e362f476000d31d85a1d16b80d7 25628789f0d42c31b2c73d4b8b9e0e8e 2562f6b4735b3d6a8b8edc682ff286cf +25632a990f32a4ab19506ec52436a251 2563809d0c4da22afc2a778bf389efec 256491631e5ccbbafb0af67bde86ac6e 25673305d158e02193d1fa44b55035af @@ -8445,12 +9410,15 @@ 256d154ad14acd8cfc72411f6ef4c18c 256e46d3b497acdd970000753460ae2c 2570025369d7b17e91a1445ee76fb1a9 +2571246c1e57cf94b8fb5c364d8789c0 +2572549ef2f123d45dda9908805c718a 257347f1b64ca313f8ca9fa661133d63 25735c4885e2e9a46ff4f311a81ef913 2573def745dac446bb9470da252ae160 257404ca1346cea3e9cb0c4654ade32e 25760e28cdd89d9a3d4fcba5fa123170 2576d0a2e4dd55bac8475af9c25df988 +257746f30d19cff4ea631f92efbda42b 25793057112d66b0fb9eb34233bfc421 2579d5acc40710f4aee04bdc5e0bdfd3 2579ff2e5203d06d60cbd2cf4a2d8863 @@ -8460,6 +9428,7 @@ 257d7b360aeeb14a3d0307cecb8415d4 257e86ae5c40b03f2b22f1fa19ee75a9 257f9571a33c26153f5ccd929023f564 +2581db6ece44bbb9832cd89d5fc78728 25821be90d559694718793e83704bcaf 25822fffbee85bd65114340aa5dfcd35 25831d582200d9ce30e0531b5549c83d @@ -8472,6 +9441,7 @@ 258ba6d0492f93d2b39126d117424a3d 258d492746f7f699b7fcfc98443dc36f 258dcfde5fcb7e0384bf20a472e08f49 +258ecbadbd8d826941859cda137fe055 258f9ec8ed1c380fca9a992b3ff32d7e 258fda8b168674f29a48111f746cc9e4 25905d1f9318495320dfbc30f843317d @@ -8479,8 +9449,10 @@ 25913b4b253ed4eb3d24ceb6882fdf70 2591d9418ef5515f569cc758edf2ddc3 2592187669b0ce537935a8449b121242 +259239f2bdbc0d34871ec076874499e3 259268dcdc6a399ffcacb8d52e3b73b2 2594d821d0358c0e3f9fe4a6e4f0260c +25963070b4ef685d3b761a9aad77674d 2598f8824fb7b655fb2f393f4967bbf5 2599326f54e1e360652a666f73f384ee 2599822f4569f7ac57b658f6bc3e5c95 @@ -8495,6 +9467,7 @@ 25a66adec946dea67cb14c856a5ccffa 25a673cca7d1e196e52041f5ba22c013 25a863bb82489b98e02dbc5d4955ed0d +25a88668b9d219eb3399c9adf5bbd5c6 25a8e65892dfa24e43558a80917550de 25aaaff5641ecdd6c34771bcc4b06a7f 25ad6183c34fcd7707a57978acb57574 @@ -8503,7 +9476,9 @@ 25ae2f7e0bd42ed91e442a7d2a309221 25ae42fe7067f58946a641f4a0d26d22 25af8fc48596f6f7d0c5246a11c30ef9 +25b145129993a4de911af3ec57c4c57d 25b248b326d169c5647cd63fe0895aa9 +25b4ba7ad66caae491c555be59bd0991 25b582a1146a4924f8423e5dbe2d112a 25b6ba467b0db90d5ab44c62bfe405c6 25b77e4eb37b6507515a81c443f9d55d @@ -8518,14 +9493,17 @@ 25c8ab525979112e3adfe727bf7c28b1 25c9f49f48775ae6d4fa8d35ffff267f 25ca459ca305e48ce063ff543a3b6752 +25cad748ad458a46b307ed4b2555dc2d 25cb7951cdc09c621be5e7ffb1768c22 25cba26095cd6d80c3b31c0dd497f7d8 25cc71394b7bbdee2bfe4a404d37f20d 25ce158c54b16211091e443c053560ec 25cf1f00ccd5dbe3771014ad7790e09f +25cf815435f59ac3855420a9ee48a570 25d142e5a8085a88d878badc16ed08a2 25d15ff3e3d19542321adf0a695daf4a 25d31c2fd58946a759ffa3240f9f006d +25d3b64741f916e81c63048a46295a08 25d40b80e855c7f3cf05fdad772535de 25d581e26e59501c0595e8306d878e83 25d5aba8052f50b0f5a442a03bc3520c @@ -8541,6 +9519,7 @@ 25ddef40d512afc9723006d697435dfd 25ddeff453f00649bf41bbf8234c4eea 25df611402c55184cb8fc5df47f16daa +25e0f3ead90a52a9bccddf830a98222c 25e281a803cf86e9811a0f7031d91bd5 25e39b0e335168d0aa8d87b113cd0c9f 25e67d139b32bf5e219cddc63d25401b @@ -8550,7 +9529,9 @@ 25e7ba436a8fa166d18d126bcd16c56a 25e8e8a5a06ac2fa4a2ed2baa73f69fc 25ea0201136df44b8e6cc44919348b60 +25ea03e492ea997509ea2b2ae9c652f5 25ea1d2787128310f80ea3a7889a8026 +25ebe3e34a5e08199b8507522dd71120 25f052d952f70c50e2de114f93095e99 25f193fafc725dc4eddf2e48b7836e61 25f2e3c8bd858371949d212d66e6f528 @@ -8569,8 +9550,12 @@ 25ff566b6c7c8f28aa419a50c23397db 2600d96295f18b2b43dc9dfccf13c449 2601c012ba82f65dd222671165d25595 +26026f7b28c95efe33a34576b4daa814 2604cf36748f131c5ccc2a859e3b5f69 260943a6b16509e20e39a2e59fc2a311 +2609b3bffb69d789f1804aaf5fc3625b +260b137532694cd8a9a87074ddf31ca5 +260d4da49476b8edf04d8793f05febd6 260d897dc22372751cccf94e15185c0c 26107ba7f6b319322e12591d4f26d4b0 2610f4396f407cc434802f0a3d98c28b @@ -8578,15 +9563,19 @@ 261592c552958c2175d589fffb998681 2615f035989060746adde494dea956b2 26169ffba3b71a4c39caee0e4eeb84b4 +261a3b3d48286e58c9ffc711fb17a170 261ae98f2de55f614ad05ef15d2f04e4 261f46985829e737843c6fbec2534fe4 2621218aac0f5d5be5c633b695c9ccdb 2622d4025b9488788d3a1e8255e67e4d +26230f3794300f509abd6979085cf583 2624e5fe501a3ffb093bd15471c928c7 +26264d7c14695abcf3599ce2a55acc7a 26293c49857bc1276ce908738487a0d4 262b14ae12214bc4ff5f7794c1a806c6 262b6a5b98680b2f1fcdf47e184e5b53 262bb7a5f5e7720cc20aa21af7e422b1 +262c564a5d219abc86e96d4beab7b592 262cae3fd2845956882a0d815d73bd70 262ce0488c0d19e49aedbf13d209f015 262dd50d0752f1232e50dfca6da0a949 @@ -8608,14 +9597,18 @@ 263837da4269c4e9b0d83c10d8d55db8 263ba85e59306fd571712007a75346f6 263f4efa9ef3a4e83fa4cdee721d21cf +263fa26dbff4bd4c1b33686c7c3442b0 264001400ec2643cd03cbf138444da04 2641fc189a422f187cfd2a6aa19343b2 2642bc9a41329d34a7e8c4dc2ff79524 26439b8664c23191894b71d1419e4f38 264456c4c0ba9846f54e044dac221b46 +264727cd8feba135809cba22b6818d3f 264770446506291426797cadbf2e6bce +2647fd1a633e854500cff80ef5296e17 26483bf864198cdd5fa5153c15a1880e 2648e40c4e91b3f28625646912a515b1 +264a7b40e7c469afbedbd662d4c502cc 264abc5264251f17613bab1c69b3c9ba 264ac22dbfb9e8a7a3a09042db588ece 264cc9e9d0c78f89907c641e4ffca7f2 @@ -8627,6 +9620,7 @@ 2651453c24b42b645de817a05f48824c 2652ec1ac411a37034bf015235a421b6 2653651bcc2c8c49d8a754a11861c6c7 +2655014ee45ad0915408f8769db2721e 2655aff5fc2ba42467933c7533ffc7f0 2655f16ce76a6870a47a7b8bc77e8fb3 2655f6ea41d396768cf0c02f43abc233 @@ -8636,8 +9630,11 @@ 26581b8647231e3e3033de37b68516ab 265912cd60af47b68b32af3f23016e31 2659431f9edcc9eef4e91f87e050b382 +26596382d54474bf6a400a4a545d5905 265a3408eab195393f0a9698b798003d 265a3956d2f343997cabe3895eaafcb3 +265cd106d6912ff18674d9feef6ecf1a +265e060b60f32d1730c7870ccc3e9402 265ee3126e7ed3ad7416d8fae7b09a12 265ffa505a7b62419ae811f4a35a92dd 2661811c5fc3d0f84a2d2335e90f4be5 @@ -8651,7 +9648,9 @@ 26691294c9672056234895cb29fb7b88 26692bea5ade0d84570e1838ae993dfa 266b782bacc2b87f7cd864c1b86cdf89 +266c68b8bf25a684b85a76a06fa05a35 266ce4d785ce105124780ec4f99998c1 +266e0f7953462fd1f44e825654d4769a 26719fcd82d8b29f2e64736504d9df63 2673d7bff5ae00099df3204fed72c1c1 2673fefcd9ac6d190d97f2d1f11fe3fe @@ -8660,6 +9659,7 @@ 2675ae9470fe7cbe2aba675a6fcac86f 26764e6b14ec4787fcffb43b4bbd9b5a 26767256e23b96a62e83274503b3b0e7 +2678d3d3d9c3cfdf70c1c27d9789c5f7 2679b0c03597ac280fcc788161166d9e 267ac6866aee57d53ef1375d59401e7f 267cae96a925465c13958f46f95a0481 @@ -8669,17 +9669,20 @@ 2682dda97ab9399532881925b2767230 2682f0738a2a391b09646d9b6408dffa 268315ad5611dd90608b12e1665831cb +26832f4e2ade853f9c231f4913cb5006 268593f05a20bf1b63deea7c76fc1756 2685ea02bdb4ac0bf64c335431094a93 2686609627eadfe55c9ad243d9f2ea7a 26877848be535edfe4e57fad2ccaf961 2688df3099ba4adc43950c1e36bc9ec6 268938b6e69ead5d4280bc90fe227312 +268a64f25a7b55b3dffb155c451d2c90 268c0b8c9d87d718e91065a69f8b4911 268c204c713659f67cc3a3adaabeda8d 268c3eeec2d6f8ac045ec48fb7ea3b7b 268d1339477f2b4de6d8728438a6487c 268d4160f02cc9b08598e5626459d4a7 +268debe73552a7188d13d6369342b7c5 268eb0345924a662bdae7da3bd604386 268efe84eea2417341f00f040cd1d4d8 268fce392976505b67f65cb72ae77cac @@ -8696,10 +9699,12 @@ 269fb398a9d9b28c21977ea36c756b72 26a271fd0150db3cce8113f160a8eba0 26a2e1ad3516387274a4af8b300de0c4 +26a387442b29c25640a5d69f3173a939 26a4613f4c517abdd76652bb250b84ed 26a6aa310f6ef43733ee864fcab36bfa 26a75264503ad94764d5b84ac12175ad 26a8b09b10f0ac1f150e11ac8bcbe808 +26a8c38d3738414b811da1d1df6aaf50 26aa49aaca89b6bd4532cfaca4b98437 26aa862a01d64037ed6df819bd2396ba 26ac4fe64c0073e14f2b900b3dbdcbca @@ -8712,6 +9717,7 @@ 26b3e50feed774c45927fdcc82b8ef15 26b44d8be07fecd13165efca1b8c8ec5 26b5235a1a08165c0e8d3a0d2fb1fb9e +26b5620b741419a2c6f47d7e3b65311f 26b84a2b94074c066d100b8fee7a023d 26b8bdcaa2cdaebf8f2faee5a63b79f4 26baea1c3d5f0584d1154e175e38d754 @@ -8720,6 +9726,7 @@ 26bea74092fb0200907d81436ddddf4e 26bfc6416e8596bdf502056cfe842c2f 26c1d1076567e2e33241d2740527671d +26c1ef339b2a25cdf7e081f8c443cece 26c2a3bae5f215140bdfbb0d7d94377a 26c42a7f05756014fca8f51835f85ecc 26c630dfe99b175710e1d13a611bbebe @@ -8731,14 +9738,19 @@ 26c96a06b60681752fc3692807607e79 26c99bd30dc6075e908217fc649ab067 26ccf38f3097806f761247fc658c6d67 +26cecbeb637a67014d354c4865f0d886 +26d05a2714ec4b8276fb8262f1f23a09 26d0ad3d2be914c25472152f9404bf93 +26d0ad7cc05d6c05de9fbaa5fa153dd0 26d0cbaef0a902ab4ac7c52be302b227 26d12b44fd97f44cf597116729b18ae8 +26d131d97f91a2d2a6bc43d88e10933d 26d32bf07bdec2d63c9a905bc12f702e 26d3cc420e3c294f2182dd3061722fb3 26d55ef9a2eb42ae9da7cdf7a2008db1 26d62f9cc119615d6d73a6108bac1670 26d9db2be9c08dbd0cd83d09057d58ab +26da8e132c4899d8a3b72b4e4709df63 26dc6c0ab36f8ee64b1f4b2adccbd1d9 26dd2b2568b1f646a48fc58bfec096b6 26dd7dc1fe14cfc29ea1b29534206690 @@ -8749,10 +9761,12 @@ 26e33b964900f3450585de422539ae70 26e3c08095f9cc6f8d46d55ccdf3cd8d 26e4247bb18d242bf0ee256b1b3fa7e5 +26e586b6956fa62655abf11dbfea60a7 26e6c47b0fa1e9ee86dc149f91634e85 26e7c888ed87a301ae545b722f47617b 26e98276419ba68c74f1a36ae7b45553 26ead34c0d59b48f97cc0be62e2b888a +26eafcd7030af579d3c4ce5f39cbe81f 26ec190fb852381a85906a61e6a0ad28 26ed8134b19e2bffbb4e550b582e5489 26ee5963aa9a1cf857bc54c14643805e @@ -8762,31 +9776,43 @@ 26f4d702bdf83468e6c599676863312b 26f6a8602ec1b249d7209b086ba7284f 26f73c875dadebc9f4b24c8e6a3b4cad +26f7d398a5f089140e92bbce05d2c8ae +26f7ee6eaea820cdbe4634349f610dbd 26f82bb1c9a0b6d88c30f7d8bf746900 26f8327c8acc5fcd1802fa5eee261d67 +26f8ecb6ffc3c1de8033747a68ee1ae4 26fc197dd46bf8c2203c72ad220476ce 26fc4110599d9a078a87c3715c28e34a 26fd7bc98380d1f6284bb8365f6e6161 26febdd1b1865f04a194e4f045deec1b 27011e97e142a763e7230ef50b9245f5 27044fb8f6b104bd363f737e3740764e +27046a23bbfb67fdb65ff26c5b7add42 2705744d12738fe0aebe9895a6c3379f 2706b7693d728e893cd742e6c5455eec 2706d9bbd6832367cf3e5834093ae917 270b257dd4ca3e62b0309b3a6a43212d +270d0a0db0b49b220323a8ffca251ae2 270f078170288700a5f7e5d5d566af83 +270f2c6c3cd318f2a2a91dfa8a427088 270f671bce573f7c0b888b058ad1a043 +2710d2cd6b188482f934a70f714c05cf 27112aa460029708dd76828bbd61dc49 271237c6f226e319ff5af783293292ff 2712657c73761f47bbf8f02a18a43b38 +2713b83565f5770302c756db81daeb7a 2715b7ca7352ce1b3af0b0a5b72d0de1 +2716d3c31cd5c1d57270cef26b688fb9 2716eb0c6e3ad0a60057f00463d9ae70 +2716f8c4067e0c943b73446ab31f0fa0 271729da0936a9162c5470060ca7ccf7 271a79ac295b93ef5dd5791e5a625616 271ad98f6c2796fb4e398d711bf6af9f 271b4aa77f6c8215eb62946f69a184dc 271b81ddd186be40072cd540fc14d9bd 271d49b168e3d02a55ef2d97bcc78523 +271e67656cd081c39ec2f00720c16ed8 +271e7d7a1087dcfdbd728b5c2c3828ca 271f7da74838dfac3ad02d3d862691b7 2720acd23bb67537dde491280ccfdd8d 27213fff3c1ae4b5d839dd8ca129903c @@ -8797,6 +9823,7 @@ 2724e29967f0e3fb0e21bd25d312f9bc 27250db85a27ddbea3e93818413eb7e7 2725bd217181225feb07eee4e4193573 +27262e6aaf3908989117caa9ede8f0cd 27266ce16c4fb1ed0be76417f7b878c0 2727f1ca3a617794aae4a969d4605357 2727fa5c31ea69363175b93e4c845c6d @@ -8809,6 +9836,7 @@ 272adcc6daa026bc675c31a25be71649 272b7408227edd48281544bde5ee926c 272bf9fb980fb3046328e70b51f8fe69 +272dc417b62949e400242eb93ca18f23 272e573df0e5bae8f2f040c42e56f536 272e9ad93812556d6fa5909de5784c3f 272ffcbbfd7aa30a666db0f029778173 @@ -8819,6 +9847,7 @@ 2735ae92f039ed00de6921b5d73ea02b 273855264e1105143cf7e3c2d40e3a71 27388b8f989b42bca0f6c555db3cbc45 +2738eb80ad7a3b1dbcb96b965eab82db 2739cda8159df5cec86c1dffb6e75651 273b2a858151b4a9c238ab092e2562ac 273b4c71b29f266c8a6419fcc0673d6b @@ -8834,14 +9863,19 @@ 2748ea5059a311850f97a201ed3ddb3d 27495cbfce9021e60a436173f2f70201 274d7ec4d7a320bc3ab7ff1882bec2a7 +274e066a661af4ed849c45347b81ad06 274e690f200bbe6062b0918cd5d55c9d 274f1362500245a2f08698a195733475 +274f1f17b8cdefb06d1e3fa2003775f1 274ff2f8363b7d695aa0cc4be4d2c56a 275041f1c73d02328d30da0184e5b9ad 2750a70f7b54f95670f1335a6db4a9b7 2754fce9efb5bec83c28fdb84301254f 275552c54f1e5a8c6d9e9d877554d77d +27555c984cede96dbcffe35cbf933bc3 2755c9d6faf710845c30830229eff800 +2755e8608c7a961c8cabcffe9dca51d8 +2758e042708700a8b90a94ae161f4e14 275a28782a9b3d88868c8129d9ee9c05 275a75d30e26645810a40f4fbc0b5c6a 275aaff213496338e9dd19e538308a04 @@ -8852,11 +9886,14 @@ 275da378cbb076b11f50c0328dc030f1 275e3eaf51d8a3a22fdd107bdb961ae0 275ea105519ebf9247e93d42b54a5ddc +275ffb704133a5de9dc14156e34fa963 2763dc72c2ebe3647949aa76440ed02f 276548c7b89fb2feebec025dc1ab6a33 27656d4aaa836f5f61f0ffd1929f1d63 2766179df7fc0095ecd9b6299ead2927 276644f3049acb63249762b0e6996f10 +2767ba2e8e2086f938ca3101c1796c82 +276b2bc5ec729750c873fae089cd53a1 276b5208a9593db4e5ebb5fe6fe09473 276c20aad6ae6f53e29922ca9ab5d02c 277044dd24abda9700c4ffcc3de102c6 @@ -8864,6 +9901,7 @@ 2771d3b1bc3f32604fcd4c2f803f9e6e 2773f44a585960b4e0a3f646e56cacc1 27745a321954192a1c9c01254c7c8b6e +2774c9091404b7b822f8b69474a2128e 2776439b2ce5685d569b6c428c71a83b 27769c36e732784e20a9a429bbee4c62 2776fb9d88cfbcc21cb93eb282f7d4ac @@ -8885,25 +9923,32 @@ 2781440269da78650ade199290f057c8 2782066589f11c5b6cdb8f983650d701 2782161036cc9cbd04dfd3f74e193a47 +27832f5bc68cbcb7f43829a92b3f5a97 278391d2b52ca4d4372b3f5cfc559c78 2783d119260719bbafc1de37df0106ff 2785e38b63843e1fa36c2f379fc7dbdc 27864d094d39cc6778574c881000f98b 2787d59471157c1fbb858461d5cefc8a 27892033e4b8b4cfd3b1f4d2ec4fb948 +278a3d69c25767988480a57aabf12695 278e460e73f1d9fc9422780eb5ac50c2 +278ec915ee355940ae48b71391d8a26f 278f7168870b91fe883e31ba2e12f80f 27901a8582d1c65ad5243af396db11ba 2790c3bbb5d4a35df9557fa1c31f204c 2791a12e6cccc055f22fe825c31edcdc 27941086b5eddd2e24598971e52fa6b8 2794511a8d1ff1b3f8708e676889533b +2795ed5c5933e5b004a27964570bb1ad +2795f845d5b0ef1d03e597691f4da475 27962fea88523b22b5f991c152ec324d 279766c7bdec034a34cf0d3d6df0206f 2797c6489979bed5693de1f4789e9923 279a59827cc99c782b8bd740c6f618b0 +279ae8aa3de43995a5758db8c364046c 279bd598b22d7529e08b305c482cc043 279dbba3f48c40bfa58d356c3c89aea7 +279efa1f459ec95be7c307576bc4a968 27a18f94b88f1f9e8f3d9744a2038fae 27a1ea7d978dd7735c6c89cdfc0ccee4 27a247599ab82acadd1427bd3484bdf8 @@ -8922,12 +9967,15 @@ 27b15efca09ecf4e9ffb77d267e6b157 27b368bf175ca64d1955c8b0ddc7465e 27b4157c4777b40b2bb99674e0f176b4 +27b54675707d37d621793fc265a9d0cd +27b740433855544d94fc1fcc4829098e 27b7c73c7070b022660188b0bff63ca7 27b8a6e219693310030faf140d906783 27b9c6f682d21162984f560348f9885d 27ba03b13df589099c85126bfc796110 27baa8dc867ae7d9a50f7e319c90e5b3 27bb9aa57c0f3270ec217917a02eda70 +27bbc17cc307ec8acbed4b67fda117cc 27bc2e49999286c461e406c25075bf9a 27be2174f3d54a70a440ef44228d7034 27be87281c0cbe573cb50d8dd2e06392 @@ -8947,6 +9995,7 @@ 27ce3a2f87f5486cd05ce2003209a336 27cead000b46d8873e72c1837676ea78 27d02970e02e45c053d2226def105717 +27d0d4c46bafdd441e14a76aae62703e 27d12168e54e627e2a88d9a30f89f3a5 27d22c3a4d1c9bf6b6967f1fa534f672 27d2716993b815ca0bdc2b4439c09942 @@ -8961,6 +10010,7 @@ 27e1571623eb2584e9decd03ffa7c687 27e17ff9016ceff8c92594ed77e99d8f 27e26bcad9ff9059ce751270e46dd59b +27e2c7b75170952cb3de7b0f05187402 27e35e26a10846923ba50389feb6d52f 27e391fb798c4b297035a7b98f6e5242 27e459c7966b24e5d764464b0537cf62 @@ -9006,12 +10056,15 @@ 2808fce6536a10c1627f22779addac64 280a1d8bd10bff4c295e53579139041b 280a6d53eebbc93ec7070bb905cefc58 +280b00ef5777e5a42d8f109bcde1385a +280dc53f93536e5d40cd916f732c4e50 280e65ac830e5c36df50ba1c45e85f10 280ebe759b530003d750b13db1b022cc 2810f4ed6228adda8c7f6b1ac8622c14 28112ae8e36843b3e15a703608ccc519 2811c25772a80af5dd856ef20a65f673 2813474b9ea7adc5605320c667bf4ae9 +281399edb1325786118548042a76e773 2814b0a38215a24193306e28eb953976 2815b9305245194a4ef04479ad84904d 2815c62ca44a9ce317ebeb9c48884e06 @@ -9022,6 +10075,7 @@ 281c02e356272618d42f8dbade17d581 28207023745d0232ff2d692b9209d74a 28208748cab71eecce8ce5aa2f6f8e2f +28214bda451e33593916bf3f2df25602 28219c3ee8661ccd951b80ab48acaa7f 2822cc3cdc03d998e929fe0b4333eb5f 2826e90fa6ebffb4ecb814f0501ae47a @@ -9049,14 +10103,17 @@ 283ded9349b57de1cb44d9350af8bfde 283e363958afafaf8ea155e752ee7d7c 283f7443b2e39cf872bcb41afada8e96 +284016eec95f67227d9f159319de93c4 28407e3f12e863e9ffbe54ed1e2119d8 284086bfdcf781d0a464e2ea7decb395 284086e3a1cd5148b2a3bdc803953997 284109405e62a3f9aaf6d3b816fc0038 2844e31409c734fb83d502723cad6d43 +2845c5fd55a7f73a4e60d071c9c657ef 284623dd0474891fee5ec06a39c7657b 2846292091d75bb9d01c5425dd307e0e 284669b3812aabcd48b865c29ea6a5c5 +28483c86475dd61d14ab0f4cf12fed46 28487001b679196b6578cf7df2028548 284b5a83a122502cb9a5bd1740c28f65 284c7384f5316ffb1dfe0d1d1ce5b020 @@ -9066,17 +10123,20 @@ 284e5b874b76f37754302dc9b6dcf709 284e814c0c687e74da237fef5e807f58 284ed0ad7d5b758c3e5ddeefc89871c8 +2850bb6c3b023a95983d1d1aeceff17b 285344174bb8c7174a8d5477e23cfec5 2853e8dff5ccae04f07a97f3d7ad7250 28542bab39d0850705d40c69d63c30a4 285442c9138735e439ab4ccd6a730357 2858517c22ebc97ef617cd34cc395186 28594d96a7e3805d7ae54ac85704dfa0 +2859736769827c5f003c9f1c67100d5d 285b148ac5f5c66ebda9631dd476fa47 285bded72eeace977ca77c0cf878a437 285c16ccdb48dcf9aae9f766a8434610 285c2cdbb8f7549e2554a4d75b80a57d 285c2f64a6a6613e01a1278f145b1be4 +285dd51383c5e2046e2df7e48cb77dc8 285deb88265440d335072c51daa2afef 285e03b0f5ea523912118b1e70bb6913 285e417317dddece917b2a3690c86d8c @@ -9088,11 +10148,16 @@ 28642291fedf80e854801f3328ff72e1 2865c31796b964528fb3253c135a015e 286771e88711e66eb4f801c50f3d85f2 +28677ddbc5fe556ea2af58dfae088c09 286a57cebf40f39f75ba950bcd2ec2b7 +286ccbea5c034b048302274f0cc53905 286d08892e090e226e375d45039bdbf2 286f60a788a6c8b4b632b703c1645217 286f6449a778904b79d4d81c0ae8118e 286fa9c948af93f577f7ba13898fd322 +28706f7dbbd35eb40a2dee026e76202f +2870ae62a2483c7e19e45240b6683c86 +2870ccaf115a784bfa48b68ab21b104b 28716bd82dca139ebc17ee388f029106 28739f591cb44c3f78b4a7adc2081bb9 2873a4ae02736a148cbaeb3c47ca35f0 @@ -9108,9 +10173,12 @@ 287b9d67edc90dc7279c6d0311328d64 287c2fc0df8a468cd28c23e6c4e9fde6 287cc9730a66414f01b8a45bb206c67d +287e6ceace5821d2ad8adc7aff6d22a2 287f5940146f369bcfb149c266233f4b 287f6a8570d191610a1404c8d478fab6 +288012e1d58c676f6d23860a7f348d29 288023ec4109a2a18dcd53eee7a5ec78 +2880d2dec92d5ed7c8cbb21a842dad2c 2880e8679b26c83c34d446905522c0d3 2880fb1d55856be6d28840b56a0c00e5 2881a2fb343bd947faa0fda4288219cd @@ -9122,6 +10190,7 @@ 288a6770b5decdd981b1cac1f4567aac 288b231fb67ca71bacc1b9610e80a090 288ccc9b3ff7e7edc6abbf5392e6841b +288ce09fca7286b0bc902116b42798bb 288d8400d5f457124d980373ffb533f7 288daf9a6bc30ebfb55de1de07575cdd 288deec2e55ea5e1f40a40b4b28ce4de @@ -9141,12 +10210,17 @@ 289b591ccdb085a5953285590cd31dcb 289de0acf29e418a6262a17799f87670 289df6e2982f85710c5f509900bc9789 +289e1507839527ccddaeb95f87c62e10 +289e64f682e06c7bedbb5e4d46f5f2e5 289f18321d8ba6f54b82d0edcfbcbe6d 28a0378be24361841ee30edcd46ea5f8 +28a1bb3303511f49ef626a24ca42a3b5 28a4e294edaa4a6a3e2536b020675898 28a6476abc03274ba896c985865557c1 28a6557739cfbcc8a91ea99555f09ffb +28a83276c779e5d6e95d5d4f31aea1e2 28a8529cad3a28c26ec20f9d8acbf2f9 +28a9cb0048de0038d43005492581d863 28aa13e75dc64ca642def6137d2dac1e 28aa290c962082e7f9035c29365870e4 28aada080899f573d3e82ccffd507ea1 @@ -9171,29 +10245,36 @@ 28c53f9b57167e1092b450e01f8ff374 28c57f240077392db6f43d396f4463d9 28c5d53c672fe2b39facc191508b829f +28c71ac5828319242f84a876d9478c95 28c7d6c038aba3f84dfc8e1fdeb6784b 28c8374cf74144f7a319572ad037c8c6 28c9b83c98c200a1b1a73a86ceab067e 28c9ea493c7d79aac77e94a15c757579 28ca0db065a93e2c76175786a9d3c310 +28cc2c49157628052f23ee208407a532 28ce4ed5c607040beef52b33d4563fe8 28cf49faa0f105f339e3f7a6b99c8247 +28d0036a33883acebb30c784c0f40b9c 28d0ae4efe1be23960ad85d2d25034e9 28d0c46a44600e65b96caf90d9343ed2 28d1c1dd48206cfa3728ef025a4d51b1 28d610caef84bec33a19c864b4b14bf9 28d79b60fb216c681e608d7a2966dba7 +28d87adcd769783c6c5da55411502a6e 28d93c57421e2bd6d1e001884899bb9f 28d945934fa6189c357312678c6ddbe2 +28d993bf4ca7740d0de81ac944f7a6da 28db0e74988f18c924d642c8f217fbfc 28dc2c7eef20fd993cf6f9d626def43c 28dcccf6f8c81f6bb12287e275102052 28dd059cf0127bc7c7a71e4321172be4 28df43feef1ab0aac1bfe75731411c35 28e162dcb6101a8d51e91a56a14ce21f +28e17088fde3dd1d00f0ba208e7b4797 28e1d834e441875ef520e1ff147a7b24 28e210ae4101e6dd931a8d7909ced98f 28e38af2f154332cac7bb1f06c2a3648 +28e3a32b505dff3420decc88103601ed 28e497b26ee0785a9704cad3a5401af2 28e5f528d43a4f34900dded9fd492be4 28e850fe8715e1233f037d2736ecaf53 @@ -9221,6 +10302,7 @@ 28fcba8352ddbe081f9ce5b50a9bf62f 28fcda09295b406069e8e35ec37e89c4 28ff2d8a1919a8ae5d10069e6c2d6716 +290015fd7e4906fe327dfa03c136c615 2901b701a1510e7267c59db34031437f 29029dd0a5859a456f18c122a8028ae0 2902c0c097c14eaf8a6846414e98a863 @@ -9243,6 +10325,7 @@ 29112fc72b590e18313a9d770aca4061 29114c861e2c6c1cb3690527f540da53 2913409ed564bd779e72af1e63f77aa3 +291386b35d825a9036dad6c92ac9515a 2915a0eaa323a230d670a9a2c1e7d131 2917dd52e273a4f106275e720b084f83 2917f9b96dae975d3c4e3701a9ce8512 @@ -9251,6 +10334,7 @@ 291928cef8e53a31aadecbf5c5abf677 291cb2b58f2d74a0c23f5a9c6bbd97f5 291ec8ebe7fbd342df2012ab75167e6f +2922b92a0c71693ada663fc1a8ccb86a 2922cfc7cff77d97f6965ad1877590b7 2922fcd00aaa2399a6905feb057fb8dc 2924547071173437701522d0ca470d2b @@ -9266,6 +10350,7 @@ 2931a7f0e9182b56706bcb0c14a74f61 293266e3e71bb8f104c4ab1f006f4a9e 2932dea4fc0afb6389fdc295e1ae6573 +293630998a99e28402c9419b10581ec5 29389e033432d708997c63d4b1b16949 29398a74c97780a2de31f2d892e52ebc 293a59f01125d818adf997fce7bc7a4a @@ -9303,17 +10388,20 @@ 295498ac12e8875de37997f48f4ea9d8 2954ace1bfce488066b6ce63967a2d85 2956b6ecdbd9c2974cf6a2d644889958 +295761092619b049f986d70db1c63115 295761e29a79bc18b89bc36d7e8f9987 29578daf2c202f91ff411c6af4b65547 2959359a9c0be10b9126037045bbc4b2 2959f06f3cebdec14ea2c5a88f09ecc4 295c7215ff97e251c69dac10a7a3326f +295c9b2871a2503a51d26bb95ba7940b 295cd399f55e993e3e82a81cfa50555b 295e260360b603f942f6352929351950 295efb952844a99362908befcd2bf567 295f20a5b873cbb08ff4c4af51dc7ee0 295f51115b58835843fc16b4d34cb413 2960e7e5806d9033cf966613e4ddc0db +296211217f07bc778390b76e24b0de50 29647c60cbc5db6ccb44b6c0db3c7aa6 29649be138f1cde57129fe66145d7ab7 2964b08cd3757dd9800955bc2b28d3ae @@ -9322,12 +10410,16 @@ 296622bf267de84346d7d675777322d4 2966ac1205dbed991ee29c74bb7ff804 2966c0f7e3acd67849da85779d1736ea +29688135f5eb7adb761badbf4448cc81 296a54f67c4f469e0f81dbe2cdc79230 296c18d84a7e4ab07c2395d467340bdd 296c785c560924f13a657aa78b18b533 296cad8868a1a601a498377b71334fe9 296d778ba203eef08825bec7b729b57c +296f2201fa7e7533c30c0b719083df60 29720832ba0d2a099f762803bd87e21e +2972419c3e3208609ce6c0ab2c0d5262 +297260c0b9265a50a53e37f6caacb8b0 2972a9602a45b25670936f15228f5db6 297315bc867760fb0f8542a9c1e69515 29731eb3e7b3418f5195b7fbb90420cd @@ -9340,6 +10432,7 @@ 29797223ba337cc0a19160135531c7c5 297a5cd892836e02e02e75973e63ba0b 297c2cc9c83b182a3425978f43b395a8 +297e2b4864568eab9cca155fad261a77 297e2e3d25789a03e48f4914dabf1578 297eac0618e4b29ae6081a286b33ee2b 297f36f4ec715021b94eca8445f03366 @@ -9349,6 +10442,7 @@ 2981b24a8ed5ccad8e5b77aba148a65f 29826a980808e2a6ac992f6e3ed8a0ce 298333bf0802fdbcff07cece94ff7ad4 +2983e2fdb8dfed6fe2ab45bdaa081da3 2984bd4cfc94e6bb3682d111a67dc74a 2984d2d255a5e3a23ebe3755f77b7427 29870d8763c0c19b3a7325a69d873021 @@ -9364,15 +10458,19 @@ 2992f639ca33b74fa7b1704a8baf4e8c 2993d7896c87fce65dc63cce52813bbf 2993ee29e7594a37201a56c234f966ff +2997342106ab9af0fe18c4e7582df4ed 2998160594a163e2bd614384d4f54b45 29986344fcf2164ef29a9bada70b9364 29989eb215507f0690da3f0f4b640247 29990ef9c243f83111b9bfb42a3d002a +2999d74d45a6de201bf614cbb46ccb98 299a907161079107fce333ffc7111612 299ab457df85daadb4efd4b00d89f368 299c59f7365dd487e276bd1a3475ec3e 299ee49ed427105690627bb58bb3aff5 +29a058bd16def5abb759fea499d7dcb7 29a0c44e6ee802317f06db3a52b4dee9 +29a0fb9aed7d50987bb5c1b477fddbeb 29a3cf3b1083ca97f2d84c3f19c974d9 29a4415e142239c84d255af1c9609090 29a5b31c71e0968d08e3a0bb05fe1c7f @@ -9395,6 +10493,7 @@ 29b4bf02a10dd6b1a497075b4c9f66f0 29b6e262501fc189e9267d8826775dd3 29ba39ae3c9a580b79d22db8b5164c84 +29ba971628eb4b6128d90c9d2b9a8eb6 29bb9c24b68816c4d22a37ce85807651 29bde50494a871726b090b7c68d9a5f3 29beec9dcc129aaf3b0bc1f1e177a92f @@ -9403,6 +10502,7 @@ 29c14698398d9b4c9b762b45d75457d8 29c180f6134f915643462ab5b3ed709d 29c3742a4e44a6bbcd6a3cd425b312bf +29c45669799be1cf8f6d57c74a4238ed 29c64f0fbb326697217bcd04dea5938b 29c70052d77486c65666755238a14668 29c76624bc7c285acbfb69431c6d39f1 @@ -9421,6 +10521,7 @@ 29db80007fd9a7ee5f288dac0f4b1d91 29de000170d2b1775c8898ff9aa708d8 29de0648b250c2f6931eeeef054c1648 +29dfa144bce82bbe29308ead9304d2bb 29dfa2f05d397f225883c48c4d1d3b10 29e1e12f1c387186a654cfdba5d5364e 29e1e3aca2b57a709512192540470f90 @@ -9451,12 +10552,14 @@ 29f50143a51769f224e9edb7c601a696 29f71bfa78001c4c1b76cb4a2baa7e0d 29f7f5fccb153f75762d30157d7b2b6e +29fbb2c55bbad18e08e9a628897a69ee 29fd6639ca9813cd680da5b6a9ed009f 29fea0396096069a878fcab69b5005f4 29feb9eb9934d6872b881879334458f3 29ff336611641d962b5f1f6ad5254080 29ffcb6a42a3f388546c9449cdebb90d 29ffed1d40c72526288351b5011b5bb3 +2a004fb688236bdd0a4b8178a38cf9d2 2a00dfb931040f6ad7edbe7a3ac4dd14 2a023056e0890f785930bb1de6e775b4 2a0377d80046352abb8a042b2a9659ed @@ -9469,14 +10572,17 @@ 2a09d36bdbd2756dc96072a0577b6436 2a0a032f1566deeb4c7773b6584dd868 2a0ab9b36dc26e0028b6e5bc68a5384c +2a0d6e3bc5d822fd4498c08732f0c0c0 2a0e12bf96ee604361fa7bcc36fd8405 2a0e92bcc3f07cd1f68031fe8b21c4e1 2a0edc9305cc16b928b8a4af70606ece 2a11062da3ced2c0e4d9501510a7e343 +2a1136d4e8d34548df343845575358af 2a11bcd858e7354b672e1b8117809a4d 2a11e2f52c6af151bcc143bfde04ec75 2a14bbfa23b527d5549930417ad086cd 2a16994d5e6603a8b199c7720a95a4b6 +2a180e6202b0af5dd9a381f6a7b5774c 2a18647f685bdad622f27b388b86d0e9 2a186c43faf395a644d8d0183d86fc98 2a18eab9f0c7d3fec2b1f666d96d72df @@ -9485,11 +10591,13 @@ 2a232a5975bb6e22279d73c91b9b09a8 2a25bc118559b62a3473a9bc59b29c21 2a261181adf603a8a4f94caaf1f420fb +2a27503e4e7308583c833bad46c6e2ac 2a29193c25670fda9ec49f5b2915e50f 2a2a1300871101fb39c48d0f572f0d52 2a2ad2ca000851f07abf5823fbf327c4 2a2b575b047b286ea70c0afd0e9d2f8b 2a2babdba9204f4dc0e6057622181773 +2a2bd1a55035d1fbc5fbebc1cd4906ee 2a2d5190f4d626fcc8f3cfdf4a466f9c 2a2df60a2e8e36f9c2e8e8ca5e408c40 2a2e15c4b30562214c9a1458ba1446ac @@ -9517,11 +10625,15 @@ 2a3f23e6bf183acc06adfd1d5e5ef7b3 2a427edd918b2ee43b0f5719f835ab98 2a42cbdeb025adfda34839cf4aab7d69 +2a439f072e3fd913823159eae4914006 2a43bb53ec13ad72ab538e575517f110 2a4447b539f34138c635074614bdf01f 2a46834ec6dc96afafe4f7a975eee2a9 +2a4684d9aadae3ddfd16b40a0c6e11c9 2a477cf0924915a8ff317fcf76c682f9 +2a48d95a51bcc60de919b5314c16253a 2a491daec71a9b55951375cb189c4e63 +2a495f1503c76b8eb55717547ff373ed 2a49cb1aa1d411ce78d2b54e56c7c979 2a4a2fa6abd1fee5b1763397dd67dd78 2a4a63c56011d5414d177015907702a7 @@ -9531,6 +10643,7 @@ 2a4ca1f54dfc0b4e0fe8c1bfb1ca04c2 2a4d5ff5334180ae72bd976a47b885e1 2a502857defb06652a79366457971ced +2a50f4375e3e946110a39b18f119928a 2a533725980cc23c59a9858b191c6869 2a534fe5034af04690c2ab8abdfa86a3 2a54f34cb0eef998d0c6e3dc7086909b @@ -9540,12 +10653,16 @@ 2a5959d889fa42025caef742fe56d2d3 2a59d1a99d9359790e57347354450f47 2a5c7b67d4872369c6da3b0895fc9333 +2a5e96a11f68b29aef16044d15caedd7 2a5f254ef3887a654c8120b247352a59 2a5f4c9cb43226ba58053b0a5bad9e00 2a5f524da2cd3307f485b3d94706de67 2a614d76fc9b6cbdd681564b3cd99628 2a619d84c777b4f786c7e72e4b0f9179 +2a61b33a54a267ff89d4243d4e764f49 +2a62b85070c1121ed94b262c9d12299e 2a62c23f83e97b6a3b3edeca01e7512e +2a62e07d776e4dd97f396d643a4522b0 2a6305ac3a1de42a011e7b166257d8c8 2a6537113ebcce5bfecdf87172a17b70 2a664f9790b95b1b0755d7658f91a8e2 @@ -9557,6 +10674,7 @@ 2a6a8b26dc37aaab4b91e00cb7305afe 2a6c0645f09b0ee623408d71c1226086 2a6c8463ccc4fec7d6367aa264a6ea5d +2a6c87b44e89e8d16f041d0a8eafb375 2a6d8c1c3930c2e8173c8e1da9bb96bb 2a702e56685c0a1d6490dda690aa19dc 2a71acd114a6b371b101a86418b9adc7 @@ -9567,10 +10685,13 @@ 2a788faf2d6bdbd39652f3a619df8004 2a79cb7ddb6480950102fcea792076e5 2a7a31c230a2d6a8335571b5afc29f6b +2a7a4814731dd4004d2f5797511c62d6 +2a7a9bd46edaf6c4bfa43354c52a6af5 2a7c76d6d8852741e0fe87ff59757ea3 2a7c8f31607aee9b911181137d1f34aa 2a7e1914024ec656ec65bb5ef662ca6d 2a821bddc7636d69c4e3a8e14228c5be +2a83686d1cebc2825e618a2a2697264c 2a844275edaa17346a43818bb7f1a97e 2a8556f3ce2816c88469fabe6ee2e87a 2a858d0af4ebb2eed60b42a1dab809f1 @@ -9590,6 +10711,7 @@ 2a96ce99e35d367489cd25fdbed3daf6 2a97d0a1f6645fa75a86f90f7e6bde04 2a9800048d6606c7b8502db759d274d8 +2a9888cc110bb8da0cd8913f867b8fa6 2a992500276aa9a216325d1616ccdd8e 2a99afffc07c2afbc7ac9ffe18412de9 2a9aa5db1f2a23314dde1b8b17716d7a @@ -9608,6 +10730,7 @@ 2aab582089c5508071f5da0531c59356 2aac8d6f8d78a800efa51ec3490847d6 2aad92bd5bd3fc88b69da5283ec30d04 +2ab256e0469f1010dffff10723a12905 2ab265789b612b05301904721ca3616b 2ab3b924d87b91a23c168fdcbc9a6740 2ab45d0c004fecf600fe653be8f360a0 @@ -9615,6 +10738,7 @@ 2ab491ab71d0a3c7f9420c2cd9cce454 2ab533e28772cdf614dba84f92295e2b 2ab59abcd0cc6d951bfc157fd21685c5 +2ab6480811e0d3a3b27147377903c64a 2ab8cd06161395a217afbdcba6a3a007 2ab8cf7d8148c3d21c5868bd4e446e57 2ab9c951e1bcfb8af801af0d58bd5171 @@ -9632,6 +10756,9 @@ 2ac565834b3ae180baab4e855741781d 2ac566bd5c11ecebab4c5d3c2d7137e6 2ac59730f0190ae55d3190920309ca1d +2ac7f2d320aaea2d70da5b0f426587d0 +2acaefebd9b4e838035ca2dd12c5a97c +2acafc90ae678ff1bb4740376afe5d4a 2acb36366e8b5bd064ed4fd1c7048e17 2acc6d7cd821717487aa7534d80309aa 2accdd8cc39372ab6f447f005e82f617 @@ -9644,6 +10771,7 @@ 2ad1d36e6f83e601513c476c5023e6c4 2ad2a9feca6f045abfc5023c1300bf65 2ad496f05f2eda8e09a554aa4831ace2 +2ad5d23955e08257c8f2bf20077901a4 2ad604402da35c944734cd6a5cc7484d 2ad66171d913a813a92f7bad05768ae9 2ad6a17c6dc56278bb2ef4247851eb06 @@ -9673,6 +10801,7 @@ 2aead96252eb7d801d77e704cbfc6e8f 2aeb883847be54dca215fa8d3a684548 2aecaf2e7deb60374d72109dc309fc2d +2aedf27668717653a8a00319e340bfc9 2aee630050f4ac48334c576aeffd3139 2aeed25550ece65b93594b767f39b74c 2aef77109b09f5b6a18a1870ea0fd8d3 @@ -9680,6 +10809,7 @@ 2af11d05efef738c301be0fa86ab60fe 2af211b896f11e40fd40afbc52181c64 2af25a39e19edf54a4f97b548482b0fc +2af38c58a1f8ebeac4dd344b24fa165f 2af6dcfb7965f4c660de34438c845e5a 2af736a90187134b053a137b163df845 2af95e7e4d3aa60852212eb5d583a4be @@ -9699,6 +10829,7 @@ 2b05c40f4697644faf93430364025191 2b05d45053fe3aab6d692ea56d23171e 2b0636bea1569194a1b7bdd00f25b11c +2b067a3c37bd731159f4d5c6b32aa569 2b08d2c548f421fd60f1baa93cbbc76a 2b08f9c3a6521a66194e0d396237b3f7 2b09ed50f5da463ecdc6e8ee525fb614 @@ -9707,12 +10838,15 @@ 2b0e5418690d729461f00b6b5724d0f3 2b10374247e6ae850a86d5fff3fb8383 2b150b6f160a0ef91ad14f95e2f9ff35 +2b15a03e10aae8421c264598712aa7b8 2b17ee27f82b2b692dc08815b5a2de93 2b180f21697b65497f5eaee3055db265 2b1818a25ad2f77a1f57efa0356c4773 2b1879aa16d2cd72d53d8cb958e3f102 2b19e5f81345fc460d486e0ae45c4097 2b1d2eff472e783e55d11f1b1c78b55c +2b1ea46688cb909f7b23f8a82f9edd4f +2b1f1b3603e34b297798cb8608b3b3bd 2b1ff983758bd8460ae8b34a26b66b24 2b20ccfbca492a49625d760a3b78cfb3 2b22044a4f386e119790e8542664574d @@ -9723,10 +10857,12 @@ 2b285ea8bff8d119be2eaa1ddd9ebebc 2b29400c20fccd2054be9541e0986ab5 2b2b04e7780e553b55f9dc2bdd563379 +2b2bea5feb49fc4170cf6fe797872ed7 2b2c8234f46f0cb2400d4f564f8f639b 2b2f9b85b8604cd42ed0de2923a48ba3 2b309d13fc5519b9a57e3c61287ac981 2b31c659c6a609fe1c19584bc2ae191e +2b33596dffca4edcde02e99a135a8b8f 2b3369c2938f26d663798dd97e828bb3 2b3415e661630a1fbf89d71f9eb55af3 2b354b13a05d85bdc96cdc0ae4cbf5b6 @@ -9753,6 +10889,7 @@ 2b4705432991e4569c37330467f1bf9d 2b488d59d0399f20222faf35960f0b43 2b497fa3063055533027abf03f8c0081 +2b4a0a75f0c12cf6d3d961fef7416bbc 2b4a73d93369de726b907e9e5ea2ef0a 2b4a868293b22e77b632f8442f8c8640 2b4ad4bfc1e06759cd68d7d94b566bdb @@ -9772,13 +10909,16 @@ 2b5a07c18985da4f859e7f6dfec7043b 2b5ba6024f3cb6cf1e27685794e191de 2b5d549c4bbd17047a3ff7b8c807a8aa +2b5e6347df2d922195272842b6501dc1 2b602ea30d165c9b4c1caf10037a31a0 2b62270f7734fff4e7c678628415e50b +2b62612b42d8774c19edf9e93cef9b4b 2b63cfa6a24555923c6a05fc4f31546c 2b6471ba901e1b0fd3ffc877f0a48d53 2b64fac30037e64d105170016ee0974d 2b661524cad23973b2ce8fb769b204bf 2b6a1abe1b7d7910f431f7497dde14ec +2b6b1cffcc3db729e914b20a767611db 2b6b4d2b4944f145508283466419b0fb 2b6c04aa174074341e7010a82601cc33 2b6e37027c2bfa16f545f27af15e02f8 @@ -9798,16 +10938,19 @@ 2b7cc727a42eb2c701ac280c33685ff5 2b7d592842043643b78e9c54613b98bd 2b7f0afb1dfeedc2ce109a0269e9d7a6 +2b7f6b7d636da36a8ee71d8be81286e5 2b7fa08c36daedec362ec9e8599191be 2b807a655001f48c30749de84607cfdb 2b8426928861c8139e2a27d296147ee0 2b844d9fa118a5035bc4d18fcf7d65b6 2b8494481abbd7d8db61fed4b3943ea8 +2b84dfc3fd3a22eb2511592abb5a1d6b 2b8675c2e525423eb858f0f437d53cf1 2b8731a6747ed959dfdddf39fb4e62fa 2b8750099dd03aca6bae07545a5e9152 2b88507336a9ca4466114668fb891f53 2b88ac7996befebabeafe55af1b21516 +2b8942e754a1c220da2a6ecef56c7392 2b89a01c4582d5b5245cb55641cc36bb 2b8ca0e045a366b41ee7574a03d3496c 2b8d8b8e74f5244fa8783de41b7a1749 @@ -9816,6 +10959,7 @@ 2b904936313175bd9d503595e259ecb4 2b90eaeb60d841054f027ac7951eb8cb 2b90f8c03d7962bb9b5cc5ff369d0445 +2b915410728404a2a19bbc9c3cc3071e 2b917540a32ef67d36148857ea08ed33 2b91b8aa1d38405d948111f53e79fbe3 2b921bc5e4562df607fa956955d8de6d @@ -9835,12 +10979,15 @@ 2b9ad8d2b004abe6ce768084844a47ed 2b9b1e8d8137b2ef9230f248a0ee46ec 2b9b920d73092b83ca3112ea994dcfb0 +2b9c0e3067a1ceff688678c4c503b0e2 2b9e70cc118090e1a23e9fcf03eafda8 +2b9f1fea6d2269b84f0f92557e2fab68 2b9f37d878b2b817b317e026aedb009b 2ba0174f07c1e38eee5c0c0bc44e9cf2 2ba2ace008bdccc56262c236bc73d9be 2ba2dac14cbd28a02fbce180306a8b05 2ba3f29944125f5d970201547722ae58 +2ba4ff4280c7a5dc7ea965139fb8d11c 2ba50e468edd92b44e79779a195e178d 2ba51742177e3579eddb14152973d72e 2ba532be897b640811c8a2eecdb35519 @@ -9853,6 +11000,7 @@ 2bab20bc1e6680c569ca656f1090e9cf 2babe0d112a662c3db7951a2133e2966 2bac5c8f14a20656158d9640ee9092cf +2bad75bea86a25eb854615e172f7ab78 2bafbba911db6cb8d7bb46e133eba619 2bafe9669924898f8293de3188db146b 2bb0d73b50f5604d301e6812b3f62d23 @@ -9881,6 +11029,7 @@ 2bc494dfd1a98cd6fb58c1c6d0bf0ead 2bc5c9a533290539f4983fc55f050795 2bc9aff1f4e28907158e413856716afa +2bcd5c6e60936afa2f5fcdc6205c3d96 2bcdcc97de5b6747fb013d21f62cba77 2bcde3ac1602fe1e85795580bd0c82ec 2bce2735801171410c4775ab1f69ff26 @@ -9894,6 +11043,7 @@ 2bd7ee429f58731a637c649219a6e081 2bd8a5ba10cb02c2835713724dcb00cb 2bdc0aeee682b4d82414724ce7afa7e2 +2bdc294bd1c7e1d07cb0e9ced368d897 2bdcb7cab60f6fd9bbda4aa850cf5827 2bdd583edd457283aba326811bd1e53e 2be09c2e61b63aba07b5bea92c190d14 @@ -9939,6 +11089,8 @@ 2c04114af240dce49c0a8414fe633ebe 2c0415e73a311fb2a4196e7e7e6df69c 2c045667225f4b9116cf3b5dfd38f13e +2c05c0a82ab5c8f5006317959be42585 +2c06102798ea789005c1092de3449c5a 2c06507cc2cf050056d8a42df0b940d1 2c06781a11dd0a0d7d70e7da4d0e1c1f 2c06beb91bc067d3a4dd686ce19be197 @@ -9946,26 +11098,31 @@ 2c07d71ae0a6771c6c3469aeccfb50fd 2c093f7b5e25b0503161df9599d7c059 2c0be348a002e08125bbf6df72730a9e +2c0bfaa8e44ccdbea4d3daeed127bc91 2c0f461230aa9448d60806b450afda5a 2c0fb7fb3dce1e5f6d811f04b93b1136 2c108205dd7d80cb4350f4fc37b86168 2c11080b640c4bf022f919b5a7b8d7cd +2c11aa961f71c9dbee56ac47a82735ca 2c11b1aeabe0b99eadadcfb943fa5ff7 2c11eac512a1bb57659d45587d3e04a2 2c12ce9c3fac16613d5618bcaef462af 2c12e5780f5c68ddb36f4c2d244b81e4 2c14c7a7553f22884b9733de7cd6fa7f +2c157c21639175569dfda8293be79899 2c1931e66c4546d6f3900b099394c1ba 2c1b1e6eb30950cf8171e36101da9d8a 2c1b565043ba98542847fb051da3fe92 2c1be22be32e18d8c3656cf2e44f92d0 2c1beb65b541a94fd5d5981bdade52d7 2c1c6bf3c75b049a23f49c42a523ca97 +2c1c9d0a5631989bc6e46a2c3eef8521 2c1c9fd7e45e04aab69409c1ef9a8e30 2c2020ed277bc7f4b217b4fc16baa92c 2c2167621017f155dbf1fd0ac6eacf27 2c21d4957c420373cf1adc93226ff2d4 2c222145a68071f390e18b14960d7cd9 +2c2363544bf9d4c160d14ae16defa7e8 2c23789979724ed209507e5d60844b50 2c2657618e55cf31a6bad141576564bb 2c27050cb94fa733ca9b2830a2b269cd @@ -9978,9 +11135,11 @@ 2c317cbd838f6b6477b8412eb0e286b7 2c335e4b849da52d33d48d7ecce7cf8a 2c338f265d82d201242ec48d7996c340 +2c339be661555d3c1724ce0491becf1e 2c351aeacaa6b28e9f8aa4262e67f114 2c358495ae7dd1223f3cb53f97340e3f 2c35ab8eeb437b44e5d07e5d31052feb +2c369362796266e4bb4f807faad9e609 2c36cd501ff77a481ed4c5cbb8739733 2c36fbf64ac7ac0dc354259a31d3fb3d 2c3753c8b6731cacc7bda77a5de26220 @@ -10003,9 +11162,13 @@ 2c51844de09eb213ef01b592bd61186c 2c52010d87d05b58e9bb93dc7cb29349 2c556066b92e3022622e4e2ee38ede9e +2c5615366c103f115a983056151e4434 +2c5632237a3f4395456a4ec9712763cb 2c5645be6be34e8e7a6e118b3694d041 2c56cb26956bcd331cf3ed54f1194b10 +2c572e3aa3c707907e3b5940234c107f 2c590f8abe1e315c3d168a97ab6f4913 +2c5973902ceb546a10ad60f8da96e49c 2c599f5dc9414b81f54342c8d5f8de65 2c5b729a99a777255779cf70acfe713e 2c5d1b6f626cc762555a975b0ef9d22c @@ -10018,11 +11181,15 @@ 2c658170bf39ebd26ed3d5666d053f99 2c663d63e2e6ab8d16121c286cc7bc5c 2c67d429e3d6384c163147b4754ef671 +2c67d86204bbcd94d8cc20d852663ec4 2c681284d95385fad87e5ba589b114be 2c6b9ccce0b5ee8c8c3823e3e86995a3 2c6ce4653e886aee7c9a2364363f0c86 2c703d4827e31779c0bc7bfbc3ab63e9 +2c70e69c6524eb4828f474456028dfea 2c71d991ff4cf1e50ee3f20291624831 +2c77b99c1492be679f31a9c94cacce8c +2c784b1abf11a6eafe0b6e2355e09b38 2c78a6f8db5742a722e414757168cd17 2c792584138b4a56a3b3fd82842ea6f3 2c7b100e279950949c4b6f03dc70ce56 @@ -10053,31 +11220,37 @@ 2c92e80bd1e8f4cc9550f0c8479bdfbe 2c9434b1c03b1a4485b11c881f42fd52 2c94c84b6c3b34672a9136f945e40aec +2c961242d8c36e210c5d949ce984e098 2c96485228ef0f190683155b4dc3ccec 2c9649a4e27aa9fad81ead970aa494f9 2c978d490f196d6a5be542016bbf4ce3 2c97b3d70121d32507558b09e3de908f 2c9c7e70e8538764ceb4a1f60ea33461 2c9c7ec9a38f4f4095200a99c60b0bcc +2c9c908cf2efd9dce64d867b849fa7f1 2c9cc7cdb5c7a78f768d4b818c4a66e2 2c9cd9e6b9f4733194d7227d18aebce5 2c9d054317fdb277c7b1bcba6a73cb75 2c9d0fbaf446f64fda9cef3077d35417 2c9d86ead9c6c144db0c548833851113 +2c9d879a8ca5e1ea6e7fc938ce593265 2c9dc5afda0e0e644599ba2cfb70ee8e 2c9f1a16e8ed084c88f4066b8e62f3b1 2c9f95db3c7ba3c4e226ea84a8859cb8 2c9fd37bbb9762a2ffb7843b11ed27a6 2c9fea923dfbb4e98abbd242f8500c83 +2ca10cca0b03826b600c81fcbd8ee8a5 2ca1100d505984b86ed329fcc1d64980 2ca3d184874cf5e4e18df304cc1f2ad3 2ca44b4d6da8e52f0a2afe0f26f8ee51 2ca6d9882a4f5621b7616dd3ec91640c 2ca7ce7a09a2bb3fd15af33f459f7506 +2ca89b4094690733d504e7e8573233c1 2caaceb16fac5d9393c8659576740bac 2cabf425035a89bb69f9309f89bfe33a 2cac70b1c36cb807c8d3481c43420310 2cae0df600e3fd618ed2a51c3b1e99ab +2cae3d818cf5d86d9487191f6bf4d7b1 2caf5f722cd9a190ed46a8571b7d8bc9 2cb0a7626df3e725bd5440b64d29f4ce 2cb1a6e9e8b70fb2268826d3c8bc235d @@ -10099,8 +11272,10 @@ 2cc09bb4ef5fc8e1eb7019ff18d03467 2cc0f063d5a88161c8563315e399470a 2cc19a6366c2fe7ec62c2474f39b0b30 +2cc2bbab0bf494a9dc2dd488655ec06b 2cc49a5a854ebc6eb58319ee106b1f76 2cc57b9dd8f59fc5396e7178d9553ef3 +2cc5d3790607dbb5de018ea8c4f1da87 2cc823538f2e0cbb009d3e08a47d533f 2cc872a6a215dd2732d25beb0641ade8 2cc997cf408b5c0b494cdf3d86241e9a @@ -10108,9 +11283,11 @@ 2ccc625da3e05524d8ac0cd049b8e3f9 2cccfd7ff8fb69a4f33764c40660d52d 2ccdcdb65f4802127012b617ded4fd62 +2cce4fe693a35eae0507612605731c31 2cd0113a632bf81f13dfe8d07df5a6f1 2cd1227a8c0909e0a09fc3678a16a140 2cd3487e80f8f54abb96a51be0332809 +2cd5c63cd0bd035b4a34393ffa32744f 2cd62046e12872ca3f19cf0c171a173e 2cd69e65b5c0e579baa6240083093551 2cd732100172620a6a04ed5eaab0890a @@ -10120,15 +11297,19 @@ 2cdda487dff2fe0a4da377f24e0e03f0 2cde5616952432b872e37d2080590366 2cdf60ddcad3f30a744110a94c15a677 +2ce02892f41b4349fedccb3f5912415e 2ce0c0e8d4343b728f0139c667274f37 2ce2bd581dbfc455fca23984f8a30726 2ce44ac2d6dc83669befc811be67143b 2ce5d312ed7ae4f5ece0cc8c00bff774 +2ce84c12d0f679d508461d4b0288f3cf 2cea1caf1dfa52c408d4086dcfe6664e +2cebe9eba9fc10528720a5ae3eb02cb3 2cf17eba57606a8fc943795adbf80e8b 2cf1e8487d8b1511b0c1c6f79d2a18ee 2cf26c36aa5db9f018c360e86957e3d8 2cf31d0dee9196351a841461ea8925b6 +2cf327626b8325c752dd71ca8c7dc027 2cf391d92f9a0d7d5e14e30a4d07b0c8 2cf4228058538468c5394fd80f42f387 2cf4ec0bcf89fd0ea127db7b10c974f1 @@ -10156,12 +11337,15 @@ 2d0f509939626cd96441d760a49a0cf3 2d108cbe2c02960356bfc25049afd225 2d127f0e553f212986b3645d9fc638de +2d133aa56e67f175ada260bdff80cbe5 +2d139372f475c005964ac12e045870bc 2d13dda612efcb09d3521ed3084aabb3 2d1461fb0ef1c6ed495b4e8ee8d25b33 2d14ea19a2815550d410af7d30fc2cc9 2d14eebe65f5ee717630251561d171ba 2d18671a7f6bce71750cb4f47d009b07 2d19e09a5848c47819f8d9bad74bae38 +2d1cc5ea01fd8c51dbe7c21a2de5d8f4 2d1e4be57860a87c00d8bd755a8c14c1 2d1f769ded259229178b891b160e847c 2d1fbe352ad1e6fef98b13a306c0afb8 @@ -10173,6 +11357,7 @@ 2d243ca0e13ad35e6ee13aa8963c968a 2d248e34833eb84adf3b6f59ada3e02b 2d24ec1d204ed02a25d2aefd6b9e1777 +2d25c743f097d4b8ad3954206267488c 2d25c7fdbffc54006a6637d8aec7e1f9 2d2631e17aa89e444e28b5f7b8fd9584 2d268ef9c48e0f47b8df6fe42666cc43 @@ -10184,9 +11369,11 @@ 2d29af3a718e71589b9844a81ffd6570 2d2a911dc492a29118205a52d7699f70 2d2bc32870cd2cd8be3dc44ac14987c0 +2d2c1d061aefa28495aed09c49a5f64c 2d2d8c10123ff8a39d64f854f17f7f0d 2d2e05e09352f911df28eca9bcc8f46e 2d2e73078b61d00c0f7e282d6d741e76 +2d2eb0a2c21ad3935f272852d8580835 2d3006cc150e5a66f5015a5b9926484f 2d3447d33aaf8ff516233bf4891a6643 2d34be775971a79142728a1f70248745 @@ -10214,11 +11401,15 @@ 2d4af4c7664c516970b484d14fb9482f 2d4c5fd5f56e2fc795b3f77acf44e77c 2d4cd961daa357007e20a5dcd4d61023 +2d4ea4cf9791046573f64ba2729fe0d7 2d4ea919c3ae38422399b9bf52107b77 2d4fa03c72c285a083ab0148c13a5056 +2d5079b86faa3b21349612ba3fc5bd9c 2d5381817f599db816ec1e22d6ed9687 +2d53a742311a7ea43cfb39e818cb527c 2d54c98d06c931517900c4bdcc813a54 2d5508ad54959b041d8df6094833e973 +2d55a00f3a34b381295cb77f81837c80 2d5642855584c9d8d5397cb6af37c719 2d57c414517fbaeec6f60883fee5f21f 2d57c7fc1219eeaf8d3731cffd4c22fb @@ -10246,6 +11437,7 @@ 2d6c8de6b7cc362524cd10ff0cdc92f9 2d6d8436deb37fd89a0077452aeab389 2d6e182c8490ad0c0d48b584703525ce +2d71f8bd10d27b87ce971aaebf599373 2d722eb49e0808f934ad74fe82157ac8 2d73ae474b8bbd4bf178e9f652cf7ddc 2d74394e3e416d63d7e7cbcceaa73d28 @@ -10265,11 +11457,13 @@ 2d7fb7b0b7f12c9157a31fc2c2a57a7c 2d808561c772b205b05ed0b63f4f859c 2d81e6af689d2472e807638b4e78222f +2d823b265eeecf5fba43d9f9a1fa11a9 2d824cdef741ed2d60a1bbb5e1b2a47a 2d82e024d117002619be413be8e1f76e 2d836b04a8567bf84abb44e082693826 2d8406f55696a3aa49356fc0c6918229 2d853ab8e6aaa8e0c0857a82c5e81e1d +2d856cf0b264ba8973536604441cc440 2d85f2e5cc811cc23e6a5996d0839ca6 2d85f842594ae43bfb592cdc87f85fc2 2d8788a19712ced2a2bea8de69a8b234 @@ -10277,6 +11471,7 @@ 2d897141bf9e642d9791422d02545929 2d8a6a7375ee28ffa7e4fcbf2c9dde99 2d8c286ea323cdc9cc09f2b139606cf0 +2d8dc4b24acc389b68969c6aaf446b30 2d8e57cbc30543cbd1c7f2d287be198c 2d8fe3ee031a2399b400ab798e9bf5ed 2d90dd81b5d00df0469e2f1d2ef54d91 @@ -10288,16 +11483,20 @@ 2d9646409fcc725d5a0dfd3b2c4ff44b 2d982e00bdf3a7a6c3ad1a0135c270f7 2d98985dac1d0bfebc830f2529bfebd4 +2d99d967ed52abc0aacb710f0a8217fe 2d99dc2bbde21a839712e4209872ad5f 2d9aa50069b483848fe0d5aa71083817 +2d9b01aacade665f181d23112625ccb3 2d9b14aee751a00c12db5f5c8ca9b68d 2d9b5830e6bfc543577495d08d362576 2d9c7b238554c3d95da1de0a244b8123 2d9ddf60ac7abf311b072262ccc56132 +2d9e4d41acc6200a9adcaf57ddddc6e5 2d9e69941d4c666a4c8f481ca4fe4053 2da0c978b662a5682ad199a8fbf4a85a 2da2cf7d5cd03bb86f94c24f75925351 2da40c4993cb7628a4955a52d0b396e9 +2da535831823c325b8a409bf16edb73e 2da5cb0eff92d2bd17583246af03041c 2da5d1d13ce7c2c35b58603128e93507 2da7cf05ce5a76a9b75740fa896447b8 @@ -10306,15 +11505,18 @@ 2da8f723248d04ae6e73b9e6bee3c7c1 2da908f9ac33a5c80f55aa246367a23a 2dab445aad891a134900a010080712b0 +2dad7c4ac1708317872981f5630364d7 2dad9b98908a109e866ff69601d4a351 2daef594f1f8e35997946f4bdf6a8fc6 2db0878fdeb05b9878c351302528050e 2db10871f89cece0b12c0a1ff17bad04 +2db15c0c0462b1c996629bd8d076ff1e 2db4bcaabfe26352eb36c60c8f30aa81 2db51e460ad6c17f6f9722f3dbea7de9 2db67518caf882f9a99ef0ee2fc805a5 2db6ff60aad7a06445726efbb5152692 2db8644449cb18a03a1d966cf52f9a95 +2dba9a687d04862fb39c4a930ea5c393 2dbae6e0979e7335e7888c8fdf2b080c 2dbaf81577eb4e427d59a3280386c738 2dbb636c89e1b09165b5964987e4cb4d @@ -10354,6 +11556,7 @@ 2ddd41e627ec528cbc84295c55f3ba92 2ddeafa53dfdd319902b2879490736c0 2ddf5be79da0f6ef9797a7dc9db70fb4 +2ddfe9f69e1ae845a82ee7126a0ce098 2de0000f11e12499e271288974a56615 2de0328905a58b4fc16e77641458542c 2de0853efa57a02edd6aef83e8268771 @@ -10369,12 +11572,14 @@ 2de7bcb98a3d1b9c05a277af060b972f 2de885764991fea4f3ea19059268806a 2dea65a10b41f163a63b288b70d6e17f +2dea65f5adb66c28f810ba29baa31d44 2dea8f97fee93e93edd18e45e2280ad2 2deb5da12207fa4a3a39aa352fadf496 2debbf94a999c27b4b76f3336f2cc4a6 2dec4816708f7789c895ae801aae805b 2dec65afc1c61999e08fbff98db23b7b 2decd5e5cc20316d88d44446cbb0929f +2dedaf504837a284d8d41ff70a745564 2df0eb08b429c4f6dc5a1a23082a45b1 2df119899886870c0ad65898bcf47d4c 2df1e36bb9029d65c5d3771639246ea1 @@ -10386,6 +11591,7 @@ 2df74254d98c5cdcb7b12b6c11dff95a 2df7743ff8db41e3ea5b83e447cd6508 2df86fac264f39b32f39b2fb3084e06e +2df88c6fcbf3e6ebd0f025cc1ab735ac 2df90d27370d679463b48b411eb6d3a6 2df98e45efc53e564a5d45d112d1bba9 2dfa40f48e03f87c0cf7cde98f9d08dc @@ -10405,10 +11611,12 @@ 2e09197bebee860f3c201a59aae27c57 2e0a2ec7c805db7af8874f96011fca5e 2e0a7e5410debf7cff9a320340fcbf04 +2e0ac006b86bc43208b96d20df827aaf 2e0afa00261d875963d514f672ab4dde 2e0bad07995bf9c606e382d43a381c5d 2e0ce7114d9e9ddba278c85c14e74faa 2e0cfacd513771f09a280ec98cfcc201 +2e0e7c35e6c11944716cc538d01b357b 2e0f1567a2770cac7f50ad0ed2220440 2e110340b57dc177cc01b053e1164dd5 2e114aed45e6462bf56789a792426c22 @@ -10423,6 +11631,7 @@ 2e188c969d10e63c306be1b31078856d 2e18d1dd319bc5dd5bfd5d338d1d55b0 2e1b1cd7a1fe67a8cd98aa7daa2b0ccf +2e1b6b8a7b4f42420ef24de9913bbc7f 2e1c20277931e4fc68aab2b90872fec2 2e1d4781d2601bfdc51d183437a0f01a 2e2048c92a90c2c966a883ea9780652b @@ -10432,23 +11641,29 @@ 2e25710e409c483cbb34541f60abe1a6 2e2654c5530edf4939623fc1ac5b8e01 2e2682a014fd92272415209f5b68fb79 +2e26aec336d4edce9eab3ebe2cba2e5d 2e26e1e021e9bd78311e8aa1c38f66d7 2e273c0dd23f0d04cdeefa68e8023a91 2e27ab13841b7a945cbe7cf11e66af6c 2e27ca9a8fd0496e3d787baddbb826ef 2e28d010bd7e3f2355987c1eedc0149a +2e28ddb63f795b64b140a800fbe7f119 2e2994599f070420d066ae2fb72dffad +2e29afcb883de9010017045ab79de544 2e2a6623cb698f1e67f0ae24931aa130 2e2e7471e9022e0ea79aa71148ecc2d4 2e2ee618d5c071dbf1bca7ea6a63e762 2e3128a56b806bec1b90dc553de8e1ad 2e31e72c33afd84912b1eb9e2d583564 2e320c05aa03354190f494ab1eb2ad4e +2e34535cec679b43ba0485ec8c8139d1 2e34987595ac0ca5cd148a1f92b7f04b +2e34aa85e1574660e28d70d3149f53b3 2e3527733a74071bcfe3a789f2842285 2e36bf12b1ccd1fd0987d53ca1aba377 2e373f43aeac8990d38d265e61a498fa 2e3887849f159253d1e89d66667f9532 +2e38f2c2ec05d263046707db24279353 2e3a1c3b455a0cd9c784680206781a0e 2e3bf670aeed38a95af96ca49d49a552 2e3c5130cf94c097b51295dd0416983c @@ -10457,16 +11672,20 @@ 2e41d11e3c479e59c9fb4a5c668c2cf0 2e43adfc6b291a1fb75812f7ae182c08 2e4540c62da0c541a0c6cfacfe4fe33c +2e4633109ef7984dcc8526df56ef840e 2e47e20fb80ecda460b0d50568170e28 2e49b02b8ada4909e2108e935506bdc2 2e4a52320173bb5361fbb8b0047042d4 2e4ba54bc4ffc889824b0464aa0817df +2e4bb1ebe4448faf7b62df08bff858c4 +2e4bc7fbbfa88b8d88b17559ca7da9e4 2e4c670ea5771954cae5bbc113468823 2e4cb506cde919f7d8f6143333764d42 2e4cc638df49b3196aa5a627490788b5 2e4dab226b694c0bdbd0cd2baf827121 2e4e76ff6471721e6a5b885b074d9e4d 2e4ef5d57e867bd6931f3adaa630054f +2e50e2058c2d3169f761dcfd7b45fa0e 2e51eaf94f20147e509d964118f83ae1 2e52c371cc6c1cfbef92836e08893b14 2e54219614465efc06ae6afc6f3f6a8c @@ -10474,6 +11693,7 @@ 2e57c8922b212bf07674fc734e0a108a 2e57ef4d969ef87d4bd3f2724c9e1950 2e5897cb031de4455468e3cb5e5ca7f2 +2e58b35df1596f67f8cf86b3254d55a1 2e59476d633032320b310e42e12c5844 2e59c90b67df8fc3cadb419d4708efec 2e5be2d35b4193d37c529ac2efd80d7f @@ -10489,7 +11709,9 @@ 2e68fb194d4ae0107c26b821f1c4f382 2e6b00f0152f28af4b86eed0cea8895b 2e6e99b0983ee033632523d218c86630 +2e7193581fc73f94a55a51bb25db94af 2e73f62027dc491e5cf143d5fe076163 +2e764f433f83b72cf3cda746c5beeee7 2e766332ddbeeb078e3aa5814adc7a8b 2e785a113ac3fd5f54030870a12c00d3 2e7aa5723d9a71f6649105942a970dcc @@ -10501,6 +11723,7 @@ 2e82513cb83cda9df61d220bdce5ce6b 2e8272ee2950cdd344c922e2e1e692e4 2e8520f274c16ce20ef79334cb73ee2c +2e87988de9563987b1116e7bd9986132 2e886c9a671828551a1149c83bc3dc78 2e893d9657300f780a4447863ce5c86f 2e89d69decdb5864063bd25003e40e57 @@ -10523,6 +11746,7 @@ 2e97547500f35f3d7f56b9fc490fe6ca 2e9922a36cb047a6cbe61aef394df2d4 2e9ab00e6f15e3541365598eebf3596a +2e9b5e54e41c34b0094b4b8bdf2b3d9e 2e9b66b8dcf9a443723e78a19a3b2941 2e9bd150d25f708acee6f46a4376ba6b 2e9c6717aacdc4a73d3cc634146ef62e @@ -10533,7 +11757,9 @@ 2ea0c180812e74e40868adf960de8703 2ea6c2af1dd866169d74c0be09f0984b 2ea6f0836d143772771baf0a031ff74f +2ea88788e7589fa578512659e8194502 2ea96bfe9650a46866a48dd7c09a534e +2eacd8e2fb978fbf9878fafd41c3d3f0 2eadac1289d929f6961cf8386bb674cb 2eaf739fc1d6bb551cdd0df653f9d40a 2eafad41dfe788d61cdccf52e6cb3ed3 @@ -10551,6 +11777,7 @@ 2eb87478f8918e45f1e6fb79ae403e95 2eb8e2fb30d5a242c205d0de89bd8d98 2ebb03a8eaeb8872aea8a10fbdb99d97 +2ebb2c84be9c4fffef515707b575df91 2ebb57ae3ebcbdf46afaf1e515326df2 2ebb7113401900efd89d27b4b4fc1a55 2ebbebcd4cd093c4aff523c35e833286 @@ -10560,6 +11787,7 @@ 2ec03fb217aae991b7e1d812a1f925bf 2ec1f3167cd7321baedf3ee3ba813ebb 2ec1f8af92723b47febf9e675b4f951b +2ec3c56a00b166df73a880313725445d 2ec77bed5b3e3819bf4b20602c01b480 2ec8bb6dbc85b3f0c79e29a01dd1ea26 2ec8bbe9dece3ea342fe6fb61da22ee3 @@ -10595,6 +11823,7 @@ 2ee8b8eb1fbe2962931a1ab379bfc229 2ee9de63e39d8744240b6b103e27296e 2eeaad7198b640ccd9a343533e2e7058 +2eec0022795310c87e195a7c856f3fef 2eefff6c58ae677411262cb79b2d7978 2ef0a2151875b8e0599c97624d61e990 2ef0c60bec9d058bf3f868dd5c6e67cc @@ -10604,11 +11833,13 @@ 2ef3774d22709fc06b0c90e1217f6cca 2ef46e599ed03d25b7344a40f6777896 2ef47594c6aa84861fb7b03def235700 +2ef47c9aaf4b5b681c4e870815607b0b 2ef57b12238574264f28e5a65460b741 2ef6010d4c5711273f3cef9045cbcac2 2ef6e24f760c9fd4005bf21249e1138c 2ef76bf9952e9e300496cf65cd6db927 2ef89f34a7818c7b28fd3249bbd2d383 +2ef8baf6678e21e747e3d7665ebb9205 2ef91973b56975a1177543a3be806a1f 2efab261386ba719808fce0a8c7cc93c 2efbdc290a37816cd74b73ec9bf3b84e @@ -10619,18 +11850,22 @@ 2f0248fa45b7c1de78d325ec50f8d5a5 2f027bcf980bfc82a107bb8351a73e41 2f039af926d754558e5b8288d1af5830 +2f040bbd74882657290053117f8e47be 2f052d957f7d44210f86261a55bb868d 2f055a9e6c51892d2b29ff53528a1bb2 2f0684ae371ba53214d57d697d2618e2 2f06d67a8f8013952f2788ddb9ba296e 2f06f34ca6c1cab6917e82241515e178 +2f071aaf047f1253356c759d0e654c91 2f07a19042f826aaca3a19eca209c2bf +2f08e750dc19f0353bad03a9e5beb68e 2f09463d209c31c24850e8b24d7a2ef0 2f0972bd4b2127f4c74f1a85caff37bc 2f0b94eefbc4e4713f2d4548d631cc28 2f0c73d7bde8bc8f3c0312729f635e5b 2f0c90af12b62055882556bb6dbfb400 2f0d1c6b3d9e8210fc27fa3815edf1ab +2f0f75fbc0e8ae316c4abf7e0e7d22b6 2f100d23577d27a3d140c1852bbe7526 2f1094bb0f9b041f3ee3d395edefa342 2f109f4de2e44512d494848cd8c9e23e @@ -10649,15 +11884,18 @@ 2f211250e76fa216c1787992624e991e 2f216dd4fe39c0bed26d12cc6865ec1d 2f2185c74473dc172431f387524852bf +2f21bc37b70d3589d1bdb3fa06c64e7a 2f22110c34662c4fdf80bd273d2c46b5 2f22e778216857b29aa1d0557def7949 2f23074ef91ac4a150a42fda64cb0ed1 +2f239b7b3909776ca120d6060cdeb33f 2f24aee87dd1dcb2a66692bfafc34eb5 2f25495d1dcfe531c141c760914bf0e8 2f2572b575b8ecafd16370f930bed3b0 2f2685a732bdd6d246bd8829fbd01cda 2f2744cd8d032de2f73b7b55447636c7 2f27f2f290ecb0f818236443e0d7662a +2f2890c5e5757f6b14b13a323f31b09d 2f28e98dc0420cd3be9b075e0ff1a210 2f29abdc32efb408665ad06dfb6ca40b 2f2a175701d70a8c2dfde86143d6c88b @@ -10677,7 +11915,9 @@ 2f31d5fe1721f17a4e1b2fc07715b523 2f33736a001bcc1928622370d816c0e4 2f3490eb1873d9abfd9f037b567cd3ef +2f34c6537d20bec254d502f79ca4d1b3 2f3664dd38e7bf288d58c556640ef9b1 +2f377f02eef0ca486d4a234b33ba3f7c 2f3860af671bc1592cc4ccccda43ae9a 2f388dd1704b8ee599bac926ca065d3a 2f388e4f3aab75abfd9a89607caac5e0 @@ -10685,27 +11925,35 @@ 2f3d3d1e096ee47bdd2fac9bdcfa4d18 2f404ba32272165ee6f735b3cdc4860c 2f41b41f786966084e6735db5f854b31 +2f41f63b8181954176f27c3282bd98d3 2f42b71a001b93924bb885cf29e055b3 2f444c24ae92391f9ecee46fc8745494 2f445ee1482f38672d897e15e7770e45 2f48b16619f686fce34611f659c9820c +2f49ee4ebcc9145240bfea3f4400c9d1 +2f4a78cb1b0cac9a9da95983c6e2ad98 2f4a8214d3146e52b09d4c2e13327884 2f4ccad1691571c67afbd5335a6e19ec 2f4cdf044a762a5643441b12d2401d97 2f4d0cd631bcf0595105c2f0b4e77de6 +2f4d47a204ea2baa86caf151f525d200 2f4e5ca01d04a50c91acc22732235cb7 2f4e7a1d991d884113efe43eab9c27bc 2f509826ce0f946a5f43220ebcdb540e 2f50c2a810f0c1a60320e491e4b2d05b +2f52ae8a47b17eaffe406ea10c6ed0f8 2f52f6e922bc5ffadbb5ac83da49c275 2f53e42d8eabf10ddc98a6529a8a61e3 2f540dca777992f33bd0351802dbfeed 2f543e1bb16440dc111101c96dd471c0 2f55c7085b81de4f1034348b461722cb 2f55d4478660c4f63e1e53e8b1bbe012 +2f58935d5c95dad19010795f89546605 2f59bdf4f9b6c02eaa8c4b0020962385 2f5b9196d8e6bc5cdd93782b215b8dd2 2f5d3e91622fd6f34926c2bce839d009 +2f5f13cfa9ac497672dc34cd5c86e5b3 +2f5f2e77b74c460a551d48180f73e154 2f6054f22ad24080227fc5810b70598b 2f6263cf426dd5fd0dd1e294db33ffed 2f6274b3db6aa65d7ce4ef96fa2a3d34 @@ -10719,6 +11967,7 @@ 2f699d8fa604345c95a2c01371de8e5f 2f6af77bca678785516e85b924045c4c 2f6c0e5030d363fda6039a0b25a45865 +2f6cd60bf5a4a068e5ab39b4003e518b 2f6cd8f9280bc4e7c42ef17b6c8f6bfb 2f711c4532ed3893e6d98eb6db8c8e3f 2f712d77262db129ebc35b11fb4b2005 @@ -10754,24 +12003,31 @@ 2f940fa97832571c9e99f72d2419ed14 2f943e8900b7f867e60b275ea1b6b855 2f958cdf39f0adb6b7149a40ac2dd04d +2f97c3ce23407d902200c23919dca05a 2f97e1e4bd9903b5b822b91cb9fae1fa 2f9860533f521a406a6e6077a7951a23 2f98afb5a7b7c7af013b1ae50239c0e0 2f9a6b0b03c126920f7c235440a469d1 +2f9b82323f76904895fa4b5436c0a94e +2f9c66cc1df2b5cc7ab2ac1184e49834 2f9f36e3e9c34041d25fe7b12a19c0ad 2f9f5641fb2662486ed4f3191dff2041 2fa008ea4fa7f6bb80b81c37570b0980 +2fa171a233d7a84da188fe3e388cfbf6 2fa27383a22c2dedaaed7085d76d60ba 2fa3b35f3a4c95a4e43b4b2bf2b968dd 2fa412bfdc96b02812ba1522f27541fd 2fa444dc115d45cc047c7b7db29c1dc9 2fa7c3c137b9ae0229a64fa3ec0b89c0 +2faaa87a200017751ec664181f58e1b5 2faad6747d02cbc55d28ddb7cfb21039 2fab268ff582be2c5d205ec4e9bc8ec6 2face700d15f05810fbc2dec468631e1 2faddb1bbfecefba6f0262bce5043e07 +2fae37b00c3a9b7ab8076ce9bf462579 2faf4bb58c5dd99179ccf87402a7800a 2fb0137e0e4292b071b680df14ba2f41 +2fb0ebe2281f3481fa7c3e42b6251b90 2fb11b18a422c1d2bfa65b73ea230a05 2fb1396f807dccfc1a956086a493c69a 2fb17be1c29bfbc1983de49c960a2e70 @@ -10781,6 +12037,7 @@ 2fb664ebb677bfed303febbb78be8b01 2fb6b074af8f5d1b115ad91531a86328 2fb6ee31f1d211cde142a90b791ef623 +2fb854bc018306483daaf00f5b8e69d7 2fb85c2b057ae40316e78f2bc37f68ff 2fb88bf64e8f199f6b219aa3484a6df6 2fb98ec4378f0720db1da600d86a1f06 @@ -10796,6 +12053,8 @@ 2fc7fcb6cc9fecbc61d77d2dbb990d37 2fc9246a8017e917d08bb5d9c8fa6104 2fc92b2b5cf738adf7bf270ab464696c +2fca8995552c910f1bd4d928c51296be +2fcb16cd3443a242ba014c76fafa7834 2fcbfa84cbcff30177cf0df649e14224 2fccd02145e6692468074daf7c4d205a 2fcdde3de34a4ee3e20f9de1a3b85c6d @@ -10817,6 +12076,7 @@ 2fd8ee12541fdb6c2148af4ae2782441 2fd927da3ef7e7fa2916ba807d590f43 2fda08360535da2cfc3ff8f74da946f8 +2fdaab7fd52d8441873b013e7dc25d43 2fdae5c257ab1d9b8a0dc1a76f1bdff9 2fdd079314a5087e5a6c7b423c8e2e09 2fde0db465be5df32fce7b1ab3bbd090 @@ -10831,6 +12091,7 @@ 2fe8c91517c78145044da9ff66d76188 2fe8ec60367b297e813ae6ec9faecc08 2fea0cd112442ac73ff8a8e68a08a763 +2fea249125602251d09d4146a06fdee1 2fea40239ca9ddc7089ebb8db1f656b5 2feaa0c5f7551e443773ceea8e009343 2feae3488dd9062950dc4a81ba986bc7 @@ -10858,11 +12119,13 @@ 3004b7baf34469ef83fe9b847c3e45cc 3004c5eb89349a380142629ccd8478b5 3005a4c73404e10750ef3b1c8d2626cd +3006458e49b4c1b40cb768bd64542549 300649194653ada18d01255f317abfcf 3006dd57a40dddedc3649f4669aeda39 300797e58e0edf7a75dc9b152db874e9 300848f8d958b0051c77b0f98931cc7a 3008f2a7624ccaa9dfe8ffc8c1933d23 +3008ff7ee887fd9c8380340f232e2966 3009ac69150b3b55a4eb67a13f8ddce6 3009d605f836941513f65062d0ef7f5a 300b4259321b33a685d0fe2cfdab25f6 @@ -10874,9 +12137,14 @@ 30107b6525d5d117f2194c8cf9a86d03 3014705b256de967a69bedfa5487cae7 3016f79a486025408b1fcf379ad58880 +3017b18fe83bbd3b98c8d18d99921a5e +3018ab5816ad0ad44803b119a321f837 3018d1bac8748b68340051771737bff7 +30192b6a6f77103d229b1175eeddf248 +301abeb92fe8339e3aab786deb757804 301aef6282f732e6f1cd1b038cef0011 301daf83bf5aa0ae6708738a85706ca9 +301dc4497bc30166cb1a63b89a531e2e 301e42f8bc3a8e6429385aa0281c5456 301efda725bc938df93de3676515aee2 301fde0e05a4a92a70e9373e4ff95c92 @@ -10899,6 +12167,7 @@ 303276d76f9dce1bb9c796c88f813b0a 3033d69fba0dd4b2941120c90e99e9fc 3034a8a7b033cc55a6772cda8f81f97c +3034cff228b6ad1b0f4afac4f863574b 3035528da185ff1618e1cca85dcd73eb 3036808661f4fb5f7053a0dd83c6b100 3037077e7dde72583b7d18f2cda82a1c @@ -10909,23 +12178,30 @@ 303d56ea5c208e6cd30c6bd749592d3a 303f548a4b23c73a8cd023065b521f5d 303ff964ae168be6f8fbef34bb4a5ec1 +303ffcaea3864de4190a90ed28f09c78 3040bf8cf9843a45d6a61d38e11bf665 304268b569c6044a3f27600d010359f3 304274a88ca28e250798f5f4d03d4be6 +3043985f33f7465a1c10a99667c52f8f 304503011a6cb1248b410f3cca966126 30451fae74165af2035080ab28102453 30456ce09a077e33bcc615e43f264325 30462ca25763e02c0b3456e3e5c60aa3 3046b084630016263dfd40a2277fd9b4 +30481ea9e67d5129cb6577106aaeb47e 30491d0d2e7d4f23a0357d14ab283832 304a2ae3c4e1f06503bbb9b663856281 +304c3c4d60de61ab2c0f26e0d6ff5811 304dd8e4e3754f6b2630d6ba074bf7ed 304fe55951370c3a64209fa6ae1c6d6b 305000f9af933781e294cf712d549880 3050ebcfba64771f32a8e456d34a42f6 305143c69902ce4d15ec3e10b33cef27 +305150975d1bc9fefe0076bcbb024b05 3052acdd3939853b9926094d73290710 +30537672b5283b9f3e9517f3b8e3f9ef 3053f75db9394f17c8cc1be571c8c9c0 +305472f29e58b4052997eb4e3df0fdb7 30549127bcb7bdaa6f8ea8632beee1ae 3054a18c974af330ab68c6b052a999b0 305533296d573c3d8edfc258602ce528 @@ -10937,10 +12213,13 @@ 3059454c54c205ec312ecafdff5d2b91 305b7178568f4b0ccd320575ec2973ff 305e3a1438feb3ad267e896dfc5715e5 +305e7b1892e2256ff8b3f1198fa806e2 305fc523e90ab538543a2267bc189e2e 3065cb964fb766514c3f260bc952df62 +30665d9408e6d2d69031f2342d4a6fd6 30676846c730e23462f1019dc7a60347 30676fa12546bd10662aea41b0b30ba7 +30676fc0ebfc9f899875a4061107c08b 3067cbd7b5fbc2b85fb4ba938ecb1d11 3068c8920e18f010d7b37fc110d3fb85 306b17667820386bdada4fe2ef0e979a @@ -10965,11 +12244,13 @@ 3083073deb2a4a1859c43e3ca13df5f9 3083aacca773ea16dc667991b5d729b1 3083b013390c7837ef9cad5afe4f25f0 +3083f4589070e6a6768a614e5dcd5a98 3084a2fa3e824f74d6a6a2ba28c18f36 3084bb981fe4d36a39687e37ffb80298 3085f84c3318079c03178c73b128ff46 3086ab03babf17d0c61dc50c0b5d78b5 308770d1e98e355d9df45583b2748b5c +308887bf914829182dffc9bb5f62c1d8 3089055c83af657af701ff58ed4321e7 3089231089986e5d5beff6310181c696 3089e44c22d1751cff5a646021c2ecd8 @@ -10994,6 +12275,7 @@ 309fd6eb7e48837a8e03f9298a721324 30a17bf1bcb53568c27cf1ce6e711521 30a47b6be5705c45581a3cb34a4b2702 +30a5e80b68c780a5d8f1bd7dc902a75a 30a86aeb35ac801cb2836f4f22b68e67 30a8a6b306fd32e29e75f6d38262983b 30aa6bf5267f3d7cdf3c2427ccfbb580 @@ -11008,6 +12290,7 @@ 30b3499a4c805ff0c9bd91122a16c9b8 30b95c664b40c2bd9649222a88cae913 30ba3ad6f33888cedf2084596186dac1 +30baaaa19121f78c114effedc5561277 30badaf4e9b90bf366a8bed75d45ad8b 30bb43932a47a9b06510401fb58591bb 30bbfc0f63416aa5a5fa62d6521839e8 @@ -11015,14 +12298,20 @@ 30befe7ab226818c2f9f05872deb044b 30bf7cc634433e64f0229d6560fb75e0 30c081cddc26770243e0eb6ea219f981 +30c0849b5e3d121dbbd37d0de316d48f 30c188c0e248bdd670008530cbed0399 30c1c91f8e080d4a90e01294fcac0fb8 30c28c08b133c649a8819a4b43c70501 +30c292b56d1a018af06b43d3ba38c1ae +30c349f6f8a6dccc13e1097652186568 +30c4ff3ed71f7d1885f8c8066d37822c 30c54d8aad47bc9797fe59c8c2512dec 30c6f86305f56c4ab36d3cd1705fb5f7 30c70a47c17dc346efb1d858db16cc9d 30c7c15de55a187001cff4945b4dfce4 30c90363cf0a30f275d6a81188b7de34 +30ca27f47f4b66895dc0b5d65faea20f +30cc20a00af4c393a864998f1594b31f 30cd09167b7fe4599ac2bf62e572395f 30cd16432a1ad760b67e0e07c0438088 30cd3a88a4cf921f52382336d9de8eef @@ -11031,12 +12320,15 @@ 30cf02879965b3967f038c43a0e56593 30cf2999e5ba3f6b8a17880a5e557467 30cff0fd93ab9b1db965256ca040e2a9 +30d0cce6a307f2cf7e4aa35b1637c32a 30d2132878fd01ded3b95d194cbf7e68 30d26891936455c75553bd081a5a9c0b +30d4e9a0aae121218e31da03dee7c48c 30d50ac0d5ac7887007f3a771fe17584 30d5172abfa33c439035ee0f297f413b 30d55fceb692d0ec7c399dacb696fdda 30d7b59fdfbc71fadb55839455fb28f6 +30d84e4f2c3423d96984a789fb047080 30d8f80c0dbc968f1ad63ec71605aa58 30dba8c098fd8e5c8a79e1dd97381d5e 30dbab96c2a256b9351930674e41dcf5 @@ -11045,6 +12337,7 @@ 30dd432e313bf272728f922035470fb6 30ddc5e79bf222bb2d36a348ee2665bc 30ddfd68572a3589245f79618f3197a0 +30de19099dc16d487d106c4f748e3eef 30df3dc922fab708c527ae57a2d2ac3b 30dfcebf446b842ca767b360e2432556 30e10f886c1e371e41ad55d2c7e4707a @@ -11055,6 +12348,7 @@ 30e675682d5309cf75aaae0a717bcc8c 30e8c80f99bd509ff8d409733a1fa9e8 30e8fe77432852552c0ffdd8e5a8e1a4 +30e9c8f0f41205de7d62d624124f36e3 30eb5cdb698f1c60c590d7d8d8f16b7e 30ebd4b34f87a870d1e7d40a73f33883 30ec65ad83284d1272083a4543422af7 @@ -11062,7 +12356,10 @@ 30ee85640447b5816b5dff5df40d7fab 30f0417c2bad596f15b4fb2332639068 30f1f8788f54df540f76aa95a79e5586 +30f22f7f856a1b6dac1b1e07b31afa97 30f33ab12439c55f96a3f54b96eed127 +30f390020412d70b32fcbbb8e3a2fa2f +30f3ff8c57607e68858d510cd1049870 30f4662b3e9097887b45bdb8928674a7 30f4b2897cbcdf51d984cf811997de7a 30f4b62e0fdb2c767c9efdfed9c8bb35 @@ -11076,6 +12373,7 @@ 310012a592b44a19d3374f434d846dd9 310045501fc9fdafb029bb74a2fc9bb6 3101a714bf4d8412ceba46045b9c8fca +3102ee4948b07ebea379accf358f4523 3103884b11c754dd558d3cd5993070e2 310759d678f74df9ef710507750f8b1d 3107d7b605a150259910af969bde7648 @@ -11088,6 +12386,7 @@ 310e2462a106c3cc66d5b5595f1d057f 310eef0d9ee1a6fefa3115b8fd410bb5 310f7bedbedfcf7743fa418b49639e0d +311195727f0e73c7f63c53ecc97c9e99 3112d349430da16b15475581810bc9ef 3113be3ff5e68e3d894e5c17ec23d01f 3113c452f37859593e6e7c9e7513dd00 @@ -11095,13 +12394,17 @@ 311550fa797c13a585884c4461d8b452 3115c79d163f5cdb3869ce6074720ef1 3116aef9e60f3b60b716a2d6024bfa26 +3117840b40a83209bb46250756c12e3f 3118781519649c1ae621a6ca16930586 +3118a07067c5730dccd91559151da151 31195e252bbf4c4e1941799ea96d7f88 31199b98e16200fe6eeea8492b4a6a80 31199bff5fd8495c579fc397b8b35aa4 311a57cf41f6b4386082d360be84114d 311b61c0a73f73f2e43b7862ef34892f 311d0ba7baf4ee3ebccaf347c25f5d7c +311d21fbd1223b799a38fc59c2c65ecb +311ea7beb02cc57744ebf3cbe90e80e0 311f6534ded97f0df966f817c99a2a83 311faa78873f752a9d8c18685c3f904d 311ff64b872c2ecc7eea5c51fd3b0e06 @@ -11113,6 +12416,7 @@ 312ac21c9904f3c55a23df49de562665 312c083bde5928b960421c090ccf0116 312c9cd1b3ea81d1f9f30944279dda1e +312ce83e670f70f124e6db3e1d569a47 312dfa86f468e0c4d0b58977eacb4e06 312dff98163bfcb5a7bf6fc4dd623f52 312f8afc1c5ee5ec88d8b7689c87357c @@ -11123,6 +12427,7 @@ 31318607afdac27da23be545c18bcfd9 313195b74f1996849cbf0aac65b5ba33 3132715340c988c4742c5fe1cc6c8f53 +31347a091eb07f1d6d669db0e1064c52 3134a9d160f67b60d9cf5e99f0d716ff 313575c4af2154e75cc514dd7da020a6 31364e82559fbbe21317bbcd43c79c57 @@ -11144,6 +12449,7 @@ 3145d5adb09f0e020de1fe25d281a358 314742b73b4ccea3c37eeaed129bf20b 31476f4d92c46c05dd709ff026fa19b0 +3147b51a711da136e195d4e9f59684af 3149d2312ee16b2343bd3a1dca4916d5 314a039b5dd47fd2fd71c955e8118155 314bf72de42a46d8efc7b42668981bee @@ -11159,8 +12465,10 @@ 31559f6b4de3965cbf6e95295c5489ed 3157b33f5f72f8380afe8833f0c63b5c 3157b68fd0e9a50481a9ef1451a86526 +3157c4fda344c0988d8b191c52837965 3157dc736dfc5361029f67b6c144e30b 315926252704b96068218d7a7cf00ffa +3159f792f09e66dbc98b3bf891ad4a8f 315afc8b3cce5749ab1d72ec3270f761 315b26d79673d11760d42934198a6471 315cc235949a47043354b0cdde18eacf @@ -11170,23 +12478,28 @@ 316161b5b130e3f75c9a942fa83d9ee3 316436643dee9ce3cee6dba2629b3469 3164bc6828c6956e2a49cde464809403 +3164ce2eb162eb7959ffef062548d890 31652898f0fae1c97979a59b02df86eb +31655759496baed212efc347d21197d9 31657ac7f759c0c97a1e6637e187d029 31663875b29c6abf1eecee0f2da03f2d 316793604fb5ad38a3fb68cdc6900a69 316925f3fc65fa646dbc3c6e6074d0b5 316cd494d3370ab4c8b91720e32458a5 316cf55df034204c0e81905c762c2ce3 +316d2cd264c61a0597a4f5bac05de5cb 316d710b2ec6e6bc0355dc6ad203562b 316e8e66d83e1dc92c032c404cb2de8d 316ee2f970985e6efb5de2dddedf7a3e 316ffe99d7570503bde3750f0d669349 +3170798dd6c4279685d81ab7bf8675d3 3170fac2b2ba5a24d9c8a46e48e05863 317125d3f48209afd938e4ed59a902e7 317139c0abc95b9d5ddee37e7928991f 3172e375c90243eb591b1945edee4b6c 317339ae51c4eb8dff6c0124a4d33fb6 3174590e16f4a03fdc6f1de448ab1693 +31773789ba321ba6d07932962dac1af7 31798de8bf61b3cc910131a748616a4f 317b4a200dd974a5a79f6cfd974b94cf 317c637e0d5db9d9cf809e4c5629061d @@ -11213,12 +12526,14 @@ 3196f3a269c874fb12a06a762d2c8ec7 3199962ee513286d94449da77fcad51d 3199d25800a2849fde9bd6898ad2928d +319b93ca8974d65e41a21724482336af 319badc0cae279a243b8bf667e70e59f 319d9c50b3b57205e0fe433655433f3d 319dc7eec0a21354ad1db37740815145 319ec0e0d15d8fa0cfc1069c70b0444e 319f1345e14e1e348d4929aa1e8ebbcd 319f5ecabcc8dde728b0556c4305874a +31a00bdf654f905ebe94549731634ddd 31a0c92e03216c64e78b3da00757cf1e 31a2735608ed90ff70039aa5626d027e 31a35a683f3994a9e774d04be29c9856 @@ -11227,6 +12542,7 @@ 31a71d7127700dd52a0cf4e8b3cca247 31a7ae2f3b29cbfca442ffef4ed681c9 31a9f40046ec980081eef67583f44b85 +31aa458aab52df5deb66f3b7b72033e3 31aa58c1f0c5adb3e9e2a28b7ae1a77e 31ac3e45cb41678a47d64c54d7900813 31ac6f448e01ef25d8b79161c42b7d1a @@ -11250,14 +12566,19 @@ 31c0aa0ae4f9cdfa501920a64455babc 31c13a69d84fdb5779dbebd856a50481 31c18a536f04a63a8e6b141fc62e254e +31c1e84d8e6a7998d83136da6e79c53c 31c2e0e37a63208973f69e8eb9f89a56 +31c3eb5b85ced0fdd6676258b36c27dd +31c48374bc3af84bfffe6b4bce1786d7 31c5078676fe863e3264d719dd140ed4 31c5374ab9d80a6a26c7f921944285f6 31c5bd06910738b0b67f1b20cc3553fb +31c6f8034f5a66612a1b2cf55a36ffec 31c772f63c55741c5bdccbf98da667d5 31c82b5cc768a5d749d667f9f23f6282 31c89d4705c51f6e927332ade6346744 31cb2d32c77a8f90d32b0987d1e4069e +31cbde1738a757bafa1ff3e6fbd8bc05 31cd99a43da4b97052c5fadde57dddf1 31ceead4dee7db28ebc59e1bd051d9ea 31cf2598fa69dddbfbd01146e5e963b3 @@ -11267,6 +12588,7 @@ 31d3585afe68a71c191fe84665a4fe6d 31d4732390c3d057c2851208bbe78a8e 31d51ba660e9336ebad0f157845d9e97 +31d6152f690e5583a3cc2665917767c1 31d77dafa5446f39b204b35b038bad63 31d784e7e05706a93cd67e6ce0d75a30 31d9d798f4348bf5b9ecf8af3a3b69e0 @@ -11302,8 +12624,11 @@ 31f6186453912a62641ca3930f204315 31f62cad5ae8b19813a4cae58f349b07 31f67cc857597afb9e18a92f0e0af670 +31f74cadf2fec8a10daf5c51ac262010 31f80232e57e9182d459f5f27c263b47 31f9b113f40a43af8152e7f1c24ab614 +31fa474e7e38d47c0e1f017e02c85c33 +31fa803895e1f3d90386e834c40e13a1 31fe9140b2aa3076f429687d2f53682d 31ff44fd8fb13d1f55a832456ebcbcfd 32001080bff8bfaad4e63655c422b037 @@ -11320,10 +12645,12 @@ 3211792bc90883454002e6e6dac31d0a 3211a705485e6b1d086b0f7f5eb14527 3211bc2cbdd7a2813f38824f074d75c4 +3211db952b29608bb89b5423009a4092 32127da99983a2c440646b24595ebaaf 3212e64463787b041b952585a28b17bb 32134e82fb2039a03f60fa565f16b294 321391be99760b93de8671bc716d5394 +321457ca2c5ab06b144df07a0e7aed16 3214dd9d134293affc80e6880a8359b4 32151e7ddc96b7e389edf6a4e0568f33 32155ae57ec249b399f4262d6796273e @@ -11345,6 +12672,7 @@ 3220eef15cba1c03ce2d87040dd1d13f 3223739b89b412996a11591af3e81fc0 3225a563179b39382fe4ca3f66c5c642 +3226590abefea4d866dcf647bf8bc28a 322665ea8ec2db67ac2fd05fbe721f5c 322896e985b4af0f370e01e808fdb9a2 32297bcb352a0529896e21dd7fd59b2b @@ -11374,6 +12702,7 @@ 32436cf47e61c43f3f248db4f40b41e0 3247c86233a4a5a769eca1372d35163a 3249f5fd0cf1040ce2ab929576cbd22d +324ba475b82ccfef3bf3d2605f63a9ff 324c878f5a548a7b24863a9f95217103 324e91254b41dbf9721d50edb92fc48e 324eb2eb38ebc11d31097673819a8f0f @@ -11417,7 +12746,10 @@ 32735de64bed7cbcf81ee5901bb049fa 327670d47c87601308715926c5a21056 327692bd7b26e561839fa2b4436d74e8 +3278469c67e8c3b6379538546e65a26f 327a4a9285a2bd602cb7934be5fba00a +327b3c6cfa52514453ed3d2f3ab104ff +327b5194aff8fb0306520380984d9946 327bcdab1f5defcbfa13890c8e4f0f40 327bf349e3f32cd017b4fdd26d8989f8 327fa1f9ba3c16bab43d3031cde48dc8 @@ -11426,10 +12758,12 @@ 3281059c8e78da1f8a6a77bb4d7fa658 32820fc7b1a743c0c024946148f8ecf8 328374ac5145d252b31b7d6073cbe2a9 +3284057e594b86cd3ad7a1da25f8e294 32840a848552f200c775aafe46bb1f4a 3285cb4df32474315d1965c41e295df4 3287297f4fef985887a49ddfa69a4959 32875479e58eafb1f9bb9ea7a18515f6 +3287ab4e13922448cdf6207eccbc70cc 3289696f2629286538a831eec3b4b802 328bd69b22b7a42718bd2782217d6bc3 328c7a5d1963e09ce430146f8795e536 @@ -11437,15 +12771,18 @@ 328e3f1c5a4336eaa5c33054d82d3d51 328e62d3d6d98f92c13f862aeb3f3663 328f43e51d137d481a13723b9d9a52c2 +328ff94786b71450d1eda0532326bfd0 329315bf9d2c234002915009f5a329c4 32947b5c63fb0f4c1cd7e471b7ef8f5c 32956fc23e3b3c8cbe884a299acbd171 3298d6c849d9a100107d1ebee43a91e3 +3298dc2888656286c8efc184256eb910 3299b8cb2ea307063a063cd75d833a3c 329a1680fc7c19737d1a9b98ac7e998b 329a3556734748baf8e8a9aea5eba299 329a3702844837d78ff286734c0fe1f5 329b1489df53b34e18d23a2a775ab1bf +329c9c77e643ccc9f9c3bd8e3268d271 329f286a441963edc9b0261eb7b1a652 329f4735b43dcdba001cd882629e5c02 329f9aa84b9c26a9850a48c049567570 @@ -11453,6 +12790,7 @@ 32a09f4ca1e682dd71da4494b5ed5738 32a12061558cc94242c3edfaaa283966 32a1ca81c3cea9066acf374c64e760e9 +32a22679d8d055ecb1a21bfd01a29a15 32a267d1c8a5c65008c01b30bad3d9c0 32a3a7a92bba6e016836210609e7471c 32a44bb33af90c3d4754a555888a27d1 @@ -11467,10 +12805,14 @@ 32abfe85c0ed01d6c5f18cc8c390d470 32ac12925371b5e72c8286af0138d392 32ac93069087eaffd0859d38d5b3325b +32acfa59511d49d383dc5ff0e9184748 32ad377323e57783fddb2aeb4bb45fab 32ad8968696dfa749d42c39f4c3e3a98 +32ae9157e54bd23d9db11006acd21b93 32af1a6a310d18b80a0d487e87692bce +32b06ba8231633f7f77850afea68b7e2 32b0ad6c1b1fbc174aa50edaedbf3091 +32b0ff12af1ca26ceb69c56e3e6d5190 32b28a95e851d142ecc2dbba47fae8c4 32b51a88c730352458ba593d51426591 32b5633959628235ae1dcb7ae1a37a5f @@ -11492,6 +12834,7 @@ 32d020be0d98171c25719c6ec3303901 32d082d65f6b0bda38247b36e6604dda 32d1c1d487fcae778b3b670952fbcb55 +32d2996452da6756895cef261393981c 32d469156085f55584a2b27e3421bd7d 32d62995e0a39bace10060a104a56023 32d6516aca05a76bab14b228f96f59ab @@ -11507,12 +12850,14 @@ 32e0b89f27386903b5b19dc899f72c45 32e0fae084493f3bc01be61fd2b57004 32e45c57735b97c63f9a1f672c00f630 +32e5b6471ad95f185843884a9663412a 32e63ce5773862d2805ff14fea1dabf7 32e7fd17ccb3d578f263ccd88d3ed29a 32e988af8a3b2bca213fc0de2b6da31e 32e9a84a1f17f652c392f6b30ace028a 32eb287e0032ab5faebffcb2687eb6ec 32ef8317208e41d646eb9c18839aa804 +32f02da39d44fa138bbd94cf4016a761 32f036c5aaddc9bc97cc5277d9b47c96 32f10ab0886165eb8a21471d351f366a 32f29aeef1210f3f53cb3a23855c8096 @@ -11528,6 +12873,7 @@ 32f75e6866cfdcf3a0a067ce98db97ab 32f79d43474946ec1c31ab71eb83163b 32f9145ffd182aaf960d6e140bc94923 +32f98a321a158d736cca5f33fa2f70c5 32f9dac77034a9f4e4431f1160b87cde 32fa839d58d7bd88b68c9f2736e066b1 32fb035184874e82d022a031556cc4bb @@ -11535,6 +12881,7 @@ 32fbcfb992536a795c46857ce27ac94b 32fc4f3ac0d8574e54d2dd33e4c91e46 32fce047cd81f4af4a39fe0f5dc8a596 +32fcf6920f1435c655437a1d02b65f0f 32fe1e82d833c2d4db66d542678b94ad 32fe60dd0003c819b96c1e1d6ae98dfa 32ff44a1b441f816f0b4513657d0b280 @@ -11558,6 +12905,7 @@ 3318c7d48585d50352486d43a7f46bfa 3319f9f7c8a3a34a6c8e3c5005ca6ea9 331ac29ff553fdc664fae5af1dd460ab +331b76f638d9c9267b5a35644eaa66d4 331e6f67c12edd14a478a5003fc4abaf 331e8389fa17966dda6a4fb7fbb7e600 331ea0da177395ee56e280efc1ca64a5 @@ -11567,6 +12915,7 @@ 33236ae69414ccf9e0be82148389a675 3323fcc198d46f22381f2ff143050c4a 33240b7d4c35aa101326d9c77f991b92 +33258256ab9f846d6d77f9a580fd0c2b 33264910227a1a40e8a2fd5957e25290 33281e8290868a89436703c8e886d62e 332a8ecdb3bcb4bfd099a7fe35118d79 @@ -11582,17 +12931,21 @@ 3336fc4a333fc11e7f942db7bbc1a6b4 33375328362e58383748fa2514bfdbaf 3338f5729b2d6fda755769da6c58a681 +3339a5463bf8b8bb9761fa84d725e416 333c526db0b6a5912c81dbee238501b9 333d23d6e63b774a2ab4388586f11dc9 333d9fdc7e1b608d134b93793eef9cd3 333da009ec5a113fc8f8d01576c3f222 +333dbad058641402833ce088190c8ab6 333dd91207a0269fac92546d0ea1c5e9 333f2bedaa8d3096d58ccfdec6ffe670 334000a4cfcd4595cde1ac01a12b4ffb 3340a12e874e90f9f2c107325dba5af1 +3340f621da351804854df95a67730f5b 3345203b27875c9a3b00d9230c5725a0 3345d2499fcb33af3b3472c2f44ef2f0 334662bdf9c3f3d2ab08688e09ecd28a +3349a7eb768e723bce452d86ab5f25f2 3349d639d446c43c1765e3297b6ee122 3349ff52592ba4c257bd9ff1162933d4 334e99958b55ce7b931230601574253e @@ -11607,18 +12960,22 @@ 3356a493803a1fa13a26298298cefc57 3356c9c59e8131bf69e4182325de71a2 335763c8a9be1b6b228965fb0df1131d +335803f30a9985d086102738dd60fe6b 3358cbfd250319d409abaf77ba10a529 +335914c77d0d347e1a3abae9f3616627 3359a38a402c407dc3c579262e3927c8 3359c36fcbe38a68c2875ebce4be3416 335c1c22df4b662ae3405c0c84ad70c1 335c365ca70f91179e722235ddce4a71 335cb2288cb47412dbf113f2608bcff0 +335cec3727e1dfcbb15a1eee6c0ab646 335d0c598aee24759942bc81b1bb5020 335dbd5fb8c5f7270e73ddf6ee324b0c 335e619ec0f6706997f7f411f28a2823 3361221adb7fb795c625ce362f238b9a 3361febba205c25cde05712be0881fa1 3363561daf56d6c8f46db7de7c1cb614 +3365091b7d4501a27d31b7d81059f407 33679ec4a995dfc2e46d87feb097aa21 336a84b5038bcaf0c4cfe5cca877c23d 336c84ee09dea9115cc8195bcfedecb8 @@ -11648,6 +13005,7 @@ 3381f6d53eb9cbb13c6839737faab1bc 3382acb2f0e8f51b52beae6480cbcede 3383f4a6ed8538b1d84b1efa52870ba5 +3383fee9beaac9caaaccf28a7d855924 338409b3265cc4b5840f81f69c3d235d 338893ba1c9c78f5fafa260d2530ac96 338d3bf3103e0b8f2656b3e094bc1ed1 @@ -11658,23 +13016,31 @@ 33937815bcda9453eb170c7f7abbb684 33948faf3796d05c21290e364c4aad49 3397f29088bd6dd30af8cd512bdd43ea +33990ca9508b25f3ef8da0c0621bc3fd 3399ad114fb866a5ad687ed1bc0f69a8 339ac6578d40272b3a3a5dd8acbfadf5 339b9d8a59b17ed961a613c2a53d80a8 +339d36b46f7d1e432aac4bcf6cb14fb9 339e34432b87a66137fedb5d8adf0c28 33a0c03b418e8e30d692504e9833ef6a 33a13eb488c9df62b9a81a2ce182e073 33a173fff7f79592d75500b55faf0f41 +33a17d0a90b459363c7aa9e081c773d4 33a2f8d00152d55e67041f10937e1c1f +33a38d31b02c3cffad46e040fc29b2c9 33a602ed31a8dd2c1d51c4940e112267 33a95e79150820600315d48bad9348f2 33aa99c9cd6bd3c06480ca03de277b66 33ab0c9986c4360792c8d22592b42b66 33acc24b7e6975a0034c97cbf311b1e6 33ad3523d90a1e28e5e402b9ecc3a292 +33ae9f12c92fbc814cf5d200b0baca13 +33b15b8eb336a1e2e85bf3bf24dbee06 33b27d2a4aefd6f901933a4ad4bad46b +33b39d358e28e1a3026e3aace0bcfb7a 33b573678a9d9f6897c71b823795f5dd 33b643f6458387e0994d590d6de41cf5 +33b698bf94ba6b34b7fa5e1d87dfe586 33b6ba785aa819d72991317eeb73faa5 33b6f24cabfd01aa968dc83789dea5bc 33b86df896e5571ff912a720966c9f4b @@ -11685,8 +13051,10 @@ 33be7e2cc276948d9dc19e88bc8fafa5 33bfe5edfcbd6871650cae3c8e91004a 33c07caecdac9d80cac5b60669a34053 +33c221f58b77d931b6e7f42b06a9155a 33c2335ec258a37e450ad1be6d415883 33c4453fdb220e70eebfc0522e825ded +33c45fe3310d33cbc7eb1463484b761b 33c47cdc02d613ca133d41d72af6ea94 33c6d4474b6c2fdb084446aea1073561 33c7f746abd5b849a26bec714d1b6828 @@ -11695,8 +13063,10 @@ 33c979efda2d797b78bb497d86857e52 33ca8ea189eb2933fcaec25521f9099e 33cbe825a19f8d77d4306de647a0c8f6 +33cc71dc35a08a325a54253cb0434a87 33cca705433fba5403f527113a7e0a72 33cd92fda1c6d82ae6dc5a66be2d1c8b +33ce3996b4b0a36f1a83d45b90433831 33ceb0ee80ae7f91190bf97ed53acc21 33cf04bd852192baf3f73fe2dd90d401 33d0cee630e361dece29ce13120e9bba @@ -11733,6 +13103,7 @@ 33f3188dd356f1d3020147f20ba0f944 33f500be789b1b0413aaffec2180adc7 33f9fd13a127c3206b9580da4d01626d +33fa50f890fd5a4daa9fb73425cb9c93 33fa7e8c5c3e04cf0dd9eaa1ba308679 33fc64ac82f164d232bc56a01449a847 33fc64bc9f6ee2637927a7e65cbbb114 @@ -11745,6 +13116,8 @@ 340470381641bbd36bf2dc80ea45d769 34053d381376369c88bddee412bb5c8f 34070ecb16a92a68f369864bbe33b76b +3409f765a55d17942a03bff0ec27885d +340bee617d4d6112cba40ebde36e1198 340c203b66faa628db116b3d05207155 340c3ecf3de437289a9ae45697e0f2ec 340cdfda2ac0d5d409b995b6ddafb52f @@ -11758,8 +13131,10 @@ 3411de7e9a4dfaa92150b42e0a902dd8 3412755ed49a1e5e7e3ae66304064855 3412a37336a59b0550a0b5ef3e7a598e +34138a45f217512ec5eeaee3bc7ab8e6 34142659d577f315b2057a18db6afc5c 341469ecd2716d4ce77c18287b30d230 +341692400388411c71db37841aed3e37 34173d9760e03a4b5a9871b22e475a50 34173f70e7fff602136de3b1ee0531f6 3417dd34c70f9a030723fc4dd7d746a0 @@ -11776,6 +13151,7 @@ 341b4d3a3687ca31291204b520ac925d 341b534d0594cebaa396fb3d29c4ba48 341bf8e089f6b2c43767a32f3ab25aef +341c765862079d9c06afcc48c8d91fae 341dfd1b2c62dd3ba15670a73401147e 3420c0be36a54f6dfc04030c2099bcfe 34224f218d3cb171f5d8c32851be5b44 @@ -11784,10 +13160,14 @@ 34274a99560405e35dd608bc8278245d 34279c1c5acddf147cc278e22678f9ca 3427a38cb01b26950db9ca354502f4d5 +342832d6ee832c7726293b0191573843 +34289465f2dc0a29e8f001ddc4290922 34297f5dcb42ede8df68716fdaf8280b 342aec8d08c76bc5ec2fa903ec72d7c3 342cbebfee568e7826d8743d021f236e 342d3e870acd4bfd5321fa3576a5a698 +342d4837a82cef07fd260fa1aee5e298 +342dc4097b297c32c9bff993332d71e7 342dcddbfcb24240358bd627623b86f6 342e6c2910d7fa9cb14b087fa175c189 342f1c884ccad158bd0ad12b8cb44b9b @@ -11796,10 +13176,13 @@ 3431bfd0d038f2c81682e9230c723644 3431ec7d43e8fb6b116051edfa38f664 3432430e21317b7448e7ca2931fbfe77 +34328572cf2ccba80f328c6ffe3f23e0 34340125eda54a0bde2144cc3bef0c16 3434a03633582cf2f7b311226c258a5a 3434d73dc3317980a1a1f6936e0f523c +34354aa13c06a761cf83235e892b91bd 34356da1ce5e6070163798f8fc2875bc +343612603e77b2041fbdcc98f975579b 34397a71c2ebacb9ce7009fb2e3d150d 3439b9d5b235fb6effa861de46789935 343a49bc97a6a7741f773eb21f281874 @@ -11807,14 +13190,18 @@ 343ca93c9abe0e2b7c97ebc72b16502e 343cf6d64d66efcb58e8b8d13efde47a 343df1de866e832a86ff3de65f8b4b06 +343e6cbb97b449bd60f42257d1261e1a +3440a123a6cc9b484ca30854462a04b6 344132abc716ccb3ad96b1a8f9a49078 344136d31228ac35b8e016dba692cee3 3442f8577f4e65a15d3ef32192620ed8 34442ef4a4461ef9443c24e12b9a00ac 34448de57d984f1c6795241089c503dc 34469af2f7caec619cf7a23eb0a9215a +344780f6c5bd3dad7c283d256191a59b 3447bb672936ea0d20332e9cdff4306f 3448acb3d2b9f115cf3b9609f8413e69 +3448bbfd9f62b296ab12d1578c98a2a3 34496a9b1455e370827260a372d5b7db 344ae7a6aa7171d414f485c2c6dc459c 344e6bbae54e0835c5d8733be51156a1 @@ -11822,6 +13209,7 @@ 344f17825ac705b2dbef5d515a760dc6 344f6b24f93834980b9c13bd6bf0ba37 344f6d0391dfff14a71a3d64c8bbb3f7 +3451be029e786838d1f619eb3bfbafb0 345221abfa7f6e3a1ac605d87b3c112d 345279be45960d7e76a235e7ed61ee0b 345285b063ea72a61bd48be277a0049c @@ -11830,9 +13218,11 @@ 345688177b07f406b29ec88777d0b96f 3456bf900f045a2f9dc06008148572c3 3456c8e1714c4fd98504f6b8fb292387 +34578d3700699030150da1205f70c21d 345bb776cac061bd8019104b34d66950 345c4dd5afaa57db809710e08e3ed9b9 345c61e5cc080d6a4e3f4f332d86df4e +345c843f434a10372ddc468e2a6a5fb8 345c9a835f45e0d1311c3d68f11d3689 345d2208636c9123d13b43d321f65c56 345f0cb6afc318115425bdb82ccc8f4d @@ -11844,6 +13234,7 @@ 34645ccd13a4228f341eb3b87601ff79 3464febbd5419cfbd343929cd249bfdb 3466347dbe7d28aee259e216a8eecd4d +3467666f041d0512e493668f4085f401 346818e4ac465671b29506d7a7549fe9 3468bb4bc0e8c51068d42bde4b3b3951 3468c8d73306a1a4fa1f1b03b6d10ad8 @@ -11861,6 +13252,7 @@ 347394f749c95d7bc06fb8e2f47a4eb6 3473e00a3d19a2311da25eb83b43981d 3474442b0148492b74f02d45e99789eb +34745af0020a5072d415f6babd6c4809 347587c23fd18dd6b7037a6cb46557fa 3476d7d815933d4f7bae37078447c794 3476e613ccca21690f66a17cfdc098f3 @@ -11872,11 +13264,13 @@ 347aceb866e9024a064d271bf5b52070 347b22373c84fb700b9855762c7d8f59 347d049a3d73ca7360a784b29b5fb28c +347f64f68d1754c029081ef6e0bddb35 347fc7185089a1ef7c88afcbcf2a6b19 348046578c5ea1ccf774fd2a83e64cee 3480a77cacbd8d9dec31c151b2f516a7 3480c0a592e6f204e81bf0805cd59759 348152de59d1cc3b76e9955fbdd5551f +34827275ebaee92a5b0cae5461bbcd17 34828006616d8662f52dfd80705b6ba9 348324bc782aaaeeb8691cffc73f252e 348343de48a8dd3dde89057dce5c48da @@ -11887,6 +13281,9 @@ 3489dac45bdf92152cd4480ef890d8b4 348ab75c29599ed96ba37427057d9793 348b97097ff39d685aee51c258726a52 +348dac3d64a6db5a8091d3daad91d5e1 +348e885f7c2a045018e31834e78b4f01 +348f2dd77c11a61b8d6ac37be380c1a1 348fa29e8323b916a352a9273aaba012 3490c9e1c71b432e82d54323edcb8835 34929d1ab5349585a341b80be925c89c @@ -11904,6 +13301,7 @@ 349fd9057c5ec2f75cdc5cb8778c792e 34a08fecaa2e680937c45da16ea2cda9 34a094deff5bb18f10793fece596eb0d +34a1837c3922dace34d88e5775e7420d 34a1879add503e6d46cb5669027a21c8 34a225fd7853313c9e533d64301f0271 34a59e66de747a74f5923c1a9a132c27 @@ -11919,11 +13317,13 @@ 34b1bef6f9cd2f36d0ad2e81c35b2e10 34b27bc9830487a73e4f005457d56d19 34b30c9fbf451236b207afdb3fae06ff +34b32f8c802f99aa67c3c814b5495f77 34b54e0bf4208014ac7ebab2204f5bea 34b57bee33b2a6df490e50b596f312de 34b713ecd322926cd3d4381df0d61afe 34b80ae48d6723ec8f10840bf860fc29 34b812ac01b4ab5e8920c9d65d6de82e +34b90d09dc31ad608667cbf251bdb2ab 34b99e940ad432727cd42ccc21256452 34ba1506987f195250e00b4d11a91fc5 34badf9669abc8699b74ee96c7aaa88d @@ -11939,6 +13339,7 @@ 34c93223955efc31c18edbf9616d9171 34cafdf5f5603ba2873bd30deb5ca640 34cbae2ed8156c1929d648a553372559 +34cd096503fdef8001a8ac6333fe0cbd 34cd54ed6788c94d0ee11dfba9bde4a1 34ce1e90fabf6065f40635f0585be26c 34ce66321202e0b7754d1e6fa6b945f8 @@ -11947,6 +13348,7 @@ 34d323c59832a56c42348b4ba3ce67e8 34d3c2198d4529906035d5666ecb0f55 34d3eb9f08a6ef383ee707af0c79c7d1 +34d42917c1399b043a10467af4122bc9 34d42ece079714faee7684e8486c4a09 34d46db95c44c3c1670bd65274979e0a 34d4bb0988eeebc5c1ca6631f57b866c @@ -11960,12 +13362,15 @@ 34e063f33e5ac96462ef244650f275b2 34e1bab7711b1fa5a14cac97bd551c9c 34e1d7c1ab6f9a3143fd294827f16553 +34e502c096834fb2b822a63a792b0c63 34e6d9febc380a19281ae663b6cb43f7 34e8e046390f8df3707e3dbbf22a540d 34e91d8a9af653892d324e90ba14a502 34e947885c5f44c1daa21255c4fb827c +34e98834fc9487437300507b51110549 34e9c1278ed8dbc6992e65c64f7e4a3c 34eb0da7234fce20f108f9ce3712775b +34eb9b80412011b3ed0580e658a2f893 34ed4ef2e287eb1fd0fbb9b272e81573 34ed677f34e8cbf114b75a9bce00b919 34ef9c3f76a0eda0e9001f95fb411873 @@ -11979,16 +13384,19 @@ 34f68a836217c5e13d5ac0674dc2c006 34f9172b3eb5aa03545df510efb8bac4 34fa52ee18ac293b13d3c9b09fbd3016 +34fb995f7d14393f043528f8cf6d88df 34fdc059ed6070b48d21177aceaee474 34fed8bdf6017809311d714be160e0b5 34ff496ad475a4bcc2fc40059e32d87d 3500b6c3a1f058a330b8c4a73517ba34 350302791a742de2c1017d39f1e930e3 35031afd1f8c06698cffd04b0e6449e0 +350330562f4591e6f802d73e5efb35c5 3504857a15b925edf6813b41324d5de1 3504c7de8f17ab203adb455a53ae376c 35053aeef556830c6749976336e2cdd5 350578682dd9e664275c0eb49b1ff79e +3505b04dbd41be48c4e3f11b31b8dd21 3505e35789a3f12c4f497e2d7fb5e859 35060dc4f7024d3c13be8c0e5602b0b7 350644c3b3d16471291f69b1e4f532a7 @@ -12015,17 +13423,21 @@ 35173bf16f112480e294b3e6abe2db9b 35173ef6d7277e68ae01ac98e1b51c9a 351863e88351b91ffaf9d6cfaa1d5b89 +3518a065b10c6beb34a8e25a90cfa7ad 351bed3dd2b39b59b3c3e0b6c6c22eed +351cca4f03fb6b44d1d40d65c3f89aef 351da229e46656801ade3868ab68033e 351e2efc0863f8bd430425c80ab97286 351f6d05b1c0de59743600a10523e627 351ff1520666cafcfad55543a3dddb10 35213e05824a8e4052ccde61fbec58bf +3524bb8a2d36e525ceaf0006b8bebb9e 35262d96680866967722a810dff20941 352719b67f6fb944c3de565c13cb7ae4 352b646633b78805162ad783a6d7d403 352d4824a327d1a06172f725f7067522 352f2cc8e42a5eebfcd8478aa80c3dea +3530358e768dbf8f347d4fa05a5628a0 3531cccfd66b34eba85faa7aa0ca5f55 3531e183e4f880842762edcc2b649f59 3532b709e12b5a10b75c7f375d5520c9 @@ -12040,10 +13452,14 @@ 35386a80f9320a53526723301d03deea 3538a8c4611370cb9ba795a41d20518b 353b1c76822821b1c993a8df106b0974 +353b753ec95c04fd307950c7431c8f44 353bc2f3020101b1414cbc142be1364b 353be40898fc4734af4fdb45527709bf 353f457e6491a6f2044851872c0df887 +3540b6e477a29ae8e4d68da096a17c5b +35429c604f4e6857a673aebed98b1d59 3542a2669d7a07fd76774c77778560c0 +3542ac12135abe47a139950defefc202 35433738d2d2e6cd26a83fd500bf7fce 3543672f1d0ebbadacd556979af7ac10 3543b1460db91fd5519b213e608502be @@ -12052,8 +13468,10 @@ 3545e0e5c1cfd1151cc87afadb78ddf7 35468945cd3dc153b842773f9b1bec48 3547a296f60b101fa83d70bbd5af7357 +3547bc5049ad13c8deaf34dd820f1b4c 3549ab97d391310c5c4f67d5f2d4384e 354a3360f8d251c1325e0c07da19acc9 +354abf3411edf9e246c4bf4788023f19 354bc486a343aee06c8546e0032e330c 354be5a366fea08c953def9bc16491fd 354bfee52894b3a9b57d2ac173d622af @@ -12061,9 +13479,12 @@ 354d8723cd51d16af5b34fef0ae174cd 354dcbe73e4ca6f56bdf371774d62605 354e1a70ea955ccbc6e79615c60c2504 +354f545b95d65b55db8b768b24f08f81 354fd23e98a7ecc882a5bbc213df0603 +355027de4a1f55e31494e13f74e0fc3c 3553ed4b96662a01effec28b9741e342 355716015803983bc516148317adc58e +35572c90c9b08035e1d88340ec6ce443 355871025bfcffbfd381c696260f7d23 35591414ad77cce9a68f44f79cf58d1f 35598e74446651ed759cb05248b4c836 @@ -12073,6 +13494,7 @@ 355ad347f48a9528bdf54dca0254f11a 355b9424a2087e39ef85e37bf807ef91 355becc4d8481fd9a4b49dc8ea4fe108 +355ca5f5d2ea9ce286d0709b53649b95 355fa08df2bed5ec21caf12cec751a2e 355ffddb2cf7c7a72a48825a37a12463 35617504470222555503579fa77e401a @@ -12080,6 +13502,7 @@ 3564da0f16c083ef6f92785b5eaea1c5 3565a5e5cc32a91bccc762aa476e7c1d 3565e14e1b295e6720683de39b1a4b06 +3566c990e79f717e6cd49ef96e546cef 3567b1cb037db67d2472b05bb8b49b06 356ae6a88fb9f248ccbc23ad43e4d979 356af386a34daa1a4ad45d0600da3b47 @@ -12099,6 +13522,7 @@ 357947dc30fdc5898e354e549ea87c11 3579c4f28d3867eaae360164582aba53 357a65ac03f0d028e8fc19f0157aeae9 +357d3a4d8d40ffe77bdea4f371fdbbe6 357d53e2d6365c397659e776d065342b 357e28b1883800a06ecb672ef389c9e1 357ed70d2d83a3c85424a1269cf011d5 @@ -12111,6 +13535,8 @@ 35851e2205e653c457c2c6af467e5e9a 358580a3220a1fe1ae769d5a0b4e4f3e 3587c3f4bcd9a0a82f839f1772bd2894 +358b9f73cc5bf3453e97cbf412bb8d12 +358bdf9e4f7eb37dd495a013d93a313d 358d954b424717f1fd33fc423fc9b0fa 358da926f368c3e0c86c5c995fdf53ef 358e0cd5f27c5ad96019cca179ec9776 @@ -12118,15 +13544,18 @@ 358fa894b0f6fd3dd935bfd9315d80c5 358fe54e53b03393ca18a5dc342387e6 3592df3e69a5a28bb30d65dd50dd0345 +35935a8af2746dab8515c5c25870fcb9 3595b555b52e4d284bae533a060dfb46 35966765929789cb2b737f85550735d2 3596d8cbb6383688d394e225f01db680 359802288e0eb5a906f22fa283d66c31 3598bfb9ee2c11b1220d5c1615d1e205 359934b8389178f997d194159f171afe +3599bd6a298d5166c892906f6c3c46c6 359ba74e5e83367ed7841de36fd4fe36 359e97b8ea9ec5fc427af5b0d2e28c75 359ea0a00ceee5075efa35a423743075 +359eefd820b5b8986828be78eb1a0d20 359fab8ec2871ab5e7d0993ffcd4f102 35a3194e6d2bc3b28a013fe939ce425a 35a399f6528fc280d3ab7423365a14eb @@ -12138,6 +13567,7 @@ 35a89b5f970b126f783f8856d884285f 35aabeb7be3a56fcbad3a35ed01b491e 35ad874c3db451e6ca945f28f03d9cde +35ada80dd29a0adaa4da6820c7e303f3 35af263f701d94b9c9a2244252bc621c 35afdcc297f4b7050cf3b31d1e44534c 35b0bca7b0d655ac188e5714de5099b7 @@ -12145,16 +13575,23 @@ 35b342cb3e9ecdd353bbd930ab8be619 35b51ed42f0f5c9ad6e89c7d74176c30 35b5566a10b3d2fc5b69dae96f9ad472 +35b660758ad2ee7b74400eda2da5ea0b 35b93388f54b5885205991361dbf5825 +35bce33608f7073954dd06ab3bdb84c9 35bdca0cbc77d72935809a14fa67b823 35be3093f0e863c2520845071ee8ab8a +35be3dc8e0be8272c47091646c2be643 35bf2349ff6f24a34afa59c5567c36bc 35c0e03dfbf25d4e83e8fe46edb05772 35c185208820e9a115ff52033aacfdcd 35c2fe3993b1f3d5e81398c6f8968c58 +35c30e2af17598908eeed3477cfe8e0b +35ca62bf9e12f820ecf8d284ae655925 +35caa0503cd875ce5079d1064921885f 35cc023a1ecc7303427972efe186bab5 35cdd4dd2f2cb84f4b9902c744d6aa11 35cf739ae8c6b90ff17b2245f2bbd777 +35cf85878c3d50e5d6cf6c3a03c897b5 35d022dbf924569bdbe6c4bb21c925eb 35d12e580fcb947d076190be7d17249f 35d2d1f0bac25532d5ff58b85cb906f7 @@ -12163,9 +13600,11 @@ 35d5b994ee7f48410d3bdcce483b4c71 35d78cb1ff868eb397f24089fae01536 35d8af02757193c1df5ba6a6f5effc7d +35db2e89b58acd1c2c9e949e126ee208 35dbc32fed9c4eda6762b5c8ba05da31 35dcd2f62a4359c2963823e3333aacda 35dd78ff70b3d0a58b5d8ee4cb4cc0ab +35de7a36c17647cecb1040a877160feb 35df924e122b9eafdaf36934407debc0 35e2bf1a9ab710a6c65e24d4cdf8dd06 35e2c61b8556ffb308fa05fc64ed7bd5 @@ -12203,6 +13642,7 @@ 35faf73e4a65b02be9787709961ddcd1 35feeb2f6ba92f1f5d7fd63674c3e4e8 360334d7161e40c632f1137a7c4719fb +36036927ed91f39bee4696c5d2f551ca 3603d243177dee839081ec395b97b933 3604f52dadcf62ce5787aae848294828 3605da9bb07dafebdf800c5ffccdb22c @@ -12217,6 +13657,7 @@ 360e41faf225d9429a3fc27ff4818670 3611651e7340befef9786e5a6ceb0a5d 36140d37f217b5a219976be8ff6b23eb +3615ca564119df2740db35899c024894 3617c855a7ab929105611aca8fb889e4 361a4cf3c2b2bc0281d179c6438fce83 361afc3da8955c338300b2632ddeee3f @@ -12229,12 +13670,15 @@ 3620c0a45949e346a50d3bffcfdd4133 362206f33547e30813254b4305f7dba1 36221dbf386ec9a288be47c77f64e8ad +362341076621fc534c9ec01d63911ed2 36235e7e785deba6d13d7a9abdd69c9f +36240017481ae05c62a82db437a8d2dc 362401f944e7b72b02d5b50b85641522 3627fe077d95677dd4e500b750437fa1 36280b9d3f248f471ac6d1d0a3bb7b52 3629de86213fe8a8ff56e7639f263e1f 362a08a514c962e04b742fe77cfeb6b2 +362b7fcea5d07d9b96f9e4c472d0b574 362d4eb46651184290b228d5a12bf65f 362d89d2f9833d010001a94315a5951e 362e26daaabc4fde3a47991b09280a13 @@ -12259,12 +13703,14 @@ 36422c0231a049f9579927ba455a01ae 3642afd134c3dc23b28531e8dcfbbcc8 36431bd73da450cde5581e1e97193d1f +364343f05529be1c870dde2e5a3d5648 36437dd230ede47e048d2198ecbb30ec 36443f5b40be48a83a015eaabf46897c 3644647c5bc413d130e1d1cc36c7e197 36458b61cad6fd9c597d18599d0e2bff 364591cf543219a812c3bcbab729bc15 364a9b8864d641432103565c0eec8790 +364ab5e79b700044353262af175cf183 364abccd40479337d04cd97d6c9bda6f 364ae25a9edbd67352bd4c0fe682875d 364b1abf0abca92176a3413369409985 @@ -12274,7 +13720,9 @@ 365042c6b5de62835c754a3a0ef21a90 365188bc219752c56d2f5571b21c63f6 3653b366a5bddbb85bf0f6e673309182 +3653f76d093de71140f26f4eac93a1b6 365506a550ce11bd089cda77ec9749e6 +365560934826a6a43344c610a8bd5006 3655ad75a494d643e74356f7d086e158 365629146b96c8faa7efacf7258d0bdc 365722f80792676428419ce0d6868a32 @@ -12297,12 +13745,15 @@ 36650a567963f7e4db091b72af9fa0b1 3666400c01f90b032507e5f516cab182 36667c3bfa67c037166a5d4d2defc803 +3666ee231bbbd7a2d14c072d6c3e898c 3667f5215fd657efd0ef398680528ae9 36683973d0e7f7d0fb9b9d8c82a12e71 +366c8cd0631aa1894907947c64a1126c 366cfe2a0ca064d9628de1375b7d2137 366d4027eb5fe97a871d08412fbbb79c 366de2e7e7bdc430a4bfd25d2e5b8cfa 36701072e61543c7494481937cde388c +36731426e5f39347da64b5dc5aa71400 3674c7ef5d6244b6641eaa0ff184cc6c 367603d124bf505f0029c3af065bbdfe 367688e7770c0fb91ee0e1e8cbbf4281 @@ -12321,22 +13772,27 @@ 36869a6eb226f9a36f8cc5cbd78c2387 3686a4e8b0cb903d26e501871e4521fc 3686d36a56aade4b6a7662e9814c252b +3688c5d2efae8aaa4c232118220bce4c 368a2a1b89afa28ca102d920e6a56602 368ac7e4cb67d3ff9f3b8a39116a150c 368ae85875bc8876d76be0e699d45e8f 368b9e89160b08fde99a90ba417f2164 368ca2bca874e343a642b1225a534328 +368d694c8148039403077786d0137ab2 368d79bec2361d4bd0970aa1163bd501 3690fdf54ebbbb26b77e2cb1ee8cf2c6 +36923f18ea99b0d057716992f966ad2d 3692f2d90adfdd0bbce24a3804803815 3694e78b04fc308eb79cd89588f9dac4 369521f3d87bf056017f1f00d7dfed3e 3698fb089ca166c398e49e353c813adf 369a55067d0d3abfeba532f91fc3a65b +369b047950be3f3e0769423a872bb45f 369b2283114a1170063f0c6405d9f5ca 369c98b34082d5923a9e38d65c26a472 369e2683f997f47323e8ac51ee17c852 369e95cc8a2fe5d4cf9cafb60bdc7dcd +369faf46b3926fe1d795688933ac008e 36a0badbfec7273e4a88688e50d1ae63 36a299c0a817442a0bee919a4b438ba0 36a2d011a60c384d835affd3ae321fec @@ -12349,12 +13805,15 @@ 36acacfc08e197db581d129ca0313178 36acfe08e72a42f02f9cf20568aea38a 36afa407cf39e4a39af1aac61325343e +36affd14e6e779405f5811383792abc6 36b07189dca1530f15a804d7374cf8cf 36b0b4dc1761a921a1d1ac3ae76575b8 36b19e7b825a7ba381e72b62d8dd263c 36b1e0d1aadeeadbb9d3cda1da02b48c 36b4ed6a0528f6ffaf59cff9225d59e4 36b6a6ad044d41cb2ecafffa98b4bed5 +36b6be334750711a06800c1a5622516c +36b6f93a64a6d3bca7520f517e5f69f4 36b90dbd8f25c8eb6169a154447d7083 36ba21e1604c1e271723a996c1e8f84d 36bb2fbea590e6339a973e80614fef88 @@ -12389,9 +13848,12 @@ 36e1e432eb67b3ab227b794c06246db7 36e2b40ef69d5298d25809775980dc3b 36e317b5b2c824097c64b55419929055 +36e31aaec16c5a4413c2f942efc06a5d 36e31d8ec0cf3b1c0827b44ed200f76f +36e4255764bc71f561ada60e69422279 36e44838e5528980c594b36ab8182156 36e4de122f8e2ff30105f0c65648a52f +36e5df7e16adf0a3e2fcc3fbd93904bf 36e7870dafe0a4b3fe62d010f30d022d 36e7931a1f2a1ae942f7cb5cbbac7565 36e7cb473444dfe65619f45694341293 @@ -12418,6 +13880,7 @@ 36fd859001a51c999bdde24af5c9f24f 36ff69d050b8b11034ee1b54135ad25f 370073ea65ca7ec500ee16cdab24f6fb +3701f2ddf07c311464ddbd3be5c01f2e 3705e0354210981723105cea6a8e7f0a 3706328a4f589ce2a2064e0d2cf0d265 3706cd8aed3050587cb22ca27076701d @@ -12445,6 +13908,7 @@ 37239b1006ad4913486234ddde1ed1c1 372400120ee90675734c2c1c55bf0cd6 372627ea8cf613c532e9eaf3130c58cf +37267de284a02a70d611469b137ba863 37268a02cbd52a7484552cf2646cc1ac 3727ae623d27428ebd14013d0953d290 3727d8682aa4ea256bf438117a7b8162 @@ -12453,8 +13917,11 @@ 372d38284f8807d01abc278905867b1b 372ea0ab96ea67268a3ded3d7b8ee5b3 372f36a3d559edb629839f1ba51f70b6 +372fba78b828fd474359ff757f7cfb7c 373056a6924f1f11303b4dd070c16b01 +3730c8a782f6267a975f1f5eeb0c9ab3 3731cb99408db8b740fb36e06567f7b6 +3733b7762c9b54624ae42b63385d876b 373633edee1eacc3f6d61563da721e13 3737256a480dc58355f7c23e86a639ac 3737312d17a3612f56944674db14c1d7 @@ -12463,11 +13930,13 @@ 37398290e474262f59d8ee31cb6c59fa 373b4c36c80eb44320c2f8dddf4f7ecd 373c150f5d844d37aa15a799b3cbc143 +373c280c8ac9b7439ffb5bb79bd196cf 373c84df9bf35c83cc66e46d1473bbc5 373e73d9c82991a4941ab327d9031480 37410cf324a6da9702ec862e9fec7afb 37412466104bfa317c4a9792a93eb3c8 3741a1281514ead52617ac1c2c84355a +3742e43bdf4c1ffeb01e924362785f49 37466f74c81185ecb662cafef1ed13d1 374797a77e6e41d6d18c9560c459779b 37484cbb1107971109962e9821d96734 @@ -12481,6 +13950,7 @@ 374d6436b56d405e51870d85cf463c80 374df6b225de599e57fd764601e2e8f8 374e07c12480e048b81d74195f679ce3 +374f4fa6e069987671f396829b4db88f 374f75d3606c59f83d37fd1dbe915d6f 37500659a18c1bc7aa06c60ea3639c76 375052811c6d5b537c8780d763daf373 @@ -12491,8 +13961,12 @@ 3753722ec661e94c594f6404594ca608 375508c4c541f5c88656214655fef78f 37559f6756e387da95804ffcf7a260b3 +37562db8522aa8d1f276abc2b628e9b0 37569e83a4458db59a3f440841ec7ec0 37590bc1dbcafee92a0ac734cefbb050 +375934fc1ed28ce6bb0bfc6bd6b18013 +37599a1ca7350a817d4d1855d87b90a9 +375c42b995d079ed3a27ffc4af6a9f6e 375c92acd79d52c574d0c2ad96d2b02a 375feb3786fcbde5fe86c8418d105846 3760157d02865e8dc852ad2c16c4dd4a @@ -12525,6 +13999,8 @@ 377a3e1be5e7751287ec22bb049ff44f 377a4944a3dc437f0d21402537626ec0 377af71243d44c37ab3d8ab932ff948a +377b2111f28cb22d1d8ce428e7bb7b17 +377bfce0c02e1aafd4dbad64d001297f 377c52de027f032f7e35a731ac717476 377d103ebdc83a382178b6e0d5093e68 377d6cb0c13493bd19d69b3f4e62ae34 @@ -12551,6 +14027,8 @@ 37915882c5afa19cd5d5fe2809137b39 3791651de95a29ea9c1c2cf46b391da9 3792e4c278fb1a0107595e93b6c1e8bb +3793dfeca792f71e75a9667cf263dca5 +37940f0d5f436aa586ab3537abe96c04 3799f8d6189660caec8b66b880dc6b90 379a722357280d2eab92d3bf272427ab 379b379c0a3211bdd2097d66773308c1 @@ -12560,21 +14038,26 @@ 37a4f78e416161030170a86d118de048 37a76dfa76a5717fdb4e47c6299ddbef 37a8be5c3081a4b2f911844d6a3bb433 +37a95234b93ad049915d07c1c36dc7a8 37aad253cf9fde6a170db7b024fd7c86 37ab28c6d5e88ccb538cf7eaea2dca8a 37ab65da231844186767c43803b0cc10 37ac1e95a8eb62cd367380d0edb8cc0a 37ad77d1ced77d4c9c75861d9fd42823 +37ada19de4e0dba858783eba3d19bf25 37ae100070d3ea2133a14d4521a1d8fa 37b0ff09cc8456a4e2cd1f5f3596e946 37b1f2b61984976fa1f3d7aad82827a7 37b2bb56533684c3642ed471d2185af9 +37b2f1d8d93ce4ddce40190e6a8edca0 37b429315b4b81eb30d0c2309961c5c9 37b4e84b265fe97cd67f8a0db086ec14 +37b5988949acb06551081678bdc85ac0 37b69abae8b5f216eeb9406911a8c93f 37b6c42fc66af0421cf58511375d8e3f 37b9bbe4126f2dcd62e7273ff4478ec5 37ba13c00507e6e969dd9c9dabcebfe3 +37ba83612a9d787a9a20fa03d77d729a 37bbc06467e4157a48100a463bb9179b 37bbf754d3e6b52f1421837c92e1e9f7 37beb6aeba28a6eff94835140a146bb1 @@ -12586,9 +14069,11 @@ 37c3fb3dba86cf9efca9552af14c4884 37c424fbec570bcfce9d84e43da5f6c7 37c4988e079a07890742cb5869d93d3d +37c626c2b9b4053aa96975156a3d841b 37c77946606bf72703839fb740a19d36 37c82bf34308fe1daff99d866a96d001 37c8f6efa4e57299e4da294812e9d642 +37c930544467e778734c3dd74b750fcb 37ca74c2755f3cbde5582eaeb0a6e6da 37cd24035875dc17bf559ff5b963bfb6 37cde8321b0b09adb056b9b174e8c3b6 @@ -12607,6 +14092,7 @@ 37d6e7cde57cf69996525c5949b29ca5 37d73ae97bc1a0095bac8f7e176ea96c 37d871cf3709b7e03d35d1bee966b338 +37d8ede5f2d8f207e6f18a1826a27a27 37d99c1da922f0dc106ee89079577ec8 37da4943fdd878c80f7ec7fb2cc7501d 37db0633387cb6a3b7722ad7768dc85d @@ -12635,11 +14121,13 @@ 37f49cc8b3c14ef208ff7a43f71eaad0 37f835da61d0f02a5a7e2010d6ba4a3c 37fa13987c274e6eddabe0b5d094dec3 +37fa766b5b1edb6d92263c0a6fbe429d 37fb7d599f5bca9b183f3889f3826dd7 37fc175e5d9042b09bbbbaeba9a3783c 37fc411ee3d3bb7a0997da8d5a948fba 380129f93cc101fd06970e28d7c64082 380175c593852125cbc1245df048edbf +3802a19c0c9996e68ce484f3364e0298 380592b130a62d85cb8642a1ef38d762 3805c3650828442526014c1843f6ebbb 38067295d5ed9ed031933c0b6612aef7 @@ -12648,6 +14136,7 @@ 380b2f224e1d25fe32ce7cc5e891593a 380c5e79d89b743c1ad09657d903b4b3 380cb10cfe9a1b4bcb688a440aa5ec39 +380d4cabfb9f3953ce2bcef895dcb1a3 380e92ecc06d063e8ef13cbe0df9b679 380eb2f64daedc0c6539afdfb479ecd8 3812b26661963f2aed4183167d3bed6e @@ -12672,10 +14161,12 @@ 382854aa49127e8c5a40e6c1b89bb78d 3828d02a8cd30483a8a9a1cd7969e1c5 3828fd551cba85ccb8720a228d99f430 +382a10ac5dba6408b6d0db9e97807572 382a2ddabaea176b969df2cdd3e1c932 382a404e99d662cc4f86fa92f9a34684 382cae056ccd93f794f24916cc953c98 382d39b8e164afe550f330ba36de0f23 +382f744a5fc3937dfa0d2462944066b5 3830535c29b5752878114883b8ec362c 3830dcaa2a594f844f9d444689032df4 38311e31ecc76b3728ccd7b3dd8470ed @@ -12686,25 +14177,30 @@ 3834fc36301841b810a369353279897f 3835374303556de0c2b6ee27c92ce931 38374ad7ea5e759e4957d0a3ef4532b8 +38395bdb9585ae840ee6f723efd1c183 383ba686f2045bb094c39931ea8caaf8 383cbd64b7d192c26b9a1f2db5552eb5 383d16f5d7f16b4871f586485308786e 383eb6f8587a805233743cbc46a64e28 383fd2ce7ff30bc621e99572ada1d7f7 +3840f3384d9e8e28eb751d912041c2bf 384100a7acd33507781aab7c1c174bc3 3841bb90cbf8879098248f215c7cd2e3 3841e32dd83c63327e0048eb4ad7b1ab 38432202be381ff7cdb9919ec4dcc6e5 384473d074c85f4172806c42a1385041 +384537adcec3b20a9f4903d83372ed98 3845b7dc41356cc6c919d4441795dd17 3849b8054087043d011e8818de684787 3849d1f8bce17b4d85543fe0bd2ce203 384a4eb0276214a6e24c2a7691064876 +384a89184a65b21d61204a1ea6c3842c 384b01f856c9d951beb1d8f3351cdf8d 384c2720d2059005a0b989fc20da974c 384d314301425860404d40c30b1bba21 384f5ac890fe9edabfe4f3003fc44c30 3850b7b9b8d7252e39a61f7ba5dcc9ed +3851f7977281dee00545fa464f1b1611 385241904542b3cad90d7e70a56a4781 385280aceca791bd9154f988eea2d71a 3852c6e672d1a2bd8f396a3590a89aa8 @@ -12723,9 +14219,12 @@ 38641bbe6aa7167add462a4e7c6fb1df 3864530cff742baa812897fd8a848028 3864a321c9b826697b0581e9d0ed89fe +386678cd4147ccae405e78a8d7254df8 +38685aaa625719e6ddc42e59b9a53163 3869503dc3a885296d68ae591693c144 3869a6ff77378e2b5a72ef047e5f75ed 386a2aad056e6d4a8b08a26f606e6563 +386ad16921b442be3aa9df05890d6aa7 386ae2fdc0bcc7cecdd4f789e13d60a5 386d68e56ea66ebed95b4cea96b9dc20 386df2f7450c639751c7539626bf3256 @@ -12735,8 +14234,10 @@ 387214738a9afb518321e0435a04c760 3872692583c3a1a192ed1d744bab97ec 3873e85963c3259bd3b84598d4f05794 +38768c2eb48ea20e56ddf9a3f52e01f9 387740c93324b07278b6ac261ecfb33f 3877ff6a9df884464f134b056c3f187d +38788db412941dd4768debb611a00f8e 3878c45962fd4cca4b933963aabcf542 387902a941657e9e1fea0c8d29def463 3879550d78b396c6f09165c9c1fdea01 @@ -12746,10 +14247,12 @@ 387e940d7d15e72a55d2a767b697a45e 387ec8f335bbd23ea8a876479483ab5a 3880b0b196c68fdeb7aa6d79db894f02 +38817dcdad68a54711d529c1f33068b7 3882ff3514104cb6756130f5faf149e9 38848b9177c70ac0dcbee14c0a5b48d0 3885d6825c8c388bb6c617d1fbd27e77 3887139cb45c2ed31449a74d99da07d3 +38877fe72de474a0ae1d6e49cdacbfb4 388a6932bfbecb0fc10ffa55d4b0e1c2 388adb81256d06591864ed709ece3863 388ae4fc30124375302313797beecf64 @@ -12757,18 +14260,22 @@ 388bf42c34ee726078fd2e16f1b872cb 388d896e9ed2838aed478e95caae4145 388ea15436cc14d3a5a816f8304fa067 +388ea6c901bdb250987f47d7f006e443 388f0d22a1b18ec5b6946df7215d8a36 3890820b7796c2788d9b31ac5d8ede9c 3890f7182cd3859e3915562a433b9918 38931cc62bb9c48c63128af6e50a6910 389486b779fe51408c1b41da6d1765b5 38953244e27777b89725a88c412acc91 +389609b96094c3fbea63ceed6f736d7a 38969836235858e33103591b733a0bc6 3896bd4d6f6e19ce2bd4289a05c9605f 3896d3d45e3ac3a41fb08fc16989ddcb 38986afdc138143ffcfd992548481a52 3899fc43c23ae9e489b0609b270c864c 389a48cc1e6c409786568c935b0533ed +389a5f7c230b38fde500170d40ff7701 +389adf5987e5222cf8d21be502f0fcb4 389ae0a06fdd3b0ff340f45f06054522 389bfe90e64944ec3806ad6dc83b6205 389c7141a3498e6e3bcffc5082765abb @@ -12780,6 +14287,8 @@ 38a428ec47c89636cded57deaba497b8 38a65ea7d680e2100e7eeaac1b7ba038 38a687c70ef019e4cf868480f5f69cbc +38a7c4fe44032f6e44c3bd1d2d319e74 +38a9cb4c0f8a0f0c05622963a67a3f29 38a9d49cac7318ec61c62009ec00f24f 38a9d4f5e0ab97ce728e3d926194505c 38aa0a58a02670e0c53ad764d83a6936 @@ -12812,12 +14321,14 @@ 38be962907ad98a0710d6766ad1e042b 38c080c58cfc8b06b55c22b2dbff566b 38c0933d114b36106dfcc5ff16aab35b +38c2e231805abbd41a95fa770b6a0af0 38c473be890d122c98b9063e8d8fa68e 38c4f923fd5d47ae0825466d93c4e2f3 38c5a093b2c8f514367dd6eeb47390d3 38c64d97ceb5bc4a9fb4253319f70de4 38c7e359c5495d5964b0c06e59cfa94c 38c869d43620bd8df938af02709620b8 +38c89f816409734670b7ac939da3a882 38ca044a5254a21f22fb55674a85b84b 38ca294a640a6326fdb8292c0c6cb61e 38cacd4b76624cdc3773c755abe56017 @@ -12836,6 +14347,7 @@ 38da4b04f859883d3494755c8c1ab2a3 38dc3cd31070685122ef3e4e56f1fc92 38dc848dc1d81fa39e73a9be9f97f1d3 +38dccd6fc91235cdf9280c75c74ff560 38dff965761a9f0f175b4135eb213b59 38e09e4d5296f073d77569c0e7b7dd5c 38e0e5e826b875558d681b76f005b30f @@ -12848,22 +14360,30 @@ 38e6a28485336794c806df4f592f4cfc 38e86338039fdfec21f249033012c57c 38e9073f9d690ff36edad05a1c5d080f +38eb06e9baf43f487b25696e079e9325 +38ebbb28509bf98be4522a73988d9ea3 38ebdf40e1ad9d52fdcb08b90217de61 38ec0193943222e18158fa6c3cd97200 38eeb5092e3519fe4b879de259ee580d +38f17ea5879af1e6a1840709f781cb08 38f1899f8a8acddaa704220cf63aa32e +38f1d6954011ab6c354ef71c01c7f325 +38f4297df4c431f66fb8db9d915bc3df 38f50d4824385cd373926ef19f81d02e 38f575a4501378871060f7902b3c20cf 38f5ccaf6884ddf051a92a0889795cdd 38f80f821108c3bb3e8d383dbd2a1aea 38f92878faa503adbe0006e42d8df751 38f955e48333493ad96aafd14bb83c09 +38f9c0aeadfe1fc06499c755d50af1e5 38feb6f2286e0264a047397ac5777fb2 39002a69a2f63706b5d579d8f564db8f 3900c3ce161b184ef96f17e4698e2107 +390123972f32551f84df309e4037aceb 3901619b0d2aabe58f2daa6963a3891e 3902daa847c56393618cfcbefdef04df 3903a24714365f12dd9d9cc4c80e475c +3904c189b0a64f80797627e3399b5911 39067b50108aec28f845a731b6b4ea9a 39074b77548dae862d53f85ed9b43b71 3907765112304347f382a1eb46a2405c @@ -12875,8 +14395,10 @@ 390e41b4170ff3fabc9abd1e2ebdd410 390fd9c3bb478dfda6535cbec34901c8 3911288eb8a975bd292555793f569812 +3912c71310ace362153d2029655b9381 3913217f36c53e992cf01b97663bf247 39134c44251dcbd1a692147def393e96 +39145d9ce7141902148af1821797aaaa 3918a7c7543bc6386cf2ce3da8933019 39199e21a762e51e76b6a3206d897e25 391c775575a5212beaca21ad106dfaa3 @@ -12884,13 +14406,16 @@ 391d4ec8c7388977e6cb61878bf36521 392242245e3fcdbab1e875075ecabaca 39226a34a3310c19b56c48dd64bf354e +3922e5df52570110241826b836b3993f 3923ba158cd062f13fb363d9655e83b7 392491a0081333c4aa61d2990aa23cfa +3925574726b3092b2a8e7044c434a7c8 39267fd9249e4ef103a5a6090598d593 3926b631de3e6a5721cbe6b58b7196e6 392702d1e7fcf0d5748420c631803d76 392742a8e5865b229a4d96ff0a7c8b6f 39296c293859df54a6263b783878d347 +3929ec0ba70f9e317cd994708f05b7e7 392a71a59d43fcaa817a7db9b54fa859 392c19244b1bb724b625d662e898dc77 392cb94fe709675930abc29dc23d5185 @@ -12899,26 +14424,32 @@ 392f4d2cdbbf1b9bcecd3bf9de36bfcf 392f864a57db196523d1d77d24940c93 392ffe1dd7324d08d8295d45a5b99842 +3930761788e9cc96ef689615c7668105 3930b4510de2f1f8e130ac49908fde07 3930cf2401c3325754a0a9f1a48197ef 39316a03c05a4dd4264512cb80803204 39316b98ab699b1a416845c2670b5703 393195fb550244f3d69198beeccbb3d8 +393324b96ec9749abea0e8f8f537942a 39333378cc28300a756cc4fa57724702 393334c1bfd010d1b0151477ba4f8839 3934c81b2b5549560b9d9772641651bb +393630336efd2b7e4dd4c8ed20b28b92 3936b7b3a5a824d194686f886025026b 3937eda3044b761466f8fc7085ff3c42 393825825be450275def89eca870adab 39388b572d0e31cf1f7579fd48fd366c 393951ff9aac5312c9247fcaddda8b5f 393ba59c20a3965dbb4c755597c9ed7e +393d559ed6d44553f8530b0453d50e30 393d8af3d34f58f52d0669ee93c5bab2 393dffd5ce3941b5316f1583c8bac63d 393f35196c96fd32feb01df0deaec14f 393f7d3096ea1b7173d0ac2014eb4eb2 +39402383f452cf7abe27c47ce3740d6e 39407f705a6902ec237fbb8cbff49d1e 39422d454984ec0c166b6651ee81b62c +39437e19fe300ae543e68e4e5ba29f0e 3945022d4fa0a72f6ef1e53271e64044 3947000cc1ab087849253eaf5b9b92f6 3947e6617a97667c59b200e4b37fc48d @@ -12945,9 +14476,11 @@ 395fe15ce0cbffd60cd9065a45d980f4 3962978bac5af3b4d378d62da1748c4f 39630bef2619af7834fe4caa4a8fb3af +3965cbb58514ba149ab871a501204625 3967f3cf8a9f3c7783fee3329c623941 39687392dfbb4d1620367b4330820d7c 39695905b8f2e03f08b2638ff82b8a91 +396978927ac55e00d0f0ec4481d63fb0 396aa646b0e228ce012a14c7747cd831 396ae097f8ecd277c008c789a46b83f7 396b29ecc81b7e1c0d446d72154f1d82 @@ -12964,12 +14497,14 @@ 3976b7ff5dc1854364b909cf28f8a7c6 39770e8c679763f4607c6b206b8a3150 3977ac20e8e7d188da60bae181e2c986 +3977ae30a6042f917e748eff0536f445 3977d0e645c0648d61fa636200c2cbe0 39791e6f5794f65c813a398d5162ac09 3979ce56a28a81e87fc7e000cfe3d6c2 397b93bf35a03d94945d1d16ad18edd4 3981479dbefbed4fa4aa5f2b4d54edc2 3981e20336f50e93c9ae12abf8cd47ac +3982f2fdd5f86fc19a716eaa77c3426d 3984fd17b852a1b50f23181363910bb8 398594f157f0bc625f9be1da568d260f 39859a4ce83c7f0639c8da3b39a5f099 @@ -12980,9 +14515,11 @@ 3988e67b49d39a1fb154431f07d5bab6 398a063f8483162d7bdb3cfe4ce79c98 398cd2222e45a5216e856710c2f311d1 +398cd2a7ce8e9ca1446fb965c8efe1ea 398d01cf88ab990650e2b4d9b22474f7 398e3db1cf187d191c8b2f7fdd5fc5a8 39947c66963dfab508bbed30b4a014f0 +39948e9b8dc8d997112fcdd87d92585a 3995484da1f00d031aef6ca4408a22e9 3995a355b5fcea07d6194f5b4f20d3d4 3995a81a5adbde2a1252d66f63e3641c @@ -12991,17 +14528,21 @@ 39983c15e75fe38c6584e75c57ea22aa 39987a4a9cd06bd452b44846280fa1a3 3999d7641d3fc150517940285ef33fb2 +399a650c7dc3eb5049865cff780965e5 399b31552f81eba91c77e43ef329e51d 399bb49adb4c7133869309c700b043f2 399c10de0eed9c6912f55294a0de3306 +399d16abc212551c2cf57cc4fb5820dc 399fb160d5286fc2b69806eae1e59bae 39a00217fea3207cd155c5174a44963b 39a075c22d2883c45ec719c850990754 39a191c572927c09f5472d5f75a1103a 39a2882a0c4ed5e0fa11347bf2f0dba5 +39a2a389bed67e20b712759d2f411cd3 39a345cc9fe610601b4d9d0066fd71ca 39a70e89261ef8f375d3311999cec886 39a7111bc91f027c2f51858c12228737 +39a8cb80d54ab3e522cf6294da4f2e63 39ac4187ff50379b4a5ca9558f8d0231 39ac6e9d65ba069fee21b4604193657e 39ae157e53272d057af64d8b9e4b502b @@ -13022,6 +14563,7 @@ 39c285f66fb5bcfdb6948bd40d7afa72 39c3a655a6e51c4ac2f25d14ac4dd178 39c3a93f39fdd55e203e877107dc047a +39c4078f4de23b4221f1833191e95f82 39c566edc244b792c7f4cfaaa9f8d33f 39c60666206c365ab578dcaac0c3e98c 39c671bd17ebf8039d15380f71582ece @@ -13030,6 +14572,7 @@ 39c7d06a37aff7c848ba601dbb254475 39c7f46d23e9aab70ca7ce612c855273 39cbca859956c7c1e4f2f10e50505337 +39cc218a99a4efc350542a52be84b12b 39cc705ca6a2caa52460403767de884c 39ccb06e496a4fac62fa124f83315e77 39ce113b1945fffd1ca7ac667a211e16 @@ -13046,6 +14589,7 @@ 39d6c449ad8c5d1168a7b431514fd98c 39d7640b6af54c1ff5bcc149683984b7 39daa799204de0379161d96b00b5e1af +39db2ca93e42a9d7321b316ba495f73e 39db3ddaf8aaa523d062d31cab40fbad 39dcb047beb8d8023fd3e2c61c07d78d 39dd25df42cd767e7cea39e9ad45a8b5 @@ -13080,6 +14624,7 @@ 39fbd15325f6c84536b7edc9a777e823 39fc5d4a4c8cff37e7adb649eb628792 39fce25f77ac0c5e4e07bc7806a6f30b +39fdf208f8b1112685dded43897381ef 39fe8946b9c87d66ca2838eb3045679e 39ff6881656172f2227e149420338224 3a005bf841d05a7bb899d2d149fc8d4e @@ -13106,8 +14651,11 @@ 3a1dce94257c63f5f9301f7e9cc26628 3a1dd198a5dd1a386ccf4fee96f5153b 3a1dd45e916665d91bb429f44e588f72 +3a1ee9806db4a3f1d7994eda918319f6 3a211f24cfe276e5ce189859d7f06af3 3a226c966fcae6d4071bb29ee9f36f01 +3a24c6ce19c77d1619e5a6b053457d98 +3a261a8f3fdab836a0580566e128f793 3a26ecd8a19a179d0fc04af27128a406 3a2743147b4372ebb65700a1be5209ad 3a27bf17e85342a7133da5e8ee042e4d @@ -13121,16 +14669,22 @@ 3a3084a9dc688ccc919b36694533e1b2 3a31425c4afbc90ea28f9fe971b84ecb 3a31a6ee30d322f75496d81698567eab +3a31de24e96eeab74bd1595e5d1e427b +3a31f019940c396f9d52e5fbdd5b8967 3a320759ba3d55f3ba81fb47b876e154 +3a3214acf5726f4c817195f06aa829e1 3a32ded2508c3392df89be630c5d7c92 3a335f9e0ea7f9182b6ea435865d675e 3a33d4f17f53a7ace5beeaa514277e0a +3a347a970e6504a58da1a46d5a779f61 3a36614df64ec13cba87f99902531ebd 3a38b3cc4926d4061d8ef28df1c1bf02 3a393d06168a432d98f57b7e4ad72258 3a3ad495ca040056e0fa2d8ab23f2da0 3a3c4c1deadbdbbf26f602b0ead446d9 3a3e7542c91938964c7cef89a8c6e9dc +3a3fe57885ac2c6d6c3d7a75ec7ebdc9 +3a40354021f72ea679be806e9032ce39 3a40663513fee08f37c5074c5b42342c 3a40869ca6e14cab473f5b1bf0f94244 3a44198f58f48c76d3bb028461a21c65 @@ -13150,6 +14704,7 @@ 3a595f57c78ea85a3f281bfce636fbcd 3a5b072d08e3ca77a44e7e2828571634 3a5b8d5e799d6d5aeca0031a54b4c092 +3a5bd747c9bb1139aec365de49cb6f22 3a5d5d70621fd68d18cd962da40f1d97 3a5d9589dd1e9be5f48a5fdb700020c6 3a5f315dd58eb2c34dcedc8eed3c7d1f @@ -13158,6 +14713,7 @@ 3a60725ae776e3d7017469566650ef8e 3a612a7ca0ea3a7eaef57be98e0308f9 3a61386e428105b303cccd004886c80e +3a626eda43c10fdc71dbcb92b8f1ea06 3a657ec0fe87e26bc37a67dc191cd3d7 3a66249e00d66f042a350679bb05ada3 3a667af9af9f79a4ef6a28b78515cd71 @@ -13165,6 +14721,7 @@ 3a676f830d48a97faf6b3395b7f3a27e 3a68747232efc550da0ace090987a76a 3a68accd74685d2fa832d5c59af8b59e +3a69ac61fac87cf02f6cea6e9de75ab9 3a6afc21828452d53e2ac1aec5a452c8 3a6b3a686025cfcb02afb86a04dfc388 3a6b3ddd298c06f09fc0516aef0b0644 @@ -13183,12 +14740,14 @@ 3a77d69fd3db5daa581a02d3c094e20a 3a78a5125cee5cba31500ae5ac3566e8 3a790bc8fc99ff9f1b8db831b20a84e6 +3a7bb368ee8abce752898e254fea2cea 3a7c5aa9f82522835e71f8efb0b306a5 3a7db8ed2a3ed7985c7f1e43848b9db7 3a7e77c29949062a778665e75d821f3f 3a7ef1cd82acf175bd8464148231e10e 3a7f9974501fff65b49e3829ebdf6801 3a80f4e044a01c70b0bc4e6027a6975f +3a818cf6ce0b5d7befa7f473064bba98 3a8346fa0f3d6c5d2a890a4d8e12be09 3a848ce943b4dc20656f5f33bdf68759 3a857e52356a0825c7d292fe10a306bc @@ -13214,9 +14773,11 @@ 3aa16639813e45113d374d0732644828 3aa1f46e0d10c1366ef28c23936ba890 3aa21549c6c8e3bdca1d49f3f3e363ed +3aa21db8b17e39de7a55f5167e806211 3aa298ed3cdc4fb4b0db3d5bb6cd4f3f 3aa2bb6ab34f7284a98f1927e1c2fa34 3aa3d80dca3cd4ef4b81e6a43c6b1073 +3aa414bcc203481d185f0e916700b8a4 3aa6669452dbd6184cabeb67da46aeb6 3aa6908dd15e45b046f17bc7c8aee43a 3aa6e047b6a695d6548e1ace434ec5ad @@ -13224,29 +14785,36 @@ 3aa8e51bf54448b01d61d568467dec0b 3aa92d2a07e833a2ecc8b4b9ef98f540 3aaa6e22a47b429eae81f57e1a8d52c2 +3aaa807e5e0f0b571fd1cdc5fdc80a01 3aaaa5bd75c52ae8888ef40abd96a1c0 3aadb657236762da5b3e8a7ae1e85d53 +3aae6f4e76d50fb46d31fb8b4b26065d 3aae840def45ea99e5e92a87f29a7476 3aaf520570c69dbd3333917b059cbbae 3ab051010c5f0d3b5c181e67e614f3ed 3ab08eba5b1d3787ef20e242a6d47c11 3ab0c8173dd2b246282a74097d279796 +3ab27534830998b67c5fff236407bab9 3ab29d1e36ac7767bb5b769768454456 3ab3316e3c5f426a46961f7a065d6a03 +3ab35ca76e1d2d076241dd4af8a5649c 3ab3702b2c3f4ed9da31b70cdf70d3f3 3ab856ad90752f4add7da2e2393ccd55 3ab887d352edbaa3e54b49e06332da90 3ab90c99b30d4b832edab3eadd5f468d 3aba5b02170303d93ed8420d18ae5f8b +3abb214c0ad8995f20c45fb52a81f86f 3abb60a427e21f55e2e2601db92710ff 3abc409eecb30bee30a1a88a09699e4f 3abd9069a548fe930d80c241d0db2e58 +3abdba12fadc39cf5a76792d2a41d5f4 3abf727f6a140e9fbd0d93e4bd9141f6 3ac0ba454f3eb15f7ccec9daa37af963 3ac0fb750a8275691b7a538938847926 3ac143be7967ef0eac2cdbdf9dd70050 3ac1de1233080588dbd0b515ebb547e3 3ac320204c1e9a4970d58b68bd709ec4 +3ac320f3fa2af956f4c7ad6a717594c4 3ac4e8646ef0385d31dacef549c54050 3ac50bf2f7d2d0fe4a9a25f9c85e95b8 3ac52710c55999bb0958d054792919a7 @@ -13255,6 +14823,7 @@ 3ac91a8cfaa9047d04845b167c87b04b 3ac9321949e0184f430c22e9dbd1cc35 3acac99e03d6687127611c48ba11138e +3acaf80a72dca8681515a54bf804db0e 3acb221c07cd33c241367cad372fa99e 3acb4b0475c89ba5c73e8b99a8cee9d3 3acbb0c5b5765e06a57bbd124576ccea @@ -13263,7 +14832,9 @@ 3acebc8ac46a6846faba3d2602256699 3ad01a65840245d5dfd035f2a92443f2 3ad0e489d11b828834f2137ea2582bb3 +3ad42934aa7df96d5cf3d98107a0bab0 3ad55af032fde133b721f98ec4300f9b +3ad6c459eb13601809d5e090ceac3498 3ad7326fc1a18d32f1e23733359d0777 3ad8dd1d1bd08a9afc5d44d9b90bffd3 3ad96737c09f5ca625b413e9a866534c @@ -13273,8 +14844,10 @@ 3adaf3d172eed183582887bf828f1498 3ade2406aaad19331447cc6f1bf78ef7 3ade487258178f78865b0af0c9dfb629 +3ae15a2379519ed7ef89a0288b75cef7 3ae403c69edc4d50abba199e93b39f87 3ae4cd097d8eec959ec2351153fb6551 +3ae6011aa27e41988adf7f33893318ed 3ae61795af6b41b472486d31e9096848 3ae68048fbe7f41a1edb570a31e8fadf 3ae6d40995a5da596b514d62a95fbd38 @@ -13289,18 +14862,23 @@ 3aed22d279cbee8150a7daa8cd71cdba 3aed27185e0995d5363788d2c9102eb2 3aee24c8b5bec82def4197727eb6d325 +3aee86a58715d5fb037365ecf8599832 3af14b98295d0ca1f39c67b89ea2c1f3 3af1a9370928dca6d28476a9c7587f6c 3af1b86d1baaa8a13f624e9cab9eec07 3af2f14529a782b5600bc6080154e384 3af3db528e9dbeb07409d35b43d14e4e 3af3e8509b185ee913a787919be79eaa +3af4ccc76c3ae34c1e96e8524bc3b78f +3af579d569e247523de29c99009d627c +3af6c5052ec9830d4782082bd5dc52bc 3af7289bca97fa75ea0b82c97aa73a5d 3af82dc6c3a135ef3c24187142311cac 3af8e8af7d71f5d39ffe6b047461ec04 3afb85ae0175811b92414f8859fc15b5 3afe04176a8d40e1886a03980cbc52df 3afe3a43c1538ace3e595358c2d82577 +3afed14721f396a3fa022a5ce0663507 3aff28203e07fec1e6cdeda91fdf383a 3b01083b32d1c9c4310c9e79b1ebeea1 3b017562723bf14648e5a3a6a8fef9c4 @@ -13314,20 +14892,24 @@ 3b05c7d9dccc31342d888de0d7ff4d9e 3b0674a7d7a4be60b84d289af9e531ca 3b0689437757c1b265ac8caf2be06c72 +3b07604a163767e266a28627b9687127 3b0863df941e92ebca66d91ca8710f4c 3b0881b571c5870b92b87a5ede107c4f 3b08b7bb2f31bf537c13541f8887b312 3b0a39bc95f731d961b112136b7d5f1e 3b0b6e2797c1f33a505ddcae0323d7ed +3b0bbed81dbf0526808b2d525c5919a4 3b0d36611c3e381967a9493caa122742 3b0e6b04137ed435eb3bc7462447dbaf 3b0f09f6dc80bd5a2c6369c0aac4b49b 3b10c3b758685326fb8b0fa9dabad5b5 +3b14005dc97df7105e3ba1b1fb95d29b 3b141d5ef3d926be4a8dc49a82f91ebe 3b1480e5dfa73eaec07960dcd3386426 3b14ed56a08209bd12b90c252f41e0ef 3b154cd1cefea5588955ebfb56c3a5bc 3b15904e5554030f34d86643a4762fcc +3b1737b3ac61ab3e54021a2b4ec7b78d 3b17c0bce5f6c3fffe5d15713713990f 3b17c109079b083c5dcc9e44b1ebbfe9 3b190309ade5c1dd84021b6db24e22f8 @@ -13335,10 +14917,13 @@ 3b1a585ac2af0c70b1878b1a053f8f1f 3b1c02e4d1d4ee930a8e5511cc78e238 3b1dd23289ce9a672de7b295ccffadc3 +3b1fdfcbdb76de1ce0eec644490f57d2 3b20b7a9831d76f28dd8ffc229f24f88 3b20e6dbbba92464b145f8f8803c1244 +3b2290d6197098952f8715c5772c2b2c 3b232a0288353f9118c1840ab82bb85e 3b23a79e7c835019c85b71e71e00f466 +3b23b2eefe40a10de4b6288e885cf89e 3b240194f4499e69336372c4244b1c31 3b2906ef63a0c30d76d60fa77b164c43 3b29b555425f86927d10205ff7a9f2ea @@ -13364,11 +14949,15 @@ 3b431526fe90fa2a22d6b0c6f3174c03 3b43c8f4c97188bcdebdc7953c021e0e 3b47db796b8d1ed64610fe7c919d57f7 +3b4823e0d1bf221025f5e076dd9558b5 3b4863a3af62b57aeee0ef91e052e41e 3b489d1d8d85f7aaee9a5259d2d57af3 3b49d503d63e75c35c8c67813441be6c 3b49f390693e5fb48b7e7f170519461f +3b4bcdc71cd523153b976033cdb1da07 +3b51947b61bcb57b648fb1c0ca7a186a 3b52125835ed0b7773c1ebcc3c07a73b +3b546890044de1d978141fd3b9b90463 3b54801de0ccf00dc571ff9ca934d728 3b5492065772b0019aa2e58c3946ffce 3b559945cd7b3d5d02585595c6d8da6b @@ -13382,14 +14971,17 @@ 3b5d0b964c9c4f99e1ea9ac942254df6 3b5fa2d88cfe64fafc7e1578f3480601 3b60481de33e0f5e19f23c20fc1f5058 +3b609cf8a7104a5370af94282da7fe41 3b6586cd72b3bdbbc162d77a9c1cc8bc 3b6c1c1c38f57aaeb5d5357e71ec1990 3b6e31c76860d03bb89b00551bf3ab86 3b6f48e6236ca3e82c1e6c7791071e6a 3b6fe49c67184602e6cafa891a23943e +3b7002e267c875fae48165d92e30e9fc 3b70b9c92cdedb981e4fea675beb08fd 3b725def4eb6b76b0fde2fde7156af3d 3b7631dfe2b8da532a4ee836f11d7872 +3b767542711083e8b5780f772ab590d5 3b77ee8b87b7ab2dfcf205fd09721ed9 3b7952a65f91c133b66cdc0d15bac0cc 3b797f932e334ef4d7d5ce5f043a8e61 @@ -13414,9 +15006,11 @@ 3b8c8f6dbe0a4dff69966db404726240 3b8c96216059a790a34c15c7c1c1c075 3b8dba4b8bd0cc6a155187959b9f9917 +3b8f08c62fbadc3df3e64ed1c2eb0b8c 3b8f9728a76fd52599aa6799af1dcf96 3b905a970cbe626caf135bca4fcef131 3b90bf4f2781a30deb87976c5dd8fad4 +3b913936b9468c85a66851f33bb17d59 3b92b8d0d597ee47622c1ea61a787fb6 3b92eee6edebfdc56483d87d98c465e5 3b9418c7c66ce800eaa056fa1e2dff25 @@ -13428,6 +15022,7 @@ 3b9ac33c33b817421a905023a81abd6d 3b9c32082f4f712f82ac36da43f133a1 3b9ca3f0a1775b5d239a024087a6c89b +3b9d340a1b8aa78ebd186fbd5f75f69f 3b9d410a5523812237fc067aeedd9607 3b9e584cc5ee8ee437c09e4aa122cbcc 3ba0fe61755a22a822542ea22a6e9671 @@ -13453,6 +15048,7 @@ 3bb3c85b2906531c261a20be2a2dc3e6 3bb4a8fd1b4f6ba6ab89456eb2d4d24a 3bb540bc22567f94ab2bd27f78a02d07 +3bb5bd4d2645f5c665b9d0bef890048c 3bb5d2b691b4d4fa01d9b4c2338d2619 3bb665ed6bc7137f6eb9ce3de733d788 3bb6945b98c2ef568ab00a0a2b22baf1 @@ -13462,6 +15058,7 @@ 3bbc2f6b0bf4de92e3194ed41a1cd683 3bbeaef36677487c631840274a74aceb 3bbf1265662702f9ab80f4da251a43f5 +3bbf19bbdd0f403f889e58f47dd9948b 3bbf345d324c8a440619890ab720a90f 3bc07b4ff50675164b4fe55560fcf78b 3bc1aa4203f9d63726a752406f2313cf @@ -13478,12 +15075,15 @@ 3bca24c03ba0e86340114b38ec5e7c35 3bcb65987d034a35efa7564ec62fe134 3bcbbe2228084f7f0a6ccd7cb7ae101c +3bcbfdcd2962c044a0b5476941713a73 3bcc356a3bb887e5197bff7099f77cec 3bccf8638e604d7b97851f18fdb47f1d 3bcda9752cf77c2341105215eee48d4f +3bcea81a92a77da416659ce2eb2b1676 3bceacc6bc913ce4da27bcbedfcbb4cb 3bd016a11100db8a4928ade809a1e56f 3bd08056b7f250feb3894a9d3a6d07ae +3bd17e823185e0421d1c1782b3dcaf77 3bd36cd5cab0768f009f5cf0c73397b0 3bd4778c7b81b92271a8de5eca1dd7b6 3bd4fb3afa03383df338a1d7796a7ae5 @@ -13497,6 +15097,8 @@ 3be0aaf090bc082a99ebb50712060f2f 3be1ac6fb3d15b13e2429a33b90574a1 3be29f8c77682d7a6ebe3080a9e4b6a5 +3be5212736e398d254b06b22f5d98a9d +3be550e38f8b18c92c9cf382ce3dc73f 3be985fc58de16b34117385ce9708f7e 3beb63505bf9320f08cf6ed66fa2498f 3beb88570ede251539996e9c9b94bd68 @@ -13528,6 +15130,7 @@ 3c03e6e2e2a27e6405d0e45c935c9c1f 3c0401ab0915581a6d3d4bfc936d8df4 3c05854c39b99367751fb54a0dfe0c0e +3c05b563e74befeff58b98f725755b72 3c06e5c2de1ff0b9da9325797ba5d2f4 3c07d6eaa59bca6377b38e90b7fabe3e 3c0ad9c1c215eb546168df46c637ac6b @@ -13536,14 +15139,17 @@ 3c0c9c1647bccc6dcdc44027c1b28a5a 3c0d45d1f9edff689b0e7859d368af7d 3c0d7a5f141a3b7bb8ba8a92adfd5e0e +3c0e152636e755e7ad34fae2a5f256d7 3c0e3150fa61b37f1ec87fdc0d19f02a 3c0e4295908f0fe9f7289220c08a0025 3c0f1bc1da419bcde6774b726be27e19 +3c0f3777718993a4c4e16e4083275247 3c132070c5d83f1ff29ebd54f078bba0 3c13d79447d52bdba2c1b3764559373e 3c168f0739056be2119650fec2e1b3db 3c17995659584892d4e9aacfd7438342 3c1822000c7b4a41b3eb55032841b10e +3c1a05a7eea9a67f8e2c7d03fe3dbb68 3c1a14bf52deb2d61c3fc8d8d16db32e 3c1a29a68b1e9c113b599f4d9da7e15b 3c1b2f1ea1d1974ad0a60c74597be96a @@ -13556,6 +15162,7 @@ 3c1dd83863d01980966e20e0088ae0c5 3c1e4e03db5149a75b2ec6f79329f5ab 3c2023f532029458b33d4790d0333d4c +3c20610511dba1523ca5b8205eda491b 3c20f9fc05c8b1ecf4640a8a2376b4ed 3c21a7b882fd269c14a0aef55db11e7d 3c21b61595618b17310f0018251aaa12 @@ -13566,18 +15173,24 @@ 3c24ec320533a9ba9823f9998d8e957c 3c25e30e6c1bae5dbed94be617f3a744 3c26a85f432a7069c4590d6d9e88eb44 +3c26aca47f454098fbf3e37a219e314f 3c27522c464ba187ef8ab84869bb171a 3c282987a2cdb662ff106239ea133bc3 +3c287f18e746bedacca9885653dce462 3c288cc5b8badd804ebb834595e8c6d5 3c2939f87b5e59515fc1dbd0db48141a 3c2961837ca950f1fa5b6bc956c5a53d 3c2aabf1c67cd8cc3114f507331c0d93 3c2bab245c510ec7bd3693f6d6b3f47b +3c2ce71324113fb7b836ec7cd7cc2b58 3c2d742dfdb830ea4d57d9f549cc9769 3c2e8df9ea605c01c1bd2dde79d583ad +3c2f1e607c616921b7dc92843f63434f +3c2faa08b6eba9ae79567e55281bade8 3c2faf7088bb46a2203e17dee247d097 3c31658ddd145e327ce126e450599d16 3c31986a00b0646bf96e57fffd631835 +3c364ac4644c5b604527cc4bdf487a93 3c368b4aade7ba1e6a1ed6af95c04662 3c3693cdc74e0d32df84fe5a68a526c0 3c36a91e1fbc1cd2a96d54ee96a9225b @@ -13586,6 +15199,7 @@ 3c393e8c7cc15f1325ee3cff3828d63c 3c3d6375cb78bf0f322c8fa93da2d72c 3c3ec6e3424574afb2d9cfd3c863e070 +3c3fa1bb42b78347f137c32e48f9d061 3c3fde300fa22f494e53e3d1c73dcb0d 3c407cd5d8383d8f78d285424872e75a 3c40a4126da908ff82b8398fdb7826b5 @@ -13599,6 +15213,7 @@ 3c47adea6f64a3da5889ebed6a04d62b 3c494df1e53075bc05890c9cf57b934f 3c4a0bc7cee5946d36de13a1d60b1068 +3c4a44452f50b22c892ada4140268eee 3c4b6e7c77c423c2e82057d0bc018fb2 3c4bec5640f724b139087ac6222872cc 3c4c334ffbd59f04902d6243b5bebc63 @@ -13614,6 +15229,7 @@ 3c5b9b3eda4b42a8eee57843314b6191 3c5c1abfc0a1c07e2e8cc44b7275e11a 3c5c2a8f06b2c0b6eed6ec8146b5bdb9 +3c5c5f4e6bb9e7c402f5a331c7d94b46 3c5c6156c4b343d4c75fbbdd549c3386 3c5e7a1d4f56f2a22458ec9d432966e8 3c63398d8e2809a61f6c78b736964f49 @@ -13638,11 +15254,13 @@ 3c775ed37cadae234579b0caae8bf369 3c7814d18ec603a511c0bb2cf73da2fa 3c7981547dda7af579805a459fe16674 +3c79bdb5c75b0a7e3431349caf04ab3c 3c79f5feeaee4559eed7cf68af94a6ee 3c7afa00f3dd6cabcd812a0f5a046564 3c7b92cd58a966fe2273636c6314b1ab 3c7ba8193112ec3dd72755f0ded0078a 3c7c613880b907983ccf9e7dd8dc31c1 +3c7ca7da288ee31d099ecdf42f609502 3c7ceee8abed9eb7bdbf32c11dc26f4b 3c7d39c9f0c2e87a867dfc9190c1a7b9 3c7d636af2c8d16d5b6140ee45ffe417 @@ -13653,6 +15271,7 @@ 3c81946fc7376f6dd44fc4e98214ad26 3c83dfe706684d2d984e6b7b8888d837 3c856288a877721b34e68b0c12c8fc69 +3c857d2bfef93810f9c7f77c5eb8ff25 3c8728e8be131a3c0455dc357acec0a9 3c884677aa9835e40a8458d3d87707eb 3c8947e6e4a9f101eebf508be68e2302 @@ -13665,7 +15284,9 @@ 3c91989db0f0226cc0ca739f55fe2416 3c94039ccab68c13233e615a0c0501b4 3c9672f0b5dfa3edccd02e9a0e9a4a67 +3c967ab09b18fdf23a5568c7cb62c5c5 3c996a0c1a72893f6429aaf1356af42b +3c99d95089b0e72ed7b610e978f54ef2 3c9cb5c08b0f3c1a25f3aff12cf6a8ca 3c9ce4a5043276b21632da6308f4ed4c 3c9e4a5873c2271ca0093c2aebd6a3ba @@ -13680,6 +15301,7 @@ 3ca584e1058fb68199ebed24fd102ea1 3ca5adaa1a0b1c2059e7fe7da1b1da29 3ca60a99035288a63381a5e01c236a26 +3ca65d2f4fa4666853feafb05318cc3d 3ca850c3bdff5377430679f415786b9d 3ca933e842a993a0815bcb2966ffbd08 3ca98ef3daf7fefc3f068b8cd8fff5d7 @@ -13687,6 +15309,7 @@ 3ca9b380bf6f5e00429d4f25b11bf39e 3ca9c94e3cbab929fc2e76e9fbeb6dd0 3caa325bf4bde90c67e102fb15c330c3 +3caa4ed89f18132996d5b6a068bf4933 3cab39fe34fa1d84ae0206a99a94e349 3cabcd904282ae0df42ba10777c493e2 3cae23a0e8bcc325050fdeea48d3d7ea @@ -13694,13 +15317,16 @@ 3cb0eff9420601632bc023c05244c871 3cb1e11ab2a8b7ae915d827c84079533 3cb7135e001b54932023ac29cc37f975 +3cbb164150945153be1277f9412f96e4 3cbb8e8e77259ebf07b132d41199d49c 3cbd260966e3560823f91074568ed2de 3cbe2a321c9c50cf731571d83b9fc51b 3cbe54dcdd64b96cb363b5e7897cf86c 3cbea9f5eae1c80c5c2a4d8be4820d7e 3cbf338dfab4699eccdfdf7f06136244 +3cc00a1d8d5e64623c6317fb7f04e76b 3cc08160f2aad5b18a20f21cadd0e293 +3cc23a44a353fe10a38ca5e39fc9a8e2 3cc263ccd6c6b5ce79d1ce36bc36e0fd 3cc28dd8dee1c6519bdc3198ac54ddd8 3cc2f7d5df14fcced02fd74aebb4ac9c @@ -13715,7 +15341,10 @@ 3cca6c4a1435fc95f083895fd04bd320 3ccbdb16a577fa870047883417490568 3cccb7cb8cd5e2331c8329f957722b2e +3cce56477d78a9e1de0b8ad64fb67107 +3ccea857c43298e71f35c6a79e28aa6c 3ccf515de8c12a23ee1a28f9a288f02c +3cd036957ca2d04b61dc0efd5e4d72dd 3cd2f4f812baeea44cae508a7ef3fb69 3cd3069daa5e22781d762db45f0d98ec 3cd3710467e3e090f42e6713f542dec5 @@ -13729,6 +15358,7 @@ 3cd8f72b89e6d4ba77d26a9410df0399 3cd8fa6321d0df5960d8b2005afb9bc5 3cd949685e8251d5a493c2cc6d4187f8 +3cd99e2a5d6156010a1dfb2db6db0141 3cdb5704ac0f167c86a41c45e0738ba9 3cdbee13f550873cb8cc8066d5fc46fa 3cdc807740e804111596e2f60654fc48 @@ -13746,28 +15376,35 @@ 3ce64aafe07966142580c3f1cc14e1a7 3ce741acfd103625571ec27b8a232222 3ce7ff071e0df17efa0e5d17966956cc +3ce8c40c5587a11e07217588ceb53963 +3ce8c83810c57042936e69173b3ee0e2 3ce8ec1b963585ab6dbe781aa976da36 3cea024fb06359a94c56a0ccf2158c67 3cea5406163b5f2e2a56d64b106ee482 3ceac7d9f30d846ef28cef1328dfaa5e 3ceb4079bd167c698a62a902f2573533 +3cec3de6af125f25fa5518816d24a30f 3cedd4a3f43dcc4e8bf9cec36b6aaa14 3cee24064342a4bc231d07cbfbd5f625 3cee76540462999330b659db06da8a17 +3cee9a5dd9a3e935a637fb07804ec246 3cee9c42a1e60b86c6746f3b0f6fac2f 3cf028affdc1ce32c87a21b18abcc665 3cf0728fed4a63b547b2f892f7e86a10 3cf19a3811cc3be424a78c0727730851 3cf3e4d54b4e05ed7037cae61254c43b +3cf459d9a969c9617730051461d2cb5e 3cf4a6c9027cd027d6f05675235c9864 3cf57f562f2d63808b983b9cb8f441b4 3cf653df8e4fcbc2609ff610feed467a 3cf7f85fc7932876af46649d02e6041b 3cf856a3ce371d529307a7f3bcbf8f42 +3cfc79d81fc60a9c1b16012632c8639e 3cfc7c59b85be0cb085cf94bf6c901f8 3cfddfd6feee50a9db8974354c92a981 3cfe0572e65ad54e2dddc37b2c28826c 3d00e670d35898f37365a5d7d0a8f3e0 +3d010dfc3a1c09a15cdf8d7400ea19ae 3d015f1010fc9e4f868957ca763bc09b 3d0236a1edcbcef2610bdbe8f6624c70 3d03575dd2a9df47b64996425dddf422 @@ -13781,6 +15418,7 @@ 3d0c9b75f107732cefdd4b934e4afec3 3d0df6f16ac447a782a5ab55808412d5 3d0ed623e7499ee2226b7a9bb1f9911c +3d0f759aae4b75abea717c7989d8fcf0 3d0fb5c43f74d3899387e5674857793b 3d15e518ce417a4efa3f64800759d886 3d1952122716fcc229e9551f6e69f8d4 @@ -13795,6 +15433,7 @@ 3d24dacd8cb1f7f752898c356de0611d 3d2672dfed7765768b4b89efae17b68a 3d27517ccdbe386b04ed50f3347f0bf4 +3d276056fae0b32c5a650bacb9b17068 3d2834f5e417f68c61f9ad9cf71f2ca0 3d284567548551480559d9366521c583 3d2d3adff179b5e2df98a3e85c4c7fd1 @@ -13802,7 +15441,10 @@ 3d2ea3f697009f01e4eb61392c68b6c3 3d30b5ffc66d72775d7fb964d0c7b2bd 3d31c5ea2b9389d1447d8fafe2047927 +3d324e0de87cb7d33880b8b31526525d 3d3433045b6b329404ae9c2e39e745cb +3d3588a76038999dc4566dde7be2eb3e +3d35c30d143fad77e1a1d3c88e9051bf 3d3782074dd04f55c3dd47ea728b9cb0 3d382f8697defbe0ad938c7197b6c738 3d3887927f9f507a02c2fe4119dccb5e @@ -13814,6 +15456,7 @@ 3d419100896446c58c7792ac8320e5d8 3d420ac70c1fbf23545e2941474379c7 3d42183449f9d85c044e40a6e86a5210 +3d42715b819361615456ada5ce166797 3d428e906d49824eeb7a4aced000772f 3d42d0f4224340c239d8b630496a1ccd 3d43385a5fe890d9dd8adc3418ba2c73 @@ -13841,12 +15484,15 @@ 3d6452d872a8e302d82fc4479b4302dd 3d645eb69e9528512b94217e86a052b5 3d67c2cb6443734ddebf5573db84da64 +3d682f5450ea00682b32ab30122c97bc 3d6a0685eeffe1de2b66c7657bbfb0df 3d6a464768e9edc046d7ff5b66f3f6de 3d6a5f25a5a44d545d500e7036c3f23e 3d6a8651af039cdac426a5dbfc02b9fe 3d6ce42273aa644178800e52c6ec5006 +3d6cf9b986272437b6bca20b4f270a2e 3d6edabd69408f6ed5a6d9f4290e68c8 +3d6f210d269b8ce5060e93185728d642 3d6f77042ca7c463aa3ad33857dcc596 3d70e4d40d2f6a24e498cbfc4996114a 3d70fdd3fa7476acdeb9c0fdd7c4d141 @@ -13856,6 +15502,7 @@ 3d77a820d1a5faf3705c17ab7b81ae67 3d788ea4215854207262556cbb4ddc73 3d7b13b947dbb17d94f6f6d89565bd29 +3d7c91d168e60674237caa494e3b4287 3d7cc02a3d586c6fdcc6efe080f424f2 3d7d4c2b5e80f54e4b977db8d3ec6d1e 3d7ed579aef715bb1bf95ad3de8da089 @@ -13866,6 +15513,7 @@ 3d83d79df654139e39414a069cf3b49a 3d83f9e8b2f87f202c35111416facd9a 3d84e9615789051b6eaf40f0f19b8e0c +3d850a5870f98f5f5e093fa577e198e6 3d865bdc8080f835f04af56eb440657b 3d881e254d60268d4f080dc7ce5489b0 3d8c2b0ca573053b7e366a5f3bd68ebc @@ -13880,12 +15528,14 @@ 3d947660d7a4d041c941c9990f2aa647 3d949e83c13e729a8c27e436ea155040 3d9569e121336842db042b6091c5f051 +3d97f0c4e8268226125c907927169ddf 3d99844f49adfb766c9e996c9a4ade3c 3d99b44bd87da556a1c596a7ab28b9a5 3d9b012f2e85f6d81d0f4488dfd46110 3d9dae3e25aa1019496f004cf1c5aad3 3d9e82a75e5a9252dbe251755fa4889d 3da09c0d774787306f2856a0daa21e5e +3da0aa91db0e3c8bae4cef3ac0b1e259 3da0d821d0417100da8577ce0c5b9a11 3da1c1f8e77e3d0e7b31273725dacf93 3da21c4148b06254b69df9f5a87e9013 @@ -13897,6 +15547,7 @@ 3da8c42315e6dc29cce034b579dee2d8 3daac67ce660259a167e81f8438debd3 3daad221e3e91cb8cd89bc3ce36f9e64 +3dad7b7a6279703ea92507ed7bc2a14d 3dadf9a64746f368c0c2d6f9d6b9428e 3daf552e7d0f281f3fa84eaf7918f5a0 3daf8e3f7cc33d5a10c311cb2032eb40 @@ -13923,7 +15574,9 @@ 3dc494d8dc468c53d0f3e47fa7eaf413 3dc4b0b0f09e21a2e180f2f723f24981 3dc4dec8e9c6df1737c2236577371252 +3dc51e4737ccd8387a7449b485e6c146 3dc74a61409cc6afdd0d2e2d14c58943 +3dc7f777d839b1e038d8db46392bc497 3dc9e08f639c371e5c25ce103a0e61fe 3dca5f09c1d825773a553149a934f71c 3dcee384d3ddb8cede6ecb98302a40c9 @@ -13933,6 +15586,7 @@ 3dd1a6b49c2e552f7cb85a89b5433384 3dd29b520b16cd06596cc74b0ef3c0cf 3dd2f2283e7897647763ed9b43016b80 +3dd401ae23e6d5b2b587637b815805fa 3dd48f414aa45ed3868836ebc98ed3d2 3dd4bb8c17802d55ebcfea276043745c 3dd5bd9f0e8766aee190dcb88137a825 @@ -13946,6 +15600,7 @@ 3dde02a50e5c24164462328bd40cb8b9 3ddfd5e29648883d0720724fde8b0d16 3ddfe9d2b13df4a4804b5a3403ecc8d5 +3de1fe7b24e225900f35ac8d6a75801d 3de37425967c209ea14b70a19eadf349 3de4b8eef3cbd4b3236cf69bdb44c111 3de74397d3ee5a39f523493434e04eb4 @@ -13980,11 +15635,14 @@ 3e017515f5f5d58ac0b45edbd9347d4b 3e018700293ea123b1496a9a3c1147d7 3e02b99e7f6a9f3be7e210167b2ac1b9 +3e033da9ea4394f1d749d2e5fa6cf9df 3e0449d4ecba8f08c1181abe85ef31b3 +3e05239dfcdc228cc4afbc96037458f4 3e0661eaa42caed02203d7efc8f51ac1 3e096a04d58f48729a36cf90164c60b9 3e097ae2a14822d67c93f30f348abdf3 3e0b3c27136438192e190e0260fb7dd8 +3e0caeccd3ab89b4964d48ccf6705110 3e0e4adeb5cd78bcdf06ce2aa5ec53cd 3e0ea44051e199504bde2690df8e9d56 3e0ed5b9ed38a114386784dd7bad8bcf @@ -14011,6 +15669,7 @@ 3e28147a8058ef2f38bf1666f10f257a 3e29d72d6567075a39f3a3b9f34f9553 3e2a3a4aae10c91f498a431a13368318 +3e2bc7acc39375cdf4d95bbfcb226e4c 3e2bdec5fbb2b1d2cfd5d952dbc965d7 3e2c6adf2e9b515686bb74e0748dc134 3e2f30ad314c3a59e65c87b6d406b79d @@ -14021,14 +15680,18 @@ 3e33252577655aae45eee546fde25286 3e33c329505d489747ea26620b558ee0 3e34225eb8b013d6cebd9495e36a2d14 +3e365b0b9709a4900247a0ff4ceb386b 3e372ed9b8dfc6fa54b4d750c750921f 3e379abf2fce66fe66197bd3de7d77e2 +3e37cc3d0488f50351d293f715ac3bf0 3e385bb38db48ce205589e04b21c429a 3e398f6ef2edb51c0d665d5378bf0686 3e3ad846e1d1e80705b3b709b89d7808 3e3c5ab43f72f39daf4ef606ac75ecda 3e3c8fc73ae7b52e7f3ac2051124814c 3e3d1920766e372431956b04901fdda2 +3e3f450588617fa78030582f9ae796a5 +3e3fc6876bdec578959934befa0b17f1 3e4033792a2524a04224d7a3d2e1c1f8 3e406b5998408c903693fa177cf22b6e 3e411280711c64a3f5e9137296786970 @@ -14047,6 +15710,7 @@ 3e4df2fa9267266679d42081a17561e3 3e4e88da7d42c3b6b999d184b8565051 3e4eac23c982d671f93462b410c95647 +3e500fe6d378adc7d90644ba56ace56d 3e50b9d5fc0e52c137401a01019d3e12 3e51f487f41ac2b8660d8808a5de478d 3e53a16c3aaaaab88e1c019d8ea18920 @@ -14056,6 +15720,7 @@ 3e5c46005b1f189ceee2bd7732414340 3e5da448b45fc34dc8aa0e83bfb5a208 3e5e0479fd72aca1d930adac5837bc4a +3e60fc020c6e5ac68f81d5246571633a 3e63945348252e20b0e151df82836716 3e63c98d476e5a4ccf07cc1e790129bc 3e64dbe157108ced1bda1319b5a315f6 @@ -14063,21 +15728,26 @@ 3e655a6d9b700633807519e6ecd6cb8f 3e6560591218b95da3a48228a7796ebd 3e665921f1dbda9fbde4136ec725b146 +3e671404a6b45a72a5d2820730fd3197 3e684cabede2737007c155d766e22bf4 3e6aee6859a250d4705547c321c80866 3e6af36ace422dc6277e2552fd9422dd 3e6c0f3c8fdc1e0394360e1055fb4dfc 3e6d23b31fb6909cee241d53100c972f 3e6d73dadaa79935ba789ccc000f94e9 +3e6df35c86a3a45ca29ddbad62222089 3e7086bcda4a8e8f821bd0f75cea3623 3e70ef7896d212772de6c7037d687b0c 3e70fb03ea554454a43245274e47b783 +3e71879ae23c8dca3e453845f94dff8c +3e7231b27971e22222a98cc6f69787b8 3e7234a6a5a189932fa9428731a377aa 3e72e13495a9278ee3a2d233d6536ef4 3e745e585ee1ea123894c937cebe22eb 3e76280199ba98025f30d8895086a577 3e76cfdf22410394a531313283a119d7 3e76e30187bba823483189b07a3f083a +3e77ee2ce16d8bcb444cb8df3ca93151 3e786e5d7a6686e9c28b6e498e5cb5ab 3e7920f3f1709f2376778819cab23cbd 3e799ab7a7ca8b8ca14fe437855cf51d @@ -14085,12 +15755,14 @@ 3e7c1a88e7e689c9c357715d3962c261 3e7c4b89a4fb3fa64b21606944b47041 3e7df75d96ee71dba93c6af4de97c968 +3e7f446127cec59bfaf0424a2ffcd052 3e7f889572ac80bf61ed5bd0617ce1c3 3e80cc21b09803e62b97a74c7aa8d509 3e82ab07ed11b4d0074f07ab2f53b330 3e84a9b9acba27535142858f9586badc 3e85a723f0b5e6ddfbb42d28a8bb206d 3e85b5f9c67907aebe96534e22b72768 +3e861008887201e5023218722f690840 3e86bd272a287819acd35c180ee54c09 3e87bf5a38f67b982a7463c8575234cb 3e885b6a8fcf6504e48cd58f3e6e6561 @@ -14105,6 +15777,7 @@ 3e9185c542220d604703e8e78ea70e2d 3e937e89422b1f961d09a9722feaaae5 3e93e274a9ba5895190047ef3407bfeb +3e945186038092c4e57919535c3d935f 3e945b92b391b3e43c5384b1510f5f1b 3e9539ce9ed291e7a617d43d2f1b9b9e 3e96040f0d829eb008e5ed52c3eee7d0 @@ -14121,17 +15794,21 @@ 3ea54e3198b4509396ce594940685ff3 3ea596594cae5e39d6dcf634f551367e 3ea6416134718040d4d3b8ee1f66d0a9 +3ea6c0393882f680923f96587c1ebebc 3ea6fb91dca7671c9b731257eb95896c 3ea79a7f794fe5650eed2f10e12d7dd6 +3ea87470d4c4591816c65a06ab107863 3eaa3645b6e85aa0385afc516afc0987 3eaae5e4fbe4d7840219933936910f5f 3eab3ebc2a21af31ad5fec4bda8212b3 +3eabbff96f962ebe883547aab1be0327 3eadc8a7398e0fa06a2ced5258c8ece2 3eaef6ba1eeb66352dee53902d2d79c4 3eaf1a2d1c37e5c551f1f38d6f2f8f48 3eb234ad2c9542ed42a5219989147173 3eb2d00e6d4f383500dcaa47d1701f44 3eb38d9737c113ff7de2e295ee0aab1a +3eb530ac91758b6743c12ac7dcd54d7d 3eb58b28537f15ccfa7a4950869aa210 3eb768776f5d7b0f08bfd2b1d67b3f7d 3eb7cf74f371b87a5ba5f019c89e71ca @@ -14139,6 +15816,7 @@ 3eb996c364e2f02fc3b02acccaf48654 3ebf274d825d273cffac4d8e2470da10 3ec0af76f81d9833e8b619df98721d99 +3ec0f350c4c42468e21c2d12a220abe4 3ec1d65a065ce5b491106a4db87cc18b 3ec2d4f94cebcd76dd9d8c83002547e2 3ec4411ef17eac6d2b5d4166699de40c @@ -14151,13 +15829,16 @@ 3ec9486cc8d47a9d16b597283aae6e66 3ec9e7553ab968a0d979e94bcd3984f2 3ec9f24e41c5533949892debed8d77e3 +3eca0cc0e9418fae2ff6b60cdffcbc8d 3ecad47213ae39658bd587215f4ba041 3eceb053ac65aa92dbe68c13411bcc22 3ecf4b4fe59fcf33b4f2ace4d71996ee 3ecf94d7e1ab604309242e72bcc57b27 +3ecff19c28555d90f6da78f0848471c7 3ed0efcb9b157aca1d2a9964b4c01739 3ed15f0204faf9249d681f6a0b4b2d8f 3ed17d6257ef9181f7e6302f06ffb645 +3ed2ea7533a05c7723c6eb545169de9a 3ed4224f27107a51d964a944bd6f1db4 3ed5fed98f592c44b4158f894ec76b3e 3ed609ded3efc6acde431068f8c03225 @@ -14174,12 +15855,16 @@ 3edd13861057c11cb8f21c0ad10af175 3edf21cfd1fd490fe71509f229ed0007 3ee01e4802475ca4fdeb4741e43bb900 +3ee0cc5d1f0f776ef692d08c9a7383d9 3ee16c49d209f94d6e53b61096a3874e +3ee475c8bc41194b2cf195e515fcd7a7 +3ee79a2a322fd06b74de8c7b36f90455 3ee8b12021f62e03bd381e1b9b34da90 3ee97772c9a900f5633774f056d4364c 3eea03fa58d44502669615f71fb91d32 3eea27c64fd62eb3bea5d503e91a3c37 3eeb961240056b10d2612ec0cbee22d8 +3eec12829ea8a664e1e9686c973e080d 3eee6538b672f3b8389b0d62fdedc237 3ef0805ed8036ec769f120986495bd7e 3ef0c3f7676726e4ad3880d08f0ebf91 @@ -14195,9 +15880,11 @@ 3ef689be3853d35e84783983b0c292b0 3ef789657c5577a65da765ca73899bf6 3ef7f9c6167dff20e1af6c93506eaf4b +3ef8c3c43cb658f7b354cf6b68a0ad1f 3efa421c937f5739322cb19edb0fda73 3efa4eeaff71367feb4be22ac8d9c44e 3efbe74535529192bfb3bc67deaa579e +3efc6a4b66622d1fb57bac99c93efd1e 3efd20c0d3f47a58e6e4211dda473efd 3efe1a97b34bc9c48761610fc6e44e37 3efe51b603500f536a85ad5a0a4d1951 @@ -14232,6 +15919,7 @@ 3f1ce36ba62284b8c7b613cddd808e16 3f1d7d6d5dd78b767dfa14dac4b634ef 3f1e7b023abfbb3252fb3aac9e6ffe9b +3f1ebcb9ae667cc8a2d2b51361250c45 3f202a2153e4da9d3d338d86c06e6a9c 3f20619486684f0b6b481aee7d5401c9 3f2116bb42b1d613dc3edb5e90ef9d4c @@ -14241,6 +15929,7 @@ 3f22dab389b21fee8310cdc33cc0bb51 3f23dc7a470b3b6e365d00801a1bf148 3f24964b12f0ec214acd3d7a38f02382 +3f25a428bbbd498dba7bca5a416b07f1 3f25a475ad1c6d84d97db74c6390ea62 3f25ac245831901ba5750f5da7ed2d4c 3f26251b2b2f659e5fa72e5eaaa4952f @@ -14261,8 +15950,10 @@ 3f34869e216e990c22fe64945c770d29 3f37138944560ea363d26d3feb949fd9 3f37930433ad28e06ef247dc3219f30b +3f3bbe5e0bcddeee8144b5c15b97382a 3f3c047ef78a2271df4f6917f30765c5 3f3c7b68856bf710845045d830d7a735 +3f3d2474d3ff90d905e733e45fb76a75 3f3d549591baf01244e6cd3a6505a72d 3f3ef55c09f4261bf9772cd8e5cbc7e0 3f3f339f433df6ec1668c1fddca92606 @@ -14271,6 +15962,7 @@ 3f420e37497118cafb483500f797a34c 3f42e114e428c9865b3949e144ae73be 3f454ffc741b9831dadd3d3895f8c132 +3f474f3ab68558448b9e5777078403f3 3f47de3035e295d35a2416d6b8bc3a00 3f48443a5643ba36048d2cf251b5d1b6 3f4c941f4e3d478a7bbd8d7397a91608 @@ -14283,12 +15975,15 @@ 3f56d8772e62335cb7de1e9b949114ad 3f57621afe706440c8ae50f9e7efd5f7 3f5f799dc6dd9a3824321ec67dcb7511 +3f6040b9ab301237172b0ff28ab6e64d 3f60460f508d4144db5837a919264521 3f61077211c473d0d9389ba75daa5f30 3f61acfbfec64de65b270ed4e98ea349 3f627493d684c00fbe3cd5c6a5c7ba83 +3f64e715c879c9e1cd2326d179c036c5 3f64fd8ad9b4c7323bb3a538659c94cc 3f652abe93ac9d0c39c917a7e695f3d2 +3f65da08eb162068f7d9e9beed936356 3f664151e83d2f265e7515b267b4b1a8 3f68e02435c98122b7dad0533203e39f 3f6ab011d1c8fffacbdbf8d9fe960dc7 @@ -14307,14 +16002,19 @@ 3f7bdff5f0c72ffefd9c02474f4fd005 3f7c9f4601534bc366c13bf813dae2bb 3f7ca1bb1585146e19a4b3996d21218d +3f7dc044f8e0a4045d1dec9885440adb 3f7e2632d93ce7f4de457f17d6aed105 3f7e6f6308fc8877561ff5df809dae86 3f807d59c1e6c047b90e0c7e44386419 +3f819636cc839be72e1fa2ce87d1a201 3f847cc93e19943daf982798399627f9 3f863b92d8d41f8a6522725591430102 3f8820a8ce1d3404720f4a052e675628 +3f8871af14d57f2c5744a710fe903c7e 3f887c1a3d9f61475d4d0b739e4c97a2 +3f8a2dff0a586030662c12c53270fd1f 3f8bcbed20f64d22065ff6d051858de8 +3f8d0d0a762376c5e0f975d42ce4a6f5 3f8ddbac8ae9bcc9e4a706d59f3e0202 3f8e17181ad53ba92124e92ad893cdab 3f8e5fc4181b1374d1ca3c822cff47f0 @@ -14322,6 +16022,7 @@ 3f93bf665028366c372a12674475ba72 3f984847a50a89ba5de40894c696e57a 3f989ad36f64af7329d0000f86446e73 +3f98ab2f6aa362ef260d7442fac504ef 3f9aa25628aed0fc535d4effb2cc4668 3fa1b4dab0bfcd98eda0919ea25eb903 3fa22e36b8361df994dacfab7f18b94e @@ -14335,6 +16036,7 @@ 3fa7f1637e2f8170276b1f2090db6bc3 3fa8172cb3d5c7f43d71f1ec37b8cbc5 3fab38e4e51fcce1ea04e258d0c8c95b +3faceea1995aa310b98fa69508483522 3fae868c0bbe01a99972b815a586cd7e 3faeda3d756aaca60893193a10fb93d2 3fb22b6a35834b869b5277cea12ddf24 @@ -14354,10 +16056,12 @@ 3fc14b9b9254a3b7b938e29424d655d6 3fc2548b18d2034935eaa636c537ef03 3fc2dd55d684bd92d241d44d5bdf7e3a +3fc2e82b1a7f4b9570099777c90b674c 3fc3797850c3b9088de1ee66270a21c5 3fc5ba02b7422525e1b2f774fbb4bd61 3fc638490585c4d504ae0489f3c83614 3fc715a6efbd28037acdd9bca5dfa27d +3fc75507c095ca7e51f130e2f667c493 3fc837624bcf29316ca33bc65d2ad661 3fc83e5386bb17e35ac11396c56d6ea2 3fc8523d1aae2b183f2003a667abbc89 @@ -14369,6 +16073,9 @@ 3fd1f53f6aee7de8f2200aa4f678ca3b 3fd1fa292b84d1a53a4534feb6eb8980 3fd2298c5d95009aa773b073919748a7 +3fd31e8bdd6accf9f26eed4469298584 +3fd33aaf1c3c1f18b946be90bf8fe845 +3fd577a1b378ca26b97cefc2799d4cb5 3fd57ff119d8d454a31af7236a589fad 3fd912e9a4419b9591d44f10d58ad71d 3fda81d0a78c843cf54e98c2a1f8973c @@ -14382,6 +16089,8 @@ 3fe3261041046a2102aa66e8e5fb564d 3fe394e541a5be321b35e58e2e51bf6b 3fe3af995a4e99ed155088e540b41eda +3fe3b82efa182ae78bf9c87a3e0f6051 +3fe55df2d9f90f227b5f92e1d5047f26 3fe88d65349b049e630743a8109b5485 3fe9209ff87eaf409d167253b815f7c6 3fe94e82463bc36cb4b6aac3ed01c2ce @@ -14405,6 +16114,8 @@ 3ff97251dc6119cfd28ba592bfd8718f 3ffa11d022c2cb2c01788b314c65114c 3ffa730af5596591f37832ce34026dda +3ffb89906b259a8e5090c479b96d1931 +3ffbefc2ac9027b024ec6483b4cc8bd8 3ffe305ac328a3345811476467628e1d 3ffe7312241dbe702421a1954b1f239f 3ffe9ef22750eeab19d1469ca768dc46 @@ -14412,6 +16123,7 @@ 4000ffd1b515f2865057bd8500e1c218 4003a0c1d04027e762beef42d2015233 40049a2209a906045c20c2fb9a2b7b17 +4004dcefb427a48b5e340f7a5c2e9bc7 40082fcaea0609287e72996a2bf53cb4 4008712bbdc005e416dd7d31c9cda62b 4008ab9acb2110a24873cde546903612 @@ -14423,6 +16135,7 @@ 400ec1eae07e89ce44ab5eb1aef34129 400ee9444dfe54b57de7592dcf46ab95 400ef8727a0fd5ffb7760c37526f7b05 +400efbd51b9757e6606c9f2fa141a92a 400f1b0e8688a39d0bebe2d9047647d1 40100d49329fb31455e87d54f82e13fe 40103a5eac79ba3d1ae5b2f1d5d9fc41 @@ -14434,13 +16147,16 @@ 4016a4927786d6e458dd68d9db758b80 4016c7d63f07b628bfab6fcbf2c9d62d 401787de3c3c865bf86069f878d51c1d +4018cf24b3280b811b4f08efe5e05d2a 4018efa2e9f7406ee3ae0630a1ce5df4 401a4ed260a569735ca8a749ca736e7b +401a8916a60bdeef72a36ca331105dea 401c834177a2b90b2163d23d9f31115a 401cbcf582066a7fd163e55c107f8956 401d0b503d351f16675f4f6053557da3 401ed34fd97a4e0eaeb10674f7c7e5fa 401f5ba7b98699e73062244b26c49e6b +40202ca95e89c0f602b4ab196535c661 4020352328ed7dd4b80831a7030712d9 4021257861144486e5afd324348b16b0 4021a9c27af4a60d2c975dc2bd9a75c7 @@ -14455,6 +16171,7 @@ 402685ee169f7e62f0bcdbe8f0610e14 4026d885503d81c5b40f0e1b73e289bb 4027fe4ab7b6b10c8bcfc10b9413f387 +40291909b7602d4728496f43b565b836 402af7d5286137b9808eadd561326116 402b16f92805581e2726fe86434a3a01 402b61835ba8ab20423e00d454cceee5 @@ -14464,6 +16181,7 @@ 40300bdda75103a7053c3cad84d0d094 40316774044047317de2fe43276f1a4a 403459402a1d190b58cac86e5e8d7c1a +4034dc9063df4fd14df2331dbf8110e0 403603c30f8caa5759ff75ab6dfa08b5 40368e0a10fce66193b4263f1c19f9b8 4038059c7f3d905be8320ac40a2b6a3d @@ -14502,9 +16220,11 @@ 4059140265705f6453aae37ea6b48be0 405946ad35ca2382d6c8caeb9bb36aa0 40595b3ea567a8b37e9abbb863f87325 +40598a1a89d5f99f7b1fbc1b8d1a1f99 4059dcf4f49fb259ab794b0b8b235573 405a80c1f10b144ab5308ae426b9441e 405cb2cf3da45ba09918d46e84d6b12c +405cc4b845a6b53058d97c13b8055141 405d62b6e2d26a31ddfd2042b78b68b0 405dd1389fab2c2f861c23014c84d1b4 406289c6f04984ed502b5eda18c0c59a @@ -14513,6 +16233,7 @@ 406588b9d415ef40e519dd049cd8f8bb 4065a82cf5a117361f4fe666901e7726 4065c36ca6b707b2579d028f600ef983 +4065ebe37de522c16d9750f9a1342b7d 40684b24132801c79271366a657ddf04 40689df8257b52d5a9e4039a41f15705 406b5ffbd86f4030f7bcf7aeebe65f48 @@ -14523,12 +16244,16 @@ 40712d6b06fdf4ad4362070405841268 407175d3fdae8dfea69a550da20740bf 40718abcfe173844e8d0eb17180f57d8 +4071cf0366483889d1c92304d0fd82a9 +4072367878cbc0ee39494bfb8120d67e 40728d794ff698dd0c26da2a896e74b4 +4072e7b5f535d923b4cec2266cbc33ef 4073230b1f75e8906c34dcf3a504c95d 407557e3539c92f3bf159e1923ef98de 4076915576a8fcb369c7db4608b27359 4078055052c12e527b44711ed2fab0f5 40793909193a17a575a3976c214a8b3c +4079c36b44f77d023c57c6a60f891477 407a5e580a5270b3f8b29666491d1b08 407d9b7e084c1a342e5dea24b2a96d16 407ed137051fb99fdea5c62cf6438553 @@ -14536,12 +16261,15 @@ 407fa71f7a5a19f351c8c3c5bf982a34 407fce46cc2d26e8c02158dd51f45d25 4080dd3ff8719d3b6dc18e899cd59eb8 +4083c117869e6fa64bf5f90cc92f8f38 40848201168e32e05b9ae7ce56692a45 4085e1b3e76ce3a4157f32ef256167e3 40883682171e1d81aa5bb66b794548e5 +4088abdff08c764348c175aba726a775 4088edc46187219368a685c6e3cd3103 408a376a00135bc714032ccb9506dc2e 408aa361f273e371684583fbc9494ce2 +408aae64c5dcfe16391caa1f4a87e389 408bb96d986d096f2523259b2f944da3 409146ceb371926d4ebc480aca801f98 409616ae4d23e1f1ea88439d6d065407 @@ -14563,6 +16291,7 @@ 40a427972ee0cd651495a1ba07f20f31 40a550f4a0f36a8d783ac3df6523cbef 40a7217e89618b959c9ad5258739b458 +40acc9b57c1142456f1143a8baf81da5 40ad8cb6b0a30549d251ccdb15db218f 40af9259f9cac81868b1847c59b3115c 40afdbc2650c0bdcf9955294fab4a89a @@ -14580,14 +16309,18 @@ 40b53df1bcd59c0c4247c7381c4b2f91 40b59d0d2faa40652e7831ff807c8f7d 40b5a0a7713f18de77879b1ca9fc1529 +40b5be0dc21a00bde3e1423e2ed6466a 40b60938c2cfd86c8d5dad302b4efa67 40b65b1e77033d177c8889cdaceeb900 40b6bb0df66360560c09ec31106e296b +40b6e0e59853884f367b7ca7510cb6c7 40b754fd937af858c95e03f933ad00cd 40b9231ca23a9f5851eb61e87fec6aa7 40b94d71f6046c4d86e9c1de9b9ed6ec +40ba1f2bebc26c1c7786df56872b34ca 40ba4ef322db3a9fabe64202c3a612ff 40bdf5fa9ffcd9e42bd52bc36834c277 +40be0fc142966547969a77cd42b31530 40bf1f7b1cbcb2d1f8f6ec66c0ef4c76 40c02333138452f3c89d9755a1501dfe 40c1f53b969abfc97743d2ab68828087 @@ -14632,6 +16365,7 @@ 40ea067a5c07a477fa6093d443efa91e 40eae9d9051a0fbbe8717cb158b8affd 40eba03ef332b2e3660b5005fd12505f +40ed7204a32a898a6f79dfeca471a18d 40ee4e486399dff3ab756de8da3ff3dd 40eeb4206b0bce40cc624c8b3cdadbde 40f047b67e9affa1e7600cc1c8844190 @@ -14661,6 +16395,7 @@ 410c34cb2927deec363a8ba2c157f17e 410dbc60c0bd6a4a9141f194983fd52b 410e2bfabd0675e88a6b03acb04b5326 +410e7bd0ed98a5a289b7ebc36f3b1c6a 410eaaa7a5080e6cec0089d75441c6a6 4111678fb1cb84b979119d0fc8a2669f 4112c57bf460e2410192fe358d81e67d @@ -14672,6 +16407,7 @@ 41181847fe2da8f65817f2bd139f6c89 411ac6a706fd5b3758aee8ffdc8a610c 411c0537bfca3dc63968875c9f9f0e5b +411c616273d37db49dd10eb5aa360a70 411cbf399748d10d8c3539f6d477119a 411ec4333f96479f88c085ed97df7e50 411ed4697c3561900d160d14a6a2e999 @@ -14679,12 +16415,16 @@ 4121df666bc00b2b3128b48d2841fcf2 412359ceef9c957db5dd61edd68a20fd 41238cff2423e402ede6af03c4a57631 +4123f2b7095009c70b378ad492676b5c +41246dbf4ad38badf70561f2b1715d0a +4124a5e9eb3bcf07094e79ec4b2da5c7 4124fbc814436ffacc3db4978a6ea6a9 4125f4d508943dfa8e2cb5f8ca1eeb77 4126b1c5720fa06f87468fecb71869fd 4127c289fd8bcb976edf4a4d9cb78294 41293f156bcc06f76b7e06d552eed963 4129f433313ad947ee61fc3363fb9b9c +412afa51014afb06e9c3ae1f8fcf50e2 412bc7aa78f2e9fa5069a403001113cf 412c5801300e25b4c30f7a80bca9b736 412d1843edcc217b11612136a49595a8 @@ -14707,8 +16447,10 @@ 413b785a01566b9772110f6124fb46a0 413c1ef13d90cd86ee4015cc98e17001 413ccd494f362dfc631489c1c854d887 +413db8cb6d354be832ffc5ce56417224 413f87742a2b9759f04c02a23f7d4be4 413fbd39d55dcabe40edb99f19feba41 +4140f0dbca99172101c6eed1d27f3db8 41410d292de98ba5c9157c4d6a7ee42d 414118c33884ac6ea46c4ee5723cc08b 41417ab6e77f296395766bd15f1f579a @@ -14723,6 +16465,9 @@ 414988f0509b5648e6ba19f81fa784ea 414a7836435d3bf8918d5a129ea67f71 414aa1d8a65e1d12abee64c87b970cb8 +414cdee7c5f5715b19fd1ded056f80a9 +414d3a892c41e432ecfece9c40aedaeb +414f0342fffc2ac1e84fbfd89e180610 41520611b6c3c1625d709969f3057bb6 4155587c94121a75c25b8d6cd72e438c 4155c99ed5045008eeacaf3242ef782f @@ -14759,6 +16504,7 @@ 416ebedb208d3a1c48f0b9edcbd663d4 416f79be45b6a9a9c2aa8e01bb90d6b4 4171721ddd34a8f24a12a6b69dde6792 +41751f93682d8a2ad55aeb3df9414d8f 41752fcd2505495a50c7777fbb17b61e 417635ac80e373373b40f8eff385a46c 417e377f29ac0845f9f2d21df0033ffd @@ -14767,6 +16513,7 @@ 417f397943dc5e83789d43cc2b262f54 417fc4f35bcaa010e5e218ecd49318f5 41811070bc8ce4a10e713db79300dfd9 +418443ce3cb5ae78622ff7315e30225b 4184fefbb50e07c03ae0146af70abf45 41852d280315f97032346673499336f2 41873e2ebe0454cab2a0ffd6a7e6ed6c @@ -14775,19 +16522,26 @@ 418a574d897345c99f6b26aa45ee02bf 418a91f75b1549b845a7945d3d0aab86 418b7627970b3836f172480bed0dbb03 +418c124710947ef078cd0c7616046efc +418c95bcea48ff2a79e25774df21cbed 418ca751e07a9efca344d18a054a831d 418fa78e3020af6dc4f52a5931e18567 4190bbcd76cf8dd7a95d861ef07ae75b 4191c38474f242ce5544607cb5c30ac9 +4192c96eb16cfc3f490840967f397b25 41934bc4ea0b0d11f8ae1a2207c09cec 41948d54613af1f8145ac3466781125c 419652c51e0f44e8121dc02fb3614d8b 4197a78414c4fb2074131d32dc80744d +41983d37674ad36f40416182e9f7a7d0 419934bb4e79f9b99849ab01e7f5aae0 4199d40edf447accab273d930e70ec92 419a0583f82ba59b9f7698e28d8d53c5 +419a1b6ff46b9d7491e25da9590c6d73 419a753d0977ddddf70bc60f8b3a34ec +419bc070e6d06c7b2da0b353209e827a 419e340841220de6c315ba9eaa8a6c42 +419e5395f4353a6aca4591c6a04b6540 41a3214001b39a1bdc7d462d83f6058d 41a33eb07633d098dd1922f6a23b9536 41a570dba35373ad9979494e7f92d1e7 @@ -14802,12 +16556,17 @@ 41af2403d1c1519f8113b2d03450d6ba 41b05bede067e4d5a7e6168a08c22455 41b0711cb656f9af97bffd26297d7088 +41b14065fdae7bd8c1c9850e3f1e901f 41b1b63840e48d25f5bfe6b5b12c358a 41b32295baf7cedf392ec149774093c9 41b37fec172d5394c70043b175f71ab5 41b4690e711ba69aa233cab6860843a3 41b4735ff8298cdbfac134fc11556975 +41b4ae24398c1f2aab6cfa52f64097b4 41b777f8535b9b5649c71eea7270385e +41b93c2242f9c8e47afc317020ad1c98 +41ba098dd01732f6f11d4d153109cbff +41ba1f4552659ac1ab5ab4187f86e813 41bb6660835e68921fe6ffa0ef2615b7 41bc5017d7ec0d2bd96094f8a049a6fe 41bf4adc6ead1a30d4ac29534e279c31 @@ -14815,6 +16574,7 @@ 41c188557f52e2f98f22e668d9b6224b 41c18b7c9642e8869443ea4672a22d30 41c2fae6a8fbf2adc5fa0649b2e1c045 +41c7e501a2036dd4b2d526e629f033c2 41ca6d9390d7513a1dd1ecf3286cf00c 41ccc9c931667c4f656681f19dadf159 41cde0039351adbce5695f29615869ab @@ -14834,6 +16594,7 @@ 41df46e516ed39358d9ed89d075b8a5f 41dfbff826cfb21828a06827316dc94e 41e2eceb15351037fe18751761048566 +41e4636dd753779274856ff4a0aeef3a 41e4f4cb364d2dc779fb919e9d0a3575 41e5c2cb373d3214c50dc93ede557b90 41e72692c542c25526dbaad4d412e031 @@ -14853,9 +16614,11 @@ 41faee026666183d5ef11b5d94011511 41fb3ac8e4615ed259dff202d43fa6a0 41fc74d7c81de9fe734c3d0ce37ec662 +41fd06408837776e8a539798c7840633 41fdeea3323e9efc770fa3c95c6c31eb 41fe4ed42f3525e099f7551c1b43b61d 41fe95a1058492d81dbd5707dd7fa58d +41ff67adabce48a58c2ba8427603cada 42013626a74af3855afa09928281f277 42018da1bfb5054cd6cf1027adc46124 420212047dc87dc4ac80400d8ffcc12c @@ -14865,11 +16628,14 @@ 42046674d77972bae69e85ec3eeda395 4204ec473840d4751e452f129abb24b6 4205e410995898e524e7b79bf1da4983 +42061f25dce9ec2c94071c093ab73aaa 4206e8107dff32ab153335877c6176c9 4207d50e93690b44e93d941e35a8ede4 420a5e412a047427a4a947670cee7bdc +420aab63fc75856890b02ad244b1f2fc 420b08f5c1262601c922351a6ae99edd 420b16eef16ef34be772b30f8109e21e +420b19ed938a76a6f2c8743cb810254b 420ca9682a4d7684173676356294c023 420d70c336f4c00faaf6ed3f77c2ef39 420eedc9b7da410f66948e7c8bfaad6c @@ -14890,6 +16656,7 @@ 421e8fe4caff83815fb10e5386cd0171 42204b0f6a5906bd37c26065d5311313 42206eecfb924993089d54bc1a8c93ba +4220e69d484aedc9180d0135b048e9d7 4221892cf33ab54bca39f36def259a47 4221c7a399fbe26edf850f1fd1e5e496 4222ffeb3c49b89c82059acc83fe916b @@ -14906,9 +16673,13 @@ 4229d494986133e53d735f2df752de7c 422a2d2be218fc7d709d7269a2f52183 422bb856925197703e31febb59a01190 +422bf17d5496e069d03300a0eaa1ab5e +422de95ea32cbca8b0b6914faa604498 422e792c5abfb7ab0b62b4aaf86c7c58 422f49af03f4fbacc802519deb358be2 4230526e7a2d70a2c7b71a368e26ca44 +4231e1d581a524c629feadf8e95af8e0 +42320d6e2e70581afb31b6b65610b398 4233265a6a9a04260feb8f8b6aef1b2d 423357cb5ac46ef48ad40acb58054b88 42343166d37606ba4c8eb661d956f666 @@ -14923,6 +16694,7 @@ 423759224e41cba37f9e8ac149a498be 42385fd7bae5d31364cd22161a0542d0 423a93c9de63173a6ea313e0cb73f7ac +423b06df4e2ffeb3ff2ad85ceb4c8022 423c56c5a7858706f1cee647b224ab82 423c680956f3e91be34b3f55adc1da12 423c72aa4d3946f13dd10fdda16e4390 @@ -14937,7 +16709,9 @@ 4248a5c8f656b29667a206a8a945ea0a 42493f55fbcbb5e92af2bb793b6f21ea 424a1f26ac3d67dbdc1a8932f548cd1f +424bc9f4a514b98f8df4abcaaa8a7728 424ebc6d41f2fdc2bfea8a37eb3746f2 +424f6f6f38daffc5eb63ef89c08f810d 424f7d9588065a8a1babedc2efb5cf92 4250f2415ef9927f7c8a5a85689ec88b 425100c6481dd7f74def2f8c01ba36f6 @@ -14952,10 +16726,13 @@ 425a6a5f74c9db90c0758b50f1d6eadc 425c7b37677fa79b568442a21176ff7b 425cafa2a786de9157defdfead4c4fe4 +425d1d77c3040e4352282fe9fe59a697 425d3a1c7291696881bf4557f9ad6a29 +425dd27bb075434c47f63a3091f0b67a 42632201a82e54ff11ca39a76c38c12f 42636449c827425b6097ca7a13638f3b 4263691f7c58a3aba416ef304a5d87d6 +42646424373690534a55399443112f47 4264b109dfd9f229c4cc9aa2a17a8d87 42661651032c79c5de0ed000804afc05 42669b2312606c5c76849bcceff308ba @@ -14972,6 +16749,8 @@ 4276cd231d484e1968d06700e3fc1ad9 4277e23e57605ad0c420ca6982437476 42787b47e1f9cf39a870cea54b8dc6df +4279161478e4e71aadd49673117796b7 +4279caaa3a404dc54bb1fa7bfff86503 427b51f95515253e9155ec6180b65d6c 427b73a1ef81fe621ee72feecc513512 427c33c60584224e8691d804871d3db8 @@ -14989,6 +16768,7 @@ 428becf1abbd6cdf959054251dd11df3 428d60ba97288c9d09f2d96d72fdf568 428e19d526b3e3f7bf59a430750f73d3 +428e48aa86b6d74c0c845b501252e324 428ffb0f3e270094886c25e53581a998 42918004721d71d264ffee6a8e379893 4294fa7f8a7ca533c1eb3214a65a3970 @@ -14997,6 +16777,7 @@ 42993b9a75de2f4523122de8560c630d 429cc9f59b6a236c9202c6a3ac5dcb01 429ea38074d5aa96a39ac08efcbda6d1 +429ec894bb30c67f1708d8a466186ed9 429f35ad4fb04796d57c3814d00b96e4 42a1d4d4ab6d9ebb55053d9f5b22c8a1 42a2658fba8354583aae5d737b3c1058 @@ -15005,8 +16786,10 @@ 42a4061c510b282f358447d8e201e1c5 42a48b36c46501fbc5cfecadd624660b 42a5164089e1b35a356d5938ead9abb1 +42a5b1fcb122efc97839e77903e13711 42a6f7e4a402d5fd7740698562772722 42a748a1591185c909e3849df73fb160 +42a826aad0e7516cc1573ceebba3ebbb 42a96120d8c294fa39f139783a17e698 42aa50285bfdf2ac831f859905f34cf4 42ac91a5fb05d8d6001294263db4f7a9 @@ -15023,10 +16806,12 @@ 42b4e0c3233a4b96188647e424c58e4d 42b57c6cce9f19df110654a09fd625b3 42b67f75312c7a7e8200fc38b3bebba6 +42b88cbafb72087bc0eff384cb27ac37 42b895f338c9b23581ea66df8a38ff51 42ba7292964e7e9684d329a8f3e18725 42bb177884c886565292873706c74ffc 42bb88c33b26a4cc67253ed8d6abaaf1 +42bc0c367fe6ec49c2a014bef9048d2d 42bcae7b8fce5a9dc3a75fa087e4eeba 42bd9bb5fec423c6c640ce8e5a8c20f7 42bdfd9a3e088102d26160b65a033a64 @@ -15050,10 +16835,12 @@ 42c7825be377a3db8611565fdead9555 42c848e7d5968ab98b65aa2b4d9b7b13 42c84d4c4cc1fe72d6690bb2bb53ba03 +42c8b078e6ce90583aa445d109e304f8 42c913157a0a820d7cb43b6b51c017a1 42c9b4d6ce3959b65cb5514bc347d8a9 42c9c61858d389c4d99af8b0267002f8 42ca2965a8babc6e492546b57658bb95 +42cce2a520d1e4112ae2791119bd809e 42ccee77117a8fedbdf471a6b4d8a1a3 42cdf4919c8520189572a1f2939b890f 42cf020d0c8a9909d9be6404bf789844 @@ -15064,8 +16851,12 @@ 42d4b31bedae2448192181d8de6ed7ee 42d4b7b5acafb2a9ce24a7f4cfe71dd1 42d7be49576b793bea89309c06200ec7 +42d85fa72d66a109b8259be0f158a3f3 42d97da30fe9fbafe166c6880e1b8135 +42d98be9f8742be079b421352aab50be 42da062c35834d51572da4bdf67ea02f +42db6780bac6d551722f34b190d68b8e +42db9fc04e24a2ea7ab337dc8911c4ac 42ddd74b48adb3982786a8e27a378329 42dfc7ca3fd611e43e4e2979dfbfb78d 42e1c81e6b64c988131b0385cd688e88 @@ -15082,14 +16873,18 @@ 42ee610ae52f808f329369cc2ae23c0d 42eeff735b6d97eebe77b877016ee4f7 42f185ff77f42ca767c0b43dc035f720 +42f31f78963fc3cd58490ab41525e3e6 42f353a43086f44f5c82f7d9a9b17873 42f42c82208f0ed653b2db9b4b8f376d +42f4937a4a465a20b3ddeae32fd22b56 +42f796d25d07d46a7f34a6e402f7344b 42f7ed3f3e87e6698fa1d039fbaf2053 42f87159802004adbd7f7bd41c7de6a6 42f8a1ac92e711710b1ff0d3a6f995b0 42f8eca4d57c32230a4f0d6f02aa9960 42f98c46e8005042d6492145f71f68aa 42fa8dd9d785487c613b298bc43271f8 +4300d8da1140b619dd6e1978a5874e6b 4301d16a786fbe72d0f20db57e8acb8b 4302c9c352012a304484258e9112208c 4302e569aad98ec64cee7427bbe00262 @@ -15099,6 +16894,7 @@ 430788d21e5b49f9b73ebec96575eef4 4308307f24dffeb0af08823314328118 4309e943eceb16a92891b4bf5a144628 +4309fc5092a091ededa05abd42d7a4ef 430c0d4d833c604e3f26618929a418c9 430c52078e492f6284bf4cd522d4e287 430d383c6f81e0abd7e63b543dd4ffef @@ -15106,6 +16902,7 @@ 430e699835889e44ce03896cc0b5ad1c 430ec7bd52c54894fa4cd236df95e708 430f557e319572a0092bd7245adad7b8 +43100351787ac3e6e9f7225191f2fdaa 4310e63fc0b34299032be3da636457b5 4311848d03843ae124dbb8d153190539 4312240e8e91b33ed39ca88d892b70e0 @@ -15123,6 +16920,7 @@ 431c3ae463ed01314dc0a92f3eb2b593 431d16d731a60ed44ec100befd5704c3 431e1c3c6a6fa7668db0dabeb52f567b +431ee8d8c3199691853e2868ed5a574e 431f2609672e1b81e7669b4e767f2f78 431f93e5a70cb134c36716286ec77470 43208fdb961b66dabc7692b11e60ab7c @@ -15141,7 +16939,10 @@ 432e39d1dd14c335474f7e1b1714e6d2 432e5b379c76279a3c5b1c37e3c0702e 432e8d874f26dc2457df00ffb6de61cd +43323d96f66c397bb2d1b8dfae1c6d05 +4332dd48ae0d3ad1a9f6e684c8167fbb 4337a84a2895f550ed573fe4a06c591c +4337a8660aeca3b3adc13bca31311d3f 4337ab10259d7cd6e6cbc40ff08a248e 4338546ebb26db1b28161c313de2fa67 4339f7945f2adb101c5dc187794ee9fc @@ -15151,34 +16952,43 @@ 433c5d464d3f954b91a304224345e123 433d4e3238f2a3582737e27b25c8d49d 433fd03d180ad8a888aa068d7970ebe8 +43408d68aa75b39dbc5ba14b8b65ca85 43410bb95ea422454de4a9b76c8a80db 43411359cf5eebd477815cb9a3d0cdb8 434125712bd9ae4c3c72f6b74db28ae6 +43433c5c5b61165d1e1aef1c9fb5efcd 434415aaf254c5624f86f4e1808363a6 43441808242986730bff96faa978e13e 4347bebd39dff2a7cc2fdf0d4967aa87 43490bf278a354d6f53963707bcf4e98 +4349d3aeeda25c80c428b86474080c95 434a0d439db0c6a81f2791528ec202ee 434b58643efe42fdff23508b5b1647b4 434b71162e76969fed09a9f12cb670c4 434c84cb70f856023ac7fbcb248c481c +434d50eed332837084242095058073b9 434e6700ec7058e76811bc6463dd80ab 434e821b4fda54dca90c4d820d127a2d 434f1675d18625ac22579334527632f0 434f2f1960f9c3f04aa327bc88f05bb1 434f70472646c4eac1fd1a01c593e30d 43512f0682ca39b897a4c3ffe5fa23f9 +435224f242dec4865553506e70196867 43522fbf3a1ebee31f71d82a1e1cfeed 435641f35513acac927f0bc6e4d555b1 +4357e43517e7a3f61ef4e9af2093c5fe +435db03869447c901138a95f3b25ad60 435fd6618df9e5bc4826f5327d9ff377 43605f812b98e4879c2a90bd971c7c31 4360cf0eb955412004d2124f083444e9 43656b87cf770ce024b39806e68bb983 43659f426e4e19c457a92bd2ed7f5c8c +4366ce788d430cd5ee13d9d4de388243 43678c023646353ed839acf4ee65864a 43678ee388927c1486456e0df09f79cc 4367a58929b3c431a3fa2ae8bba6b68f 4368eb0d1280b9a1cb5b4974e2fd17b9 +436930b97c1e511ad0cc48e7d94687b4 436cf6dc5619b571fec6e4f6930d228f 436d21ea6ac9a50f61e370c04cb3753f 436f65160aa58649e33901f2da85a90f @@ -15204,6 +17014,7 @@ 438849f382ed8ae7cde9dcc0533e767d 43889b84fc64cd6ce07ccec37eba3b5d 438a10ced0ab38e1d2907e27ac69a261 +438b1fb3367261fd53241d8f7ad424a8 438b47e26ed143470e4e4245d46fb9af 438dc737a89d9ea66e4662e5f96ed8f2 438e9a87572338437fae9f5c83326bc1 @@ -15217,7 +17028,9 @@ 43942fc48c229abf2af549eef96fd589 4396088db299c8f353815e82d67773af 43963dcba33a3ce7e3f95d5df3d921ce +4396815c15b5f8d7a6a02c1f67fc5c9a 43981ce78ccf46a0ccf9f8e826461a30 +43986c3729c70fb4a5bd2ff2c5b15b0a 4398d64f1712a3c3e6cbcf1205e88a5a 4398f5ae7ea20cc7444211cf23cbcfae 439a091cc842a6c82e4290b7696d1d51 @@ -15230,6 +17043,7 @@ 439db00594120b1ad8b37420a1fc5b9f 439e0ecbec7eae3354bd73f6f16e7d42 439e6983366813b65357e273f424a60a +439fb1f1cc6781b6e642455fce6155a8 439fef7ee5267773fb4a4a2c264e8c08 43a0e2ce28b8f26e9628b706f0039f6b 43a221c59352e5c4ed9b84085250487e @@ -15238,6 +17052,7 @@ 43a6fb07cc4e158ea48b3aa06abf5955 43a6fc6773da4d4d9c237edd2c6de779 43a70ad9194fc0425529e5abe9845e9c +43a715b755029901ab99639f1b7e7107 43a747eb89b8006840ae06da5a973db9 43a9e18f2054aeafc8145a7efaf16c56 43acc7447b2d869396a529969910d450 @@ -15276,6 +17091,7 @@ 43c8a41dcf09c1dc4e8bfb2fe48f6fa4 43c9a41b169ab70902809ba30d23e259 43caee33cf78e050975c12f8e839644a +43cbbe8d1479f9a2b8cd102ffa4bfc10 43cd401442da64ab6ddb4f9def6e93de 43ce86defb0e4695170cb5e40c78bc32 43ceaad8f7eb15d996e36d0a1d3d5f3a @@ -15283,16 +17099,23 @@ 43d360ec4148728021a3d815f771c768 43d3dfe688085fe054dbc128d83d378c 43d412294cae90894af97d603a979951 +43d4e08af00dafd7e8f6ebbe7ed49018 +43d5cfb8b732965c8c4216bd96b0d166 43d9afcbaa31c297b7c5fb679ee1dfdc 43dac02bcc00fe8ab16d8e1b5a8f846c 43dbdd61a153628f46fb3289580c19ef 43ddfe870f096c8f448a9b142e2f055c 43deacc6bb829fd341fae0db04ce3fd3 43e0eb849396f472322be058f50f9e41 +43e139213f48623c82471b7611c741bc +43e21eddb85a2c03d05c3aba66225061 +43e4a56d96bd57f0e16339d88521e0ac +43e4b43cbec7e10ca6522d3236c3427b 43e5411df4d6a90192ac3e77619700b7 43e7361b61c2174d0365c5c544c1f78a 43e904df0640d6b9d0bdf07c55d5fccd 43e9b1b9ba69640bb8878701f5533178 +43eafc0cb68e21e3d0c35db9a0cfa59e 43eb4b1fa083083ac0244c7424953e78 43ec31606e03577a20757a7e5db6758d 43ecb168d20ded1062257f6c4022b3e5 @@ -15304,6 +17127,7 @@ 43f4ed420ef04de1bfd3c0e9d7905f58 43f500f3ee6b712929b212fb86d8ec65 43f5d1d3068d8215b150e7933daf018e +43f6c1ae87bd3e03b8f552db93474edf 43f8fdab9ea3cbe4721e1b208019a7b4 43f90d8b8e9eac5060d18a785a8124b8 43f950c20466bf952de66ec62f532124 @@ -15341,6 +17165,7 @@ 4421d5a4e307ccf31ce7128b466d62f7 442252b9fb9a7433446bf68154325838 44234450629fe62f8c75aa60704ac1d1 +4423b80c9bc360948bdea579da7c3a9e 4423bfee22cea6f3b0ff1f65a3111cdd 442695ce9e03f9281293a47f291fc127 4426d3f7143afcf41e15a7e1f2c69dff @@ -15359,24 +17184,30 @@ 4432baaaf21cab35f667862d57cc1f72 4434205dca9ba653b406f3583aa121d9 44345babc95f04c3684a844d679292c2 +4437701d51f5a78118d4c64fb07b3f81 4438214602af1aa9f5299f3ade2873a6 44391bf5e4d8dbc287404dac68c600c6 443946ea99ca12def045d4a5887340f6 4439d10502e3844b15bd440848cd5d44 443a6b1e66608e76ee4fe65d4c260704 443d0f4b5a323ce224ff332e972fe35c +44407bc481f968ed9582a5bcd51e699d 4442455034f954ee036a39d996cd62e1 444279564c55565e12711364cc58f49f +4443837fff02cbed95ed68e83d547035 44441312bfbd0cc1d9a7b5c318db3085 +444472056e78c56bfb6bd9b0f5b04bac 4444e1cd1439170be9f59e808f366387 444845b21866042c5ef6028e5225750a 4448c071ccfc081b8c3a0e79ca392cf6 +444a0730065347359c6d6484aae064d3 444a927884777a8b39d441fe3c89b8f2 444c869dc3906d98a15cfeb2b7c04aaf 444daf575c25615cf5adb9eac5cb9950 444fe0202e5698467228fe332e11aed2 4450e51a64adb6b6b20562744874a370 44517799498819859ccb3eb32a47874c +4451be500c775c61718488f3adf3e022 445267742e565148d298ee911dac7621 4454816cacd452b636979d09e6907e70 44574bf104cd206dde9a39a527425974 @@ -15391,6 +17222,7 @@ 44606d4369b90966861725b6aa327046 44610fa000a8419f62c7af19b8054830 44621958f89f71b726ec6781748698ae +44629d2a469c122305e2be1ac4291bed 4463576db582b91bfcfd798c37646b3e 44638cabaeb0ff2dd03b3e596e0df515 4464254aa50708f31386fd639c81f1b4 @@ -15406,6 +17238,7 @@ 446f833d98f34ca97e82d21ecf564a3b 446f8aa40f18f407ba11cf57b995678b 446fb11a864d5cde75d4c4ac058a46ab +446ff6107eb1ebe0c7de7a88962fbaa8 44707ecf8747217619c3eeab4efe1335 4470c1f88c9040b8af798e8544349d14 447348da2ab19f5c7404b6d5230c8c64 @@ -15421,8 +17254,11 @@ 4480f3e08a9ad4c01675cf6b54fcf91b 448175e8e6179c8f14a7519b19d4fe54 4481c0399bbedd5ae07f5d5d430ffb71 +44826b2a1f175b99ce8cfebd54f0ca99 44838e49c54080c831d17ea06f16a29f 448662e87a32ec62d9627a5f747f64af +4486dcd97b57e8bd09f7ed1c649bafcc +4488544d6ec59a5398374fb8dd562e1e 4488d62f487094c1cd7a1f1227b51b00 448a55731795e17b004e766e2f47a6e0 448a590df0224d7219a459f6d82f5a69 @@ -15430,6 +17266,9 @@ 448d6f0355a0b728eeaa26181f0cd753 448d856ee8967ee18db19593b0293709 448d99687baf4baa9c2830fec339c55b +448dd48acf0a596f2d21e28f55d30792 +4490d797303cf575c509af2171d3a0d0 +4493006ed20b39a5c3491164ca775e52 449388b9efaefa176a39329ff23fd19e 4495d822e3a87c5b79f21032586c42e7 44979f022b68992384387962fe687781 @@ -15452,6 +17291,9 @@ 44a65346d85671dd9245375ed22948b0 44a6f2cfae66002cfe4dfcd86f876357 44a737536345c3834351dc4e4a34828a +44a9310612d8547c2b9efde4d26cf88a +44a9b8d4eb200fcffcff235c2b6e3e22 +44a9f9d9dc1561486f98a1ab4ff230bf 44ac7e0a10c22d163bc0dfe1fb3700f5 44acd4ee323f7ec8802bbcc23a6efc52 44ad4b2db3e7128ad86d1a7787075048 @@ -15472,6 +17314,7 @@ 44b966b2a7bd0b45bc7db146a238486f 44bb167fa464c8cea4182ff829ad593d 44bbf9ff10311812ac9cb9d4a14778bf +44bd916aa3e03056ece42942a9b3af04 44be1420e7b8bd926b39855518954c3a 44bf372c3dfc60f5a7c602da87a96217 44bf632795fa9a2000da59060453be98 @@ -15493,14 +17336,18 @@ 44cf50fdd8a06f4e5381ba0d7c324793 44cf7df3248d4c8d0909e7470ecd29ca 44d0cd9ce7413eb3a1472e94014cbd82 +44d0e289625130bc853461772dc03348 44d177514560dcf6ed37c67db9d85cad 44d2395e28ef51de4ed1ab91ccf2b05b 44d25c626e92c0ce998c134d30367ca9 +44d408e54b849f13ec6d5ceb6c398994 44d4232b99207587ecb426993407ed1f 44d4a06f15e6fe4d3854a7ea92231c30 +44d4cfee61dcb1c112fbd132c7162caf 44d4f0f6808a22ad71275890fa0b4838 44d536fbe05e6c2ac7eb5da600f6699f 44d65013c96e605af4f986f3ffab5d38 +44d723f3294375773e2cef91cdb0fb7a 44db457435cd0c8a95ec022bed430d0a 44dccbfd3e4e744d6ece4af55276db1f 44e0100588a048769208803229c67354 @@ -15549,7 +17396,10 @@ 450d1f5343489b9dcbe9dbf6d45cea34 450daacb138860dfd10c5a2c75cdc75d 450f5d7782bd0a1fb6f450683cd596b2 +450feb29756504c74a95fc1b216a2779 +45101515f99086e6738cb00510a7ce9b 4510601d673ff508535219115c57e071 +451071b74a4fa3de6a74514923214d50 451076c2ca060fdbe47ad612c514a6e3 451181f39cdc91708566fe4073b7f174 451216c650d384a96b7617749ec08b6e @@ -15580,8 +17430,10 @@ 452c25dba4f092d5372375ef93004a10 452dbfd811db13c04644d7119c02df89 452ed45592b0e8a3b6e1aa5c81c46b3b +452f27e49edbf9e05dbb453d7e0d4bc4 45309e2d262e5801361aa205874fc29f 453126de9107b0905e24096be27c070c +453291b8af8d5ea7a13e8db69b2258d9 453546c77ace18cfb052ec8adcbb4390 453993faea6a3b08b76f22cdcc9a38d4 453b4600c4ece261e0ef33ddadad8de0 @@ -15595,16 +17447,21 @@ 4544de17009ffb1ad6f9afac26749fd9 45463ef2bb10cc94bb359e83de76f6d6 4546727252bf58f4ce4a368cc51875f5 +45491a4480a040a36684620389562841 4549a269439544595c9961257b5a9dd9 454acac497723d10e8afe4119b635c47 454be8cdc27968096eee0e7f90acffcc 454c5a5933fce7d77f3e66c573c6b600 454ce30a8392666e072e9dda5ce7db17 +454dff7833ffd5e6b204c24d8df7cac3 454e74777761111b10d605bf77d91d4c +454f0bb8f2abddb377c0dcd7b271d1f7 454f59304819bc979315f9f4c4e45350 +454fbf5d45bc5d1211a74eec7590f719 4550e62e0258660cbafa88eaec12fefb 4551130561cc77e416f086c4688eec31 4556621ce62fe0ca6eeda2dd7496124a +455771f628f5e3d9dde799aca7e1cc8c 4557a08174da1d74bbcf8989a02a2719 4557e835d62267fc8f037ae5079f4650 4558c641343fe2127f6a9bafd1e6e156 @@ -15623,12 +17480,14 @@ 45677e37346d859c18e61f024497fd4f 4567bd9a2388ce4e274922b547597a28 4569b45bb9295f3810bd0b00daa0bea0 +456a53d1a4b6d5f224341b3b8ff33d53 456b28e609d2f3f127887bc2e55e5692 456f11823d95b967c25c9af33c2c4968 456f15539293f4266e61394a6a148284 45713d40feebf7e487c5007ce529f156 4573d4488727cccde5f9364a200f5817 45740324146635c69ff18a8fd7a03360 +4574347cc9b66795bc2bb0a2f8e8c568 4577786aa9f49dc3933cbb10f8ecb229 45780b4cc344dc94da21882e8ccd501d 457ae038d0f3580918313fa6cf021750 @@ -15636,6 +17495,7 @@ 457b84157c97fc0ed12ab5c849c3f4ff 457ccd66ffe0f5e3678e482fa24318fc 457cfc4b1fd9f5703b7c7ffb0e509e9e +457de042f16582088928b21f741d506d 45819da1132cbb3e3bc756887b57c4dc 4582226d784e64d9863974ec0a327352 45843aed44f0107405f1bcabfd24302a @@ -15643,6 +17503,7 @@ 458592896cd20368fc2d138999207788 4586f65df73fc7c71c26c35730ce8d47 45877c11c2190418c40893f5e9924e06 +4588ccaf77e933d94b59d9b87606c597 4588db61b4831d5bcfaebf2ad92128de 4589fb0485f7b73dbe8e5eef306f51fc 458c20a11fc24f19be2bf57c639e4678 @@ -15650,10 +17511,12 @@ 458c779f4e87400ff156c81e982c0e21 458c7f272e2febfa1024dddfeaa8069b 458cff25882632c63a763a1521d8c0f2 +458d3a58ad054c46a4ae6bf93c0910e5 458e759663382ec23676c5be0c39d1f6 458edfc4c61f6437863e83f1f6a65098 458f2ed84881e8e17c849c34f1ef87d4 459172261049b16fffa7675654723b98 +4593d1bceb2339f8cf294cb06133c94e 4594f29588689ed2a192adeed7eaf437 45969b43dcbbdb0091b176ef28b13019 45972dc3a359d73d95834bfe9a703c66 @@ -15669,6 +17532,7 @@ 459d574dfaa6c5773af3067f0765127b 459e5b8e44a4b842507e73687a230ed3 459ef70b58c51b102846812933a3e79e +45a09f6d0cc1c0348987166f01b20016 45a1dfc26ca0e78058693cb80f6e7b36 45a3319fedf9b98fa06c27d83bbcd6af 45a4c388512a3a1efb0d7d122244a204 @@ -15681,6 +17545,7 @@ 45a966e0d5b944715333c173cd0cc24f 45a969aba8d88304649acb52c61a94ab 45a9b5dc18237b48d8070fbde50c9220 +45ac92c7a5d46b29a93fb48d8735140a 45ad5575025f073ab5fb54fb920e3808 45ada1dd8b2ac2293b7df9a6e277c6ee 45ae078abb4fdb68af99c4c78e27871f @@ -15689,6 +17554,7 @@ 45b2ef614ca475ad65d251eaded321bd 45b36f1c559e8ae7d7824e8708627ef0 45b3ab06f316a83877c2707a4679f4b1 +45b4698df2c4f2e8689d15c76b880440 45b48c0077e7c1c1eead2f946aedd2b2 45b80490131493fe8ecb43e9774d2727 45b8e70fac8dfd09ffa0788fc75b244b @@ -15702,6 +17568,7 @@ 45c1b6c1322b1687e229981026bee6a1 45c33bbeae7a685c908b6a6ff165a35a 45c37542fc32a2f80a81e0ebd26025fe +45c37e6ab9dcee77725f0bbbca9bbed9 45c42d8a26cb32d1da9c82e0c9d936f9 45c5d81f0b4e0a55e1cabaa80b28e679 45c6443c0758657571209908b192ab95 @@ -15710,10 +17577,14 @@ 45c811c490d6f0e377246184a518169a 45c9e92a1e8e6e63e629f55db54b80c8 45cab5a5813166af59e4bd839207ca6d +45cb142980006eb7b1f5d4e30a22e347 45cb18df394fd3ce9385b7cdccae6d5f +45cd2f12478d2e27e787f5c40d5ad386 45cdd6fd9429a148593c0aadd420bd58 +45cf3343f82ee014be67cc6f00f67ddc 45d0f2acd5c5fb8ae9358529893c9271 45d2e4fa8a501bafeb5287f0f1f953c9 +45d33b82b62d37bfb5357940775008f9 45d545dcdf7cd7ef52b0909a0f262ca4 45d6524f92876ec69d1e5e8c598cd4f3 45d6a8e3ce2481750ac4914c918c37fb @@ -15731,6 +17602,9 @@ 45e07749d9fc60cb0be3b9a609d62547 45e0c5d3916ed493f7cc425acc005905 45e371985c99f698e5930b3ded1ae74a +45e38ef9bf7332bf0d7d988280668c1a +45e4570e923ccebbb516aadfc6508af9 +45e4964314023a921c719115abc25070 45e4d257c22b1c9ef272ea393999c3c3 45e5278727ceb349c9774a6570c078db 45e6e7478e86d6df22beeb1e47d2c9a9 @@ -15761,12 +17635,15 @@ 460006099388cce4b59e537684095cae 4604ae1be35244d4ed59d0cd19d66b3d 4604c0bc5afa2cbab44e33658ca3ed45 +4605061608ae089b61bc443fcb36da10 46088d233fe1e552a8bdf763ce4f9a78 4609632c32f5d9dee560663b692dab6a 460a6e2fccc860fbef2bdf4b6d411cb8 460b23c558bd5de51a662bed74e06c2b 460cf6ec226f1e9fea22a96886835b99 460e26c58a49147f364d35f525ba0cd5 +460e28361f52b7092c62f1b57d5b4f15 +4612af5c02dbb670e2df958cb4ce5953 4612b88c55923fae4a5c4b3e4df28b96 4612de8266d01d5393d190ea56b8653d 4612f1630dd38d046f341dac6fcbdf7a @@ -15781,9 +17658,13 @@ 46215192c9958fcb2f6062b31e4cf3f2 4622a20521da2aafdbb9a547e335242e 46236973ee9ffa55e35e7fbfb2bcedb5 +4623fb6da9734b3f2e5763ed5e38716c 4624456b3b4ebe4da8424b939da584d6 46277dbd8beba3289a45fffcffecb810 46285254ed48704333a627c0dd20fc27 +46295bda1d1668397d64ee2ffa4e495e +46298507fa0168a97603aaae2325b5d5 +4629a2ead7c69fb2a719781ec1ab7cdd 4629f105f5f793945935876c1d17cdc7 462c642ccd7e9022a8d75b6fa91b3383 462de91638f89d5a624af04af4c05eec @@ -15792,16 +17673,21 @@ 4635147bcc5ab5528cb00991681edff9 463588b21f9cf5582ebe5b6cd85d2397 4635c6451431d2aefda66e42aa47d29d +4635ce5bcf8e7ee0316662066ab3f9e2 4635fb65617564312a317aaabda4b1c7 +4638ff90a6c96025ad6761d8fc88c033 46391a017471ffe034428862097fde6d 463937feb81c81ee1c4b3677947fa280 463b13da544f0e7495c9fb2b51acd1cd 463b43358ab91f43220c5ec2e319982e 463b85fb95d2d9308d9972976ab8a9e0 +463cceadf1aba159904861a76ab82e29 463d672ca530ee509a215dcfc32dfa2a 463f5d73634a1a27521ce7a30346f84c 463f8961842974a8a2f16d3665ba809b 464045f0c127c31d1561f153be184229 +46410b528e3216b48208ced41b6bc31d +4641b4bc5c1a91e3c654ae8d8ad9b6c2 4642eb64fc499858116c1cec40791233 4645a4ea725050f4bb17440803c1c5eb 46468d53f04873a16970cdea3e1d36a0 @@ -15821,6 +17707,7 @@ 4655c036c2ac0cc012562c8ae00a174a 465637dfaab56b8c9c1028923b081f8e 46566730a154cb522253d28c7386af52 +46574064415354897ff48dd2e5f55e9e 4659de97a8b9e648317a2edac9a2ac76 465c9f0a6e584f9a12d97f773ae882e3 465cd614f46725cb6e52a09a3a160b1e @@ -15830,6 +17717,7 @@ 465fd9067564a3f1cedef6c1d0c73b8b 466130509010a6bdd4b7c2e1d333027d 46631e9129ee349757b986a0855e5ac1 +46647c55e11b57f5b55b5b5c565d957f 4664c9dec5a43f15590f3367b71d103c 4665219fd8480018bc3999cd4d6946e3 4665ebf0d93852120766d57250fc032f @@ -15850,6 +17738,8 @@ 4678ae4647367840f13c9650e27a5240 467a0a8d6f95905d688b124b6daa969a 467b64cf30be3816be17619c6a77057b +467b759ebd1d19b2f173bcbe0d2d5523 +467ba293a098d19c3770b1bcf1c65e7c 467c09efaa7e0c09f5888a4f944815cb 467d296699d2721648736870c44510c8 467d314043a983fe5111553a69348874 @@ -15862,6 +17752,8 @@ 46832707be2f3f6f18a0c13b93ba3b26 4683b472db37d6027884780923899d8e 4683bc943ecdaedb777b6a4d72a10f8f +4686d0296493b8ae03208286cc863791 +46882906f38cc39cd7b6a038a315380a 46885ac4f930fae3f90f932320fc8976 4689ba89654509bc3c0b964e1842c1cd 468c2ee2f11e29bdec9f1f6ee09de1de @@ -15908,6 +17800,7 @@ 46afa208083d609c936398370208137f 46aff4d6cde93ca200ea6f0bc694bfd1 46b0a098d347ffeef33d5abae67a870b +46b1e9dd5bfe55ec19ff57bc838facec 46b53e642241b29ac1bd951b7519bc5f 46b598e6c09e2e0bd13bf7e40b2a4b6e 46b638d91a75881cf259ca615687f78e @@ -15925,6 +17818,7 @@ 46bd4b2de72f6c396e914b56f81094a5 46bec85a900423ab4bc30109cb9ae494 46c0211c372e1a1bd192ca9d3a33fdbb +46c02706704f878e5db0f1b86365076c 46c070f3c65f16daf74d91f481c1d1b1 46c09ddcacb00a676f9357745fc324fb 46c302b9e7783ba91e5d323c07d85806 @@ -15935,6 +17829,7 @@ 46c6bfdab84ac9e0710bad5ebf5dc815 46c7e27989277ef9c3dbe2460e106f5f 46c9e09e3762aa0ae52c21ea16c158d8 +46cab578d94263b0e903ac7c6a4ae89d 46cae35be29f7dcfedfb50a8003f7e26 46cb5f6bd66280ac595b10c542eae0c0 46cb9380cb21ac41b3d129f9e8891ea9 @@ -15959,7 +17854,9 @@ 46e57c4f79dcffd3df62aa4f5e27e8c9 46e6da465fef2e30d4ebd62a7527ade1 46e6e149de34b15a8bc46cb6fe1ee2df +46e769bbf38bea232a838f872d52b24a 46ea111d7ba52e0a5140d8d3cb4c418e +46ebaf2b4eec3ee668beec2d5c09c5fd 46ec8ae78ea8ec9a87477a9a1509f356 46ed31f04f27c234f200b90512d3f053 46ed5439b9b24c8e3e4857fc45472185 @@ -15968,20 +17865,25 @@ 46ef5559ae123a43b8d4048ada6f1d01 46ef9db42bf8e68de295b7b5efe62829 46efaf56b959892ab63bab0f38c84a1d +46f10310a578b516e86ca6972d300b63 46f1aa877b0f11e8c389b752c40a3d65 46f1acad8cdbc7abb403df9dcf3f0799 46f214a8ebe17af4de68354b984951f4 46f25128a4f7a4f2f7ab7a9221fd260b 46f2cabcbde0f06f3d8fd217851ba8d0 +46f4321d20cec6c356c83ddc419c5ed2 46f7e676e242d46786afb2d8cb40d28d 46fac0544e9d515098fa7285c74cfc9f 46fbf3331347095cc096754539976afc 46fc8c4a99598646221c9614b5add5c4 46fce2081322010b5a284b2b6b243ff3 +46fd903916818309b87ffc6f0b873d22 46feaf33f06e88f668efd1a178fd3090 47036e3eb188bd0e7f96400fb723e200 4704325bae6f7b896ceba4a8e9cdca5f +47052bf348f0e99a0c05b673b5d23b4e 4705876937f77a2ca8bbd13aceb013da +47069d46081909a1d81d84326e80c009 4707205af4398a68a20533d2ece802b7 47076f1302df6cc1c3ad0f452c80dd3d 4708efee58d6c7729c0a66febbf39928 @@ -15997,6 +17899,7 @@ 4710497acea44a379727775d4f076e0e 471281cd0a687b4a24104137a117d698 47136bbaa8f806ee95e86f6f849c0bf9 +471485ebb6aed16f986f80b535dd18f5 47195a883033cd4f510f35b02fd5bfea 4719c6897161adaf112cdcc5d21b69ac 471a0562ae4fda1174921273aec5fcf3 @@ -16006,12 +17909,14 @@ 471d5623034d60487a3980a676c1e02c 471d906f41f6267a4de253b8167161fe 471e1087358b5aee93736c3a4521d682 +471f22ae0613ee169a21f503ed1fc1af 471f55131c0350ecec7234754d71df48 47207b991c4a536908dca1f1002984f5 4721adf0bcadb82b401bb3323b51c2b5 472229e6288a08cdfe861b166a3e9d94 4722ce54964c6a12baf46356101a53cc 4724ceaac480dd74a1d1b2058aa32517 +4726792d91506b673b275bbdc3ab1267 4729e6616dfe0db8113202337628daa6 472ca3d3b145e6ceb9934c0242f6e8ea 472cba040aa09a03cd7751acafa5e41f @@ -16021,6 +17926,7 @@ 472eb1b0e2872a7fb640cf4458606413 47308d6435df28cf147327d0133f9371 47319e8f31483f99b93643760b370db5 +473254d5ee174c41c5d80bc3dadba47b 47342fcb9583ba20c9c7a57ad068cb84 4735eab6dde8e08adfae258b6ee4e73f 47361f584eb2dc5aaa7e0cbf5737fd0c @@ -16032,6 +17938,7 @@ 473cfbee0ab70bd4119651b67840b976 473d317cd2e632557f7d872791afa277 473dfe82d654758cfe657d9061bd6343 +473e5ff23467324c69d2ce8e4ae0644c 473e86d185227cb273baf51b73479ed3 474002ecf52ea3e1b0aa2f4745611b6b 4740187409b2e5a7163dab602dde963c @@ -16045,6 +17952,7 @@ 4748edcdbd9e32aa10302170abd47005 474a825bb6892c178ebf9cf54a4ca5f3 474a9490af8c31cfb0555e33a8e03fe1 +474b46c3d805866b6bb7c6574d78a354 474b5424c7b97f3c15f40358e810042c 474b60bb7b373e01376eeccd76abd439 474c6b76e438e14227be81d7fc68d0be @@ -16066,6 +17974,7 @@ 475a542e75c66c16764c7dde959a179f 475ab110fbb065f725a2e3245e1b3913 475ca0f147f65ccf9f4f1d6a311e5beb +475d3606a6ed9a7d8a56551567ab58c8 475d539980ee664aa14fbf6ad2741b63 475d921ff6eb9d0795a2a87ee06ee720 475d94075a513bb0a25256b48334ca87 @@ -16074,18 +17983,23 @@ 475ed87f627026c0e40da3fea32d7169 475f3e17a11d8ca1b4212802eb665cb7 475fcd63b1ef20c79b2cd5ded67b37fa +475fff7be20c510bd6ed3d36e1ca4354 4760e0349237ab1566b2ccaf1cb41cfa +4761bf851cb8b579933530ed4ab8437a 476448dec03bbe849a5b89de7b8c545c +47649abe3b55c9864c990b2f43ec8fa1 47651d15f6d17dec7cda9ef2cf4eea42 476546fe28f4c1768088e9d1e2ae0686 47677abeb07f8006c13b2e8d954ed8b6 4768c7cdcdadf443ef9f634bcc5a953b +4768fd1940a34c8e0f533d768f0f854c 476958da0bb4a8228b40b416e3a57c06 4769f7d123c2b64b1253a3dbb8f894e9 476bc4309ca662ce565362f5af7b1c75 476bd4ab719942a358524dfa057493d8 476bfbbd630829bda9400c4f77db1434 476ea5205f1e6380a58a6df08c09fd16 +476f9dee242e536ae08ba34b8e411cb5 4770e684ecde467d17232341a0977bdc 4771115cdd6a5cee3f4c97abe3818b5b 47716cff18857a44c141168d141e14f6 @@ -16094,6 +18008,7 @@ 4774b7ff4969f472854e4fae4d3a6cac 4775dc9069682fa94b47f7c46d1d28a4 47778e2338a215d38c70d958b0fa71c2 +477833890e2ef4cd325a01e2fd0ed756 47792c7c6f50b92288ebf3677916c9cb 4779dd6d0ca6334fdb095b4667fc3602 477c0d72f8bc5327f100d7a8219d335f @@ -16104,22 +18019,26 @@ 477f1609629dd7944ed97671c27a1cbf 4782796c8abde35b98544fda9b56f0df 478359ef9c00ed6f9e4bed2d96825dac +478365a2c3522c825991f0fbbb9f82e2 4784166057f813c4fb165f81558a9bfa 478564ed0e760d108096aa8b520518d6 47863d6d8f34acecc5d057d922972c8a 47867584869ff8b710bd87aaa26b792d 478676863a3d40c3852d45ce1ffef4de 47893d6303dce5cb6ec71fdabd275dc5 +47893e07a8687ca5e9cf8e6fb9db76ea 478a666d64da8c5973cb2eb5609807f9 478bac549ba7eb9874aa3af571f57501 478bc2dcb20c7c00ced0e1f42af2b529 478c1199bed0cd1850ce66b77ce2190d 478d4ccaa1d29478275582520869c8b9 47905c017c59605a229a85d02340f301 +4790fbee573325036760ac6140b85911 47922ab1cfc7c82ac8ee4829b2900f43 479327a3fe931bd0ff96f4c314117f1b 47932e30f4daac1e83cf2675f079939b 4795d3aba6620a72c9ac0fd03d3d3a31 +47965d7a3d1cfb92f9c14e92c31ff40c 47969d40bdc03d53362aef9fe3a8789e 4798375b0d2c3a2b0c0a277de68a47e6 4798fd9b17a5419340306a10991c82b1 @@ -16153,6 +18072,7 @@ 47b6ae75c1c6f1b1b39215f8b1de6829 47b6b31f2e6bd62c1a61fe8bb516d0f7 47b99a4a52567f7d46f3ac195458e4e6 +47bac90bfa72d1a09fd3ed2d3ac96b56 47bbed66125f7455686793764e865098 47bc88269dbcb3a971f7e55f35d9af23 47c057d6e3027263c78b4c71ecc5d9e0 @@ -16164,6 +18084,7 @@ 47c7bb3e105415bda8e60b435f9024e0 47c959bb3358e2e21724a6693de5cf5f 47c98b3bb79ae5a29dfd21aa46ee60d3 +47cad408fbb064fe45fea272adff8213 47cc715435c737989f2ce97ce3afae4a 47ccebf02b6b66bb789d4b437e23955d 47cd95cfd1042fac3527f7fd7aa044c8 @@ -16179,10 +18100,13 @@ 47d3e772a6bf50f31ad974a0bc7b2c0f 47d65bae395579fdc75a17b04fecda10 47d7686ffafee2d73cd9691c39309b8b +47d81a70f4f346f961f6943375e72e9b 47d9935a8ae3b2895ea6aa707eca4917 +47d9f9d9b514b8751866560c2ce79b4b 47da00d98af7f7fe227d0a8b05160b88 47dbbea8add8153b6d05c633de0dc792 47dd32c7279938be5fac0d92214e489a +47de2ea6d96a7dae35c8da629d698797 47e0272ba7de60b04782ae2bc6d9d34b 47e2ef088d205eb838520015cca93df9 47e309955bca2e76d3602f99a2ab0a63 @@ -16190,10 +18114,13 @@ 47e5e50cde3976e0542d73fbaadc4956 47e8a3fac046b30da05481070ce28cf4 47e8ba98786c1cb27164fe254ef51803 +47e9ce92811896002b0b23bc0acebb09 47ea307a4610599ab562ba4639b58a86 47eaf3a680a4955c3734d0589b74cfce 47eb7b7c0636e8112f70323b9677779d +47ed283a826a2f330d0b40416d641cd8 47ed41e602a78b977d4ce854591b01f3 +47ee5182a67b8c89807e12631de8aa50 47ee661c7839d7292e25bf5e20ea3781 47efb66a8ea12c13459ca08cdc9c8d18 47f058ab811ed3dcbda54bc9868009e5 @@ -16201,12 +18128,15 @@ 47f44fd30b50bf77e1de23e63304bc98 47f48ff32b1825dfd60bf920126725bf 47f62006bc559795c3f32320e9978898 +47f7d5ce382edcf91ab32d868431cc43 47f81d80c95d93176494596d4614da40 47f8902a7567b93debde9e3e7aca3f2c +47fb5fd996def06d648f43c644c58c3c 47fbd36f44afa6f7ea27ee587e21732a 47fc3012361f02f51365aa80e7aa8608 47fcadfaf93859c733a993936c0871ce 47fd512ab5a8b49f46a8282f18fd8a16 +47fea9420630d2625c5c0caab599f6af 48005a5763c016485026184c02bfa2ae 4801841e1fa484d8a4698f594c080d92 4801ecff8bca85c9d2466c2a8626dcb0 @@ -16220,6 +18150,7 @@ 480b2da77879d0b8dc6c0e19ae5f497e 480b4ddb7ce61ff722aa3b40a4c49e2d 480b7ee6f08a53245c05bf6ac15cadc9 +480c01e24034eb6a281a3a7d3ccde9dc 480c8c9c3a31fb4dc033b272f965471e 480d752cee098318a120568487c8f995 48100e194c5619f7e473a403f59f13b1 @@ -16235,6 +18166,7 @@ 4816162e154fe84fbe0c7975d053ce01 481782900d62330306a48b942d63b246 481889f317ee54f3d2ca9f3b01d98809 +48198f783ff943b54cd963456bf7d9a8 481a7fcb6991089f6583100b25e284a4 481b60ac03fa57481aaf8c6a38d33b88 481b69518e58e23a076952e85015649d @@ -16246,12 +18178,14 @@ 4823abfcb4a175c7c6ce416936b1c982 4823db405890e25fba1affbd01661e1d 48253badc5d825ace43a087cf4e57c77 +482545708ab2ecf568f26b69b30870cc 4825ce8cf6f95137ca626ac81732344a 48263ec33fd3119fecc8efd597ab0ee4 482653d71a12ed8b567f2cc6879f205d 4826db2fc2496d473a2a1ded21ab5ef5 4827eca332ce7fe89cbde3a82aa2476a 4828066d637a2fcce063dd896d0bd618 +4828de276bb51580f9256a77e157e10f 482aff30e1b166c7cfae82aadf95fee8 482b2b8c4b55d900d0c1b13762ab1dab 482da411a831787069c0f37a1b0b4c58 @@ -16259,6 +18193,7 @@ 482e69fade922ab78751b06214da4715 482eb7a5e940c8f000bd30c0a14371f2 4830a4204f45cff15441f53e6fc90c48 +4831e2c85eed848fec81a00eada3fa2c 483257b8fc67924dee252a546fb4387c 4832bc25e8aafd7468c78f4066b265bc 48338d2bcca36d310865acc5c070dbf8 @@ -16267,6 +18202,7 @@ 48357b93b9a184a84aaad6e7ca15acff 48359c9eb749f43094a2ef57dfc24838 4835cde96626909128ec3be7adf7eec3 +483611e58f0a247b2a6af8b562ccfd32 4836573ec2b21552b95144f5e8887813 4836da8f3bde1333b5dafd2d1e42cbff 483723f493b984b4cc828632a4ed8749 @@ -16295,7 +18231,9 @@ 484b979160efdfe9c94268185292f478 484cb95c953786c0c8be29d75d4f43fc 484fb0ff4527b32c96ed715ca3e6af71 +484fdd6f9c90f92eb2a94fc989fc4cbf 4851c0d260e1a70667363209735d84ea +48526bc0508de7b3ca7a76d52cabe514 48526e7b92c40bce71fa4df183b2dd8d 4854a9c7060e3c4ee1baee60ec5b14fb 48553710712803c5de74ededec3aa50e @@ -16310,10 +18248,14 @@ 485fd719beafb5c9d06de31318187794 485fe4f1a7113b43c199845f30f4a7de 4860c2e137ddf4095ea41137f09d48b5 +486167b08372c8ab2bff774ffc642d3f 4861a6998a12d11edec711cc21efab21 4861b6110dd1f789befa80d75c6aaec7 4862d56157929529618b21d4661c397a 4863c43fd7ffd256768a158851592139 +4863df530e362a01c28a21e9095c3ee9 +48665cc81aff41b77130cc639baab2fb +4866dc3d948935cd119979b1b308ebaa 48679ec2f5eb21d364ab696bd27d7d02 486879f2e69dc0043cfda81c8b2b8732 48687abe0fc4a992fbd4d9184ca1825d @@ -16328,17 +18270,20 @@ 4870a70e7522fce22d66d906f2c17c47 4872288cfcd68aee28448714782261a0 48725dea6d1fb481a2c743be69354d53 +4873920aaebd22ed60cf7e97f5f7ae51 4873b8c25172b35e718090d4225fe348 4874538ebab9578794ea401ad7616a4e 487549cdf5ac96fea26b16b16b0365db 4876a4c1483ad3a5f6c876d56082213e 487812b8d6587351d270b776cb8db108 4878478b9a9ffc6ca2d20a583aafd850 +487a6430151130d69110c77e20f31613 487af350a3f94efdbd53e049ca2331eb 487c8cb44f801c091c7863119e49b9ec 487d1065cecd187e434e1a5a893c0486 487d29a015e37acf6bbcecb45792187f 487dfb00498c9ef74820e0a0de414a4a +487e2c72aaacab6d9fd71558fb230b2d 487e69b76de4d595d5fa6c2b32dddcf0 487eb10308a207eff26d12ac554398a1 487f2ab3caa1201d07d34381719e6b9c @@ -16348,6 +18293,7 @@ 48820b84c6891476fc04175f82793394 4882de33a82735d293090bfd4a57e186 4883ae4fc853b4c2d2b9decc337d21eb +4884a2d5a8046283db8c158ff4856854 4887b08021a85074f467c022b719da8b 4887b87a4a9a5e8a7cb355e618b52105 48887e3450f609b8d13f1fdf828094c9 @@ -16365,12 +18311,15 @@ 488f507d8a2cc33e411f39f9821b8441 488f5a61bb38ce5d09bcf32a9651ea66 488f5c7e21a08fd09e21c4797ca4a6f4 +4890f79b287e8626cff3f7df4fc509cf 48920cbd3eb663853e1c0ed8877ab897 4893dfaa45c85290c8a288b59dd27496 48940b87056b8c5e4031920e7e131867 4894623ae7d51c01aac4288a1a43d894 4895a1304c02020f92eca77de8fffd75 +4895bdf0f3b48db972fb14607e45f002 4896b53834c3ef657d4fb2d0781f211e +48974e2e9224ec7339794fd2503d41c9 48975e07ad417010ff7eac269f010df7 48982e6d7b5b24a8bd5afe88889d6f96 4898d5a2cb226176c86bcde91928b489 @@ -16382,13 +18331,17 @@ 48a14f2b4eaca93355233c58a171651f 48a3306d96a427cc67a7951be7e962ee 48a49febec488f4cdea8fe850be7d4d7 +48a60e93192d8827b247fb6fe5c5d34a +48a6140bc946199504c0243ace6dc17a 48a6dc0f3be0b4cb35be424e282595c1 48a8360b64b5e0da263ddaf7262ef633 48a8dca670bf9ffda2dad7abd29ca201 48a985037b9870335d2e31d1b5649443 48a9d18c867b0875a2bd4127a36863ba 48aa4471c01eaca67c445f5147aa494d +48aa77f6f9812169e2ff85f382dd6e5c 48ab512d1210dd46ccc7a6a5c7736f70 +48ab5d05c6dd08672ec09ca1105873c1 48acf031af35453e291dd1cc7d47a279 48af88347c298fe912ceac5cefed6a6b 48affa43b9801983c105cff313d88120 @@ -16423,6 +18376,7 @@ 48c52446198e6b0f45ce9565b44ed8f6 48c56637cb20a182e5b44bc5ec796fdb 48c5ba7dcd419bbd383c8731bcada442 +48c92abb46418024d688b59bba3e06dc 48cb959595c08e7b6ccf0693c8f814c6 48cbf23f6fc4943a6b7c0879325a04a5 48cf0e2fe014059761e74e40f8656427 @@ -16440,11 +18394,13 @@ 48d7e1900d7d9117dec4b53d55d58522 48d861bcead0ead58c1d603a5ec3a2a3 48d8d71f972d2166724e3878f1aeeee5 +48d9619a38f62d07e00cdca59984e120 48da5ee56184d9ed227a895fb919fb2b 48da783967f18fcdd1abd09f4b158265 48df5a9d3a0ef55ea1d25708a3e49ba4 48e01ca6e4bb8bc6990b2f6760be16ec 48e0a23a0c744b40e81e696a9265f6d5 +48e2244ca693b1e3fcf742de4cfacafe 48e3c5b42315c6c319a16b1d59da4d7a 48e4c5e29af89e49360a814129fe6b52 48e5909d423170d23fe07cadffe69638 @@ -16457,8 +18413,10 @@ 48eb54aebe304885f83e69359100132c 48eba405c25d2aa244f3ec11da09674a 48ec5da2f6874ac307b9828bd2b5d250 +48ecc9db5416904a03400e7659003975 48eeabb293e05003343e907258a41f30 48f0940aae8673e60c1ddae856667a0a +48f332a67209d4b174507e93bd1c8f38 48f433d6b040c97a8f1d4c2ba4b00801 48f6751dcea2af771617c7345a54a224 48f79d20501ecf15d66f72eb19dd74c4 @@ -16471,10 +18429,12 @@ 48fcc2ddcc188a4c5916ab15115e35c9 48fdd78848122b4bdead6edf02e073b5 48fdfb7293a92d2a10f9ed8ed6fdddd0 +4902ec6f869d78f1a18af4bd7c23bc56 4902f48e7bc0f3b51ca1cdb2ab37e83c 490403f5ecb4dbe3d1eeeb0943e55386 490540cdb17bd218f1843041937c2f2f 4905ee878e5bbae74d889030b5d5f7f7 +4906b80104e7ebaa3453e69db4f49916 49099ac26c9d878472bcb57b4a60c4c2 490a7e0f82ecc5d02c19c7eb0b95131c 490d2c124629ba8a8362716b1764bb9d @@ -16494,6 +18454,7 @@ 4917c962ef029fc509b6e4bc8f1488cc 4918f29e88a79da173792415b2fe6eb5 49195a2247d3703506a3fb0ba2bd102c +491999982b5382e441958e8ec164c1d8 4919ae4e4bb7e8cb016df12f0fdfa962 491a6318047caf4f6a08fbc0af5fdf23 491a9065ed4d9fb611e74ebfa2807add @@ -16504,16 +18465,19 @@ 49209d486336f8410e8722033c311884 4921a80d49345693a42b3b1120739db6 4922da9e3aa779da68f9270028c8c0d7 +4924846df326aa46aff981f71a4b18ea 492545f991be1f828d490529ecb6ed29 4925ded6b9e79623b2bddfa46737b387 4927a8111fb6e56535bfdc6d185b6594 4927ad9190ee2e3b0975cb6f39a129aa 49291b3dcabfe241ce34a0a3138d1569 4929dfd0c9b060b9e658a858cf1ae65e +492c0713c50376ab462945c1e7361a9d 492d6dd43835913476d7089a8ab79bfe 492d8cbe1efe5527cace05417ab46ee5 492f0c7e79bc61457ee63a1c6fa5c978 492f242b32884b283aa7b3559582cf07 +492ff590e982c3ba0016013af2f94f7f 4935611f89a78fa232860f201217a819 4935f729b1b021fb168435b2a2278e8c 4935ffde15ae8bf94cf2598a8d2247da @@ -16531,10 +18495,12 @@ 4944c83a2339eba84332388beff1887d 4944d2cd597e6d62e460140cda6cd43e 4946a4f79b9e94e57536ca819538a9e2 +4947abf602e03cb7607b412b101af162 4948ce9b865ad5edc36f1ab76109a76a 494963e48f3697c7a424612144e28835 494b14c347d6734163e9eb294de3b8fc 494cee0a3a4bea4f3c157bcf8a3a89de +494ec9a08bc3c1afb9657bec9219678f 494fcfc4c06c80d8f066fd09eb6fe855 49505e7fce96815ab031494595af3afd 49512af0e5d50885426d3f42269d1d50 @@ -16549,18 +18515,23 @@ 495e5e822712a4c7461be7cfafa72409 495e5f78991216195a3f968e2f72c4f8 495e733742a32bb34a87972af139f4f6 +495e9e4a3ad3032976f04f66e427c802 495ed26870ecdfa96ead1aab0ffaeb7d 49604d62d0156bb291560423c540b8aa 49606a0fa48095bd5bcf0b5bf9f8c5df 496241816c686f1ba89992d76e4fc20c +4965229096a86802344dd2a0ca1907d9 4965a2feb86ffa7128d82aaf97646597 496abec28a8ba7567bb34134c231a798 496ac0566a66169c497833992e2246de 496bc6e829b97499ff1d8b565503d12e +496c18ef264fcc059a2c53d7df4f26ee +496cfdfa37031996f3fd11d36667be32 496d6c56a92f73eb51ecc8e611f183c9 496e917be417e941de6dfeab9ddf8ecf 497120926c63c98e1c6ed630c0fc30e9 4971a731bc62f0abc99526eef0243b6c +49721d6b39b67521d22852f58fe29dc8 4972e29196024a40b33c9eab1c27a9ac 4972f5ca1fb892fa146627b1d5241b40 4973a450cc3ea5941852efdf1b087b4a @@ -16582,8 +18553,10 @@ 49807bf3171156b971cc98aef60340f3 4980ada81a0cf0ec9e8f2dd1d28fa03e 498178e06d720459eb9019a310cce979 +4981adbabcc065e35e1d9b2c8c263dcf 49843aefad8415f1b3526ca34e0c3f35 498617ba82ba52c96076e6ef2fd8af23 +4988375975b9600d053db93853d3e79b 49886634c03b26635fae0aa4bb1e3cf4 498bdb63e91e12418ab9135f0ac62c55 498d363012544b9065486670301a0b00 @@ -16601,6 +18574,7 @@ 49988f8504e4aff006f9e5db079372fa 4998b7521e4482ec70aaf90baeb2eda2 49998853b733f6c8193751257b8fbecd +4999ee02fd1d14766788c2a6fdd33589 499b0047e243d902ddaea5c7b922b6d8 499c539731245c647d2373688413eb15 499c9e9cf215ae72f3c725b69d4a62c9 @@ -16616,6 +18590,7 @@ 49a4399c1dadf993d4dddc6139feeb78 49a541ac92cb5b462e5d4a9c89412908 49a637026843656325733746a05158c1 +49a6acd28fce402110f2346021f957d0 49a6e76fcc1518f293f0c5f4162ca3cf 49a98eab2b020eb2b046927bfa17d9f6 49aa593e02b5137d2819a3e48d4641f5 @@ -16626,6 +18601,7 @@ 49b1900dfb280ee61c655facb9fa6ade 49b4a5faa9c9bb7ce584e7dcd8ac7805 49b5174281523a58848927f72310f275 +49b707c373b9852221d397b0f8edff2d 49ba50d324201db70064dfd5137f31e0 49bba6c1fefcf4d4d8376499e6510671 49be705a2ba79d028f95646ce7ba59a6 @@ -16644,13 +18620,18 @@ 49cb308dc01680186cbe160b516334a2 49cb8b8ef4d221175382c83c291568dc 49cb9c0793c73a551725d3375c5f5f34 +49ccb1ab81a1afbd98046f7d5d739ee6 49cd71d611b4d53b58561763b37655d6 49ce9deac88ab51ec019a772a84a9a20 49cee72c6507c32d18854a70f6384199 49cf0fd7948c66790533ea96434b267c +49cfb320d809823093666c76e7fd8ebb +49d532c9abb57f78ec7af864ed60d908 49d54c4aa77372709b8b064b911417ac 49d61265b06cdf330c613d01f8c7ca42 49d65262d419b94760dde3acadce8dd4 +49d6be222bd68c1737d7ecb7fb7d2724 +49d6e260c98a666a8ee0edd91251e833 49d7bad00dffd42d1c58e9c2effe68d5 49d82296d0b4ace987ac1c3778ad40e1 49d85e3e4c53cdbd0205bc46cb672067 @@ -16659,16 +18640,21 @@ 49dc471e6aefadf2d9e5a634a5294baf 49dda9fef5fbd32ab890caafde2c65aa 49df72e16e261cefe68ba1727abfb4d9 +49e20ea9727297937902791337cd38b3 49e2ca09df167c5fc6052cb2baca7c33 49e30221cb9fc003ee7534ae58c952d1 +49e4a71cd16966a2652dd56ea21860b0 49e4d28371b377cf0d9a766b90e8ce56 49e5a26a35e6e95ea307837cdb437ae3 49e5d402e0d3fc2f9456bde636c8bd30 +49e67b7a2767c60946970bb6d7ab0c05 49e682c9735d307e9843bd0db7004ab6 49e7fd3e1380de337c368d1e7339db25 +49e87d653a2013863689958d193d4429 49e95400a040131d7c910f3a603dc2f4 49ea5fd7cb280756468e6b554c4bd322 49ea9d70d883d911e2b19fe1564a140c +49eaa4181b408f9c5c899ede7635fc7f 49eb0fd47a704c986110ccf87627b6cf 49eb85bcedd1c44b64b5ff6546b1b58e 49ec5fe921251b8efedf127c3b428c57 @@ -16679,6 +18665,7 @@ 49f432576ecc02420a0c5a16b2172ff2 49f4d1f76597be0850ae29e24f50386f 49f5b0e943b3f7265bcd320bf42fb084 +49f5d346844365e1b2b45e27698bf7ec 49f61a81e61ac77d88bb382551fa0b03 49f7bba3a740f4659487bd3c8c3c0432 49f87ddc55ca13e3c901fd9d7e06c2db @@ -16694,8 +18681,11 @@ 4a017223ebd66f64c732102ef8f684e9 4a01c4c3cdceb4cdc388e8a3aefd5010 4a02189403fcb696c201c44de147cbbf +4a02427f2e68d29ec369b3b45115818e 4a03eab51ccc53760bbfab0184c07817 4a03ec00900223af086991db4fc58be9 +4a04752276f383ebfba6fd3b3800a308 +4a07403180920dd1bac7d5e9b2747f7a 4a094a4902b2287876b37d9bd4201a65 4a09b406213a78bea0d12561365fea7f 4a0b5fac88b01934acbaa75a13ccaeeb @@ -16710,6 +18700,7 @@ 4a150c00cd574656b314911c4fdecac3 4a1695be67392f846af1661fcff9ba91 4a16b61f217c286163cbfe6ba38da9ad +4a16c1e34063d8a539a7692ffc5502a9 4a16e41edcc3f4389deaa0185564e9ae 4a17dbb556bf915f4ffa92e9b05ade8c 4a181493736e225921eb5ee488777ead @@ -16718,6 +18709,7 @@ 4a1c4707c011e0ceb61304bc28a97228 4a1c6e8c5715adf1f31ae1dc954c7f01 4a1e45e1d91fe32239c36a8592e37923 +4a1f3eec6152da5aeed36590cdfda865 4a23719ffceaa5b141613e13dd660482 4a23846f7e3550ec910df68fcd72dff3 4a2617787733220bef76ad1acbc5e549 @@ -16732,7 +18724,9 @@ 4a30269a0aee7d695a4eb7e505ef69cc 4a30b9cd042207ea8ce712eef99f797c 4a30c6779106fba8efdccb55e2faa881 +4a30da652a2df3c891f7c8532df972f4 4a316c771a25699dda373bedb91fc7de +4a325be4c66a8da4ce30c531b49c2152 4a329e29ed8dcfd1faccc6f14668570a 4a34fad21e8dc998a48025ee6c4ec3f3 4a35b4c71dba7173959bc30515c83124 @@ -16740,20 +18734,25 @@ 4a3785fb28585d41791f96f01b0d1351 4a387cc18d53950f83f482d3ac16f953 4a3885e6ea00cafed1db84e31e669e62 +4a389cba5f86077a73261ad37c2e4829 4a3914c7592e4f31bdb07cccce6b2b20 4a395a367cd706c50dbe0ce3dd3ea38b +4a39eb1484b30d4d0a5a6e43705041b8 4a3b10fbdba81691b2ba5c842d786371 4a3ca5418cc63c7c83e9d21f2eb47c96 4a3ce65f2a06704252693bdc63541dda 4a3d4ca936dbc0722a3cdbdf62f7b2f2 +4a3d65ed2674544692e443af9fe57477 4a3dcc41905338eade7d4f7f6c477053 4a3ef8674fbfa68563912c7602ab2051 4a3f66428e721cecda1a0107582bee8c 4a4278266f2edb50ea6f73f156be5098 4a42b3af7a7931e124e78f850d62d15a +4a42e6d081cee7129308809c24e9da91 4a436f8af658e0f9eb0f697dc168e088 4a44311e8ec399959e7f3d536dc4f6ed 4a44b69de263f6cb771220d6d083c38b +4a4519a3c0297e928e7d9b4e72cf78e9 4a45f49e6be4fd25f656cbd9d47fbd91 4a469ab6a722c77ed0b84c7d3076e63e 4a484cbdbf7517d5e8f2020afb87d8ea @@ -16761,15 +18760,18 @@ 4a49957f628f6fcdf8eb9968272b2469 4a4a1e52e1207d86d7c08e993ab19c7c 4a4ad7e1b4b7c10bc73f94a3cd55f16c +4a4b125a35b8ece1af047bcd66229412 4a4c816de4ea040afb389108dc122e72 4a4e894d08ff8a90488a5aa5d87cf5da 4a4ea2ce0a1b7a0fe3b46645acf70c4b +4a4fa88a6f7335efb493184e70539fcf 4a5033966446bbb981f371305fffa0bd 4a521fe0b85a1a83d27cedb89319b48e 4a52f385b3bf5fdf356ee0b873f4a010 4a53af939e0c5a4aa6e9c6721fccd12c 4a53bbdcdbb7a5b26ba0f7d101ca2ffb 4a53c8db9a53e289c538308f346ee5db +4a55c93d44945d1b10bc25db95f708d4 4a563ca215c3cb47170067c594cab78f 4a56a4827af70a04a20b44aa39694413 4a570d605911763d4dce7adc33363136 @@ -16798,7 +18800,9 @@ 4a7650b634908b499cef3ab34cfce316 4a778cddbee345883b9084e395e1631c 4a77fd6ab4ca1eb73fc65dd58cc74a6a +4a78f10bc7f373ab83579e787b679eda 4a7ab28e345e93e0b8bf1b82117fdc5e +4a7bbe177db4bd3ea2e5c745c26c71af 4a7ddc0df49dc5642ba86ca3d981223e 4a7e2c4a6cc7ff687a5baae0c08af60a 4a7f0132e479da06fafb4fbb6e85dd83 @@ -16809,6 +18813,7 @@ 4a85b834208ecbd7fc4b12b33e9263cb 4a863e490097f31aae317bf47c945051 4a8655ffe6abe0f5455d0d9af5b1aed2 +4a878fdb727559285b324ae55082f1ab 4a87a5d4fa37d0ae86bb05bc38e50494 4a87b4e2611ea920beba801850b01436 4a894d1bbe76e8f37223923497c1894b @@ -16829,16 +18834,22 @@ 4a9d77f1c1227b7d231dd2cf3819ad38 4a9ebaf200dd40a563b81309304e989f 4a9efc34faf0a4119567c218b64feb76 +4aa169aab96778ab2061d4f2b8f04395 4aa25e517e6089ad16d71ad92397e7f3 4aa77e06ead85c821e645c3ef427e669 4aa807d19b7f27808133882214e60f1b +4aa8fc8e85d7c3a4a1a27793a9c14542 4aa93690bdf1525f97a676f4fe437d85 4aa97158cfb78fc2284af165183f5419 4aaa7a7fd41929e7fb391cb407074af8 4aab9d644c70ac371bcb0fb7dd6628c8 +4aaef19eab7f817ed98e78599125c53d 4ab029c9f83553544261ecd5bfe3b4aa 4ab1da3922a29ad692eb9e86692af67e 4ab1e88412202da1a83dae7ceadedc5f +4ab1e9746704caea18b6b798b2c00d35 +4ab318de00fa7111e4d86da843397594 +4ab405a566a16216f16f8ef9fde1eaab 4ab6096364a52de007483a0c5419e8db 4ab6bd88cac6c605a7bda7707f91f595 4ab749a3e5a009517827d43a00b79a31 @@ -16881,6 +18892,7 @@ 4ad3fac2e04814eef5bb1087c9e28bc3 4ad42091fe7848d141aa01a9657395bd 4ad569920ce0a04dd1a75f46f9c20787 +4ad7b4a7888ff1886f510865fadcbdcb 4ad8f41c8001987de29e6c1deff123d0 4ada6bdd950bf63b4c95603dd795b1a4 4adb9bd1e56b21c5d7d4e54f41de1cac @@ -16893,6 +18905,7 @@ 4ae1087d6e5b6561a03e563003de250e 4ae41175fd78d6bdd82ad36411f30e0b 4ae4281e4f443e0851c17ffd0142f50c +4ae5df83172b927929147cb6607a5a4f 4ae8c513f9e1c8a090416bc864693c11 4ae9770fe0a7d6ddce188cc11fd99b79 4ae9941421bff3d502410455005956fa @@ -16923,11 +18936,14 @@ 4b02ff02759124f6f7af8747ea810a79 4b037f4feff133b24390879a48d46274 4b05cb3ba70a649dcdbdff1cf8ffec6e +4b05db7eb72a396a87c9d3cd2e619cdb 4b0667268e517bd47ca7a8f68f835838 4b06c55baf94fa2b175b9d21ab609277 4b07a7ed8488ea57442c5c576bae99e6 4b07f29525c6e97159736888a0321426 +4b08f32bfc85ec76524a0f5af6fba282 4b09b1fd22a2c8a9237836b9b53dc080 +4b09e1f5c617c65412ce764535cd93cd 4b0b0b399d4a26077d93dd7af46c8fd2 4b0c6e56b3f64b3fa44c491dc2eb67e8 4b0ccc004be9a9c0f16fac0db6c48406 @@ -16967,7 +18983,9 @@ 4b2ea7278a986e51f9709946c9e4982c 4b2f009751f738f17a94669e64c8763b 4b2f6768236d5ef33d380f1fed3004d0 +4b2fd9563a9f044ca41599e3d80bc846 4b3071dd07b8cb88487ad6cfe9ea74c3 +4b308fa005b53058c6bff5a03b77afa4 4b30b9c3326a6521055a8eb1681dcba0 4b32d939a682e33b857773c6d06b98b2 4b32ef66e53c1759fdc4413b1754bb2d @@ -16983,6 +19001,7 @@ 4b415abedc9e9ea7a97e1654aabd25eb 4b439b44f125f156ed123e4e816f5dfd 4b43e15fa04034188bcd27dbc04f82fd +4b45792c9a81b8b45291870687d796fb 4b45c49222b9d9cf0b8055258ed8e442 4b46c6023bf4d9f6df879844ddcaef2f 4b477041609029f77e1013c08984432c @@ -17000,8 +19019,10 @@ 4b57d58f4618fd67c885c808fe4441b8 4b581a0d05465ce655e7de1bda1bed61 4b583ed5efeb2515bcd76fa30c397ab4 +4b5aff18fa2790e8165d9732e84b66ff 4b5def8969caf78c1ea3a44e67883ff1 4b5f587b70b43c7ba20f9ee8bb3e22a5 +4b5faef9ab16de2e263ad6a5f57b00aa 4b60b78739755e2c7549e40c83bcb08d 4b60c8fe20acfdade88f2e5d3e83fb22 4b6308da6a018411a718449b1d87ad5c @@ -17011,6 +19032,7 @@ 4b65ed2a6ac486ea20902c4763bd581b 4b6704cd4dba911e446e07238595af9a 4b675472788a9dfd3540a2c6b75cc386 +4b68157b1bf667fe63b20e8f2d521356 4b6834127e697bbc920a6e11a01790f0 4b6868a9c7e4a66510bfb99956043eda 4b6953fb0c78f696131e16573e296ef7 @@ -17046,6 +19068,7 @@ 4b844ad06e61b6fb016f4bcbc9a2db6c 4b85a38eb1c0436761de5003f4f6e60c 4b85b91e3e0b5097e67284daf56bcac6 +4b85f5b17300b1b677b18c56d832d7c6 4b899f03cb6aea227cb4198286735e76 4b8adf6da6698b152c63c94a9e6fafc9 4b8b288e1829f5f9bc00001b9a3ce6d3 @@ -17059,11 +19082,13 @@ 4b9206e6bb64450550e9bcd0722f6d5c 4b936bd831c2deb2e9444dab3df0f97b 4b937f045e9c84fa281bae9f38abde36 +4b93f91030e5dc39646b855d9a45db7d 4b9597ad00ddf18259ba2596e2a98908 4b97a10cef4d91180fa0f719e27a60d5 4b9960c2cef32970a82ccfbf345e3296 4b9a9e404c896826777d59ef72244404 4b9ab60a4eef280a9d751eedea253e87 +4b9beeb703f85140d773c94eb98be22a 4b9df12157560e4748f8d80f2b736594 4b9fd29d05bea58ab7a696b2b5f6ea73 4ba636e2178a20aadd9e878977b8d4dc @@ -17073,6 +19098,7 @@ 4baae66b5ca488eed09420f8bd16d820 4bab2a946281a0eac7021ef341dd2e39 4bac298fe6a094809d860921a2dcfd9d +4bac838097d1340d799c5e732debf237 4bad638c6498bc534e682f4e8cd79cb9 4bae8b4f634bdf83ad0373d5076644d0 4bafa23c4bcd67b5d8800c6453e48d56 @@ -17085,6 +19111,7 @@ 4bb75929240efd78929d142687039ef8 4bb86787404ed8432d1f6e3545ded1f8 4bbc0435b08fa25f3a9bd9d48c0a1aea +4bbc520ebc5dd909e619c1e4332f693f 4bbca93bb599736db927857563060621 4bbccc181acad93662a498e822525e2d 4bbcf1a510ac3b79daadf1c9b37d212a @@ -17110,6 +19137,7 @@ 4bd1f9effb6d0d067df8962ac3be109e 4bd4036f9ffbbcd81a27fed7ad8c6052 4bd48eaa3c32621af8109f29fe3a5e21 +4bd58eb2769eb6e08be224f4c14d568f 4bd61e78d2753d6441f22eafafd5e86e 4bd6fa8269867e3545a28a8ffb4e3579 4bdb1c841ff8630b3ffeda18667fd2e4 @@ -17141,6 +19169,7 @@ 4bf5cbd8cc399b6a878583e2250ce696 4bf5f6387e2cc978aee95d0dd73b690e 4bf6d6978f5b8a48c855ede3760f0913 +4bf6e65d9b9dcbcd50758218132cc8a6 4bf6ed35f1c9eed17ac52335c825f96a 4bf8fa28e7af0ccb594832fc66b87d69 4bf9a434076aae0e5f13546d48ff4ee2 @@ -17163,6 +19192,7 @@ 4c05aaa1baea329015bd7ab44fb781c0 4c05c2ed401c585928aa3bc342d0dcbe 4c0886e7691557b9795bd3ebc3a9f3ef +4c099f23f8ea10973909ddc33d01568a 4c0aba3796608091d5e9a003b943ec47 4c0abdd061d888edfe82d1cc6054843b 4c0b8987c42a870b93fbc1b41925e3e7 @@ -17170,13 +19200,16 @@ 4c0f4953406764981bb7d24091da6bad 4c0ff1b0977b124d02ccdfc6c6cb77f3 4c106a4e2ed6d37112fea67f44d158ca +4c123ebedfbddfcc5c86ad0d74684003 4c12d625964c7b8f707a975af0a8dd03 +4c13d7bc897fd86d117e9e925698fe4a 4c13f35d3fea3388fb730a9f2590cc55 4c1524bc9279717a67d14df9c693ad22 4c152710132d7fcb202f6781c6a4659e 4c16659c69b7ce2485664687bdd5d9b4 4c18087648f3d0c8966d0574ad5d155b 4c1a9efdb63ed59cf91f40218ca36f58 +4c1c65dfba8c159f401a8459dee8ac58 4c1dab7af174435a61cef88ed8c498a6 4c1dbacf9d008751047f5069099f7cf4 4c1df0a74859e57a9192cf17e40aaa29 @@ -17197,6 +19230,7 @@ 4c2b43c9ac0c25ddf900d34385cc6a45 4c2ecaa7f0034d3674b3d07053456fb0 4c2f35079d720e6375f5fd6e011079fe +4c32195b78e066dd573c95aaf9055da8 4c33580de84274c7dc882e4594339f7f 4c343e5992889c2ea0421b122a5b7079 4c343f4c5310814940828ddc13bf02a8 @@ -17204,6 +19238,7 @@ 4c388ac109b990cb9f0699fc2241e5da 4c39a86f9b85b23eb25cd5fe91b3152f 4c3d1d88650ec09a770d98f91d1315ab +4c404cdd9a434a5016e60029efa560b6 4c4064f0aca1e7b8ac720b428108cf5b 4c410632c7e920e5e6ad44cce47d9417 4c410f5228a63b6f5fde7244815a186d @@ -17211,6 +19246,7 @@ 4c432e6d7fa7dfc0554f4a6883a0b09c 4c437bbbe7f8149a86f849764387ede0 4c43d926fe29dfa2190b92b48b8978d0 +4c447b222abc33737352fd678314a795 4c44d8580a59820320a2067ba95aef70 4c479a7baca6ffae819e5ca3e61d5bd9 4c479af73f5da3c92cdfbba0155720b1 @@ -17241,6 +19277,7 @@ 4c645aa88b4c77fd78a05688cf6c06e4 4c669cdea35028744118d2d2b1d64a4c 4c66a8b7c32cbe94ca42e399fb3a5d91 +4c66f7d94b88e2ec0192809405f07639 4c671c616e156001bc0c9b29c181b2ac 4c67af1b58f4c246c8f89a892b25ded1 4c6d28a2ff5e474e78e309ac5c852051 @@ -17251,10 +19288,12 @@ 4c7574bd6149ae5df29f15c3403ce2ad 4c7624709bb2ee45ea657939300bbd81 4c7a2b44fe7e0243afe7ad20a2375520 +4c7a618df260c9fb0f6d6ac6f720bef2 4c7b2775c0fef5b6922cd0fcd43bd18d 4c7bbb7f984e0f91b9778bdc388b7fcd 4c7d63833799fe6df5e7883fa2e1362c 4c7e3dd11be5c87f4440ad13869def81 +4c7ea2ca51ed44f3d687a203f87e5c5c 4c7f4b4674fb274112b0a963f7307510 4c8135464d01944af371ff4694223367 4c83a0cd4792ed935f101bb607516fa1 @@ -17274,6 +19313,7 @@ 4c94f30ec4fbef1d723d2801ba3ecce4 4c95521415a300fd2cb76d4f1551291a 4c959036bc4456da89df49ff0663ff63 +4c9671ae26797ce65c9a6ef9fd82ff2e 4c96aa70a6f20a69ca6a2af3b2595c4f 4c9774498589382cc9bc06f603cf2642 4c9901b51dae158e4f3a511cd97328c4 @@ -17285,7 +19325,10 @@ 4ca1829e3657cc47cc3181bb797b63cb 4ca2c61eb985ea43a8ef09030d576a5f 4ca45989d601c1c59852b2fb6d574e75 +4ca45a060e1c48e87e63b0362709ef9b +4ca4ef55e16f34ee0a6c814aedea0f12 4ca69e5fba473251bdc1a5ac8c18a145 +4ca7f9f5ff726bbc968db8c8c43a2117 4ca939eb5e01f3495c1270599eaeb991 4ca9e891f5a89903d0d51d45e265fb74 4ca9f931f7e5ee1d9d860dca73ad2da5 @@ -17295,6 +19338,7 @@ 4cac765feeab6f7a1cd0196fe4959d6c 4cadb0cffe22a7d95bc62d3031c1b129 4caec14b42ecca832c720d86bdc2e2ff +4cafba908eded5e73a9811ffd1cdcff5 4cb08d8cd64db51beee58b0b13ff8c7e 4cb132e1da16a09e1e472428a68da277 4cb14e5311f0dc436dc5e82c31d8685f @@ -17302,6 +19346,7 @@ 4cb36445d0f5a1012e4d4fbc2a1be2ea 4cb45378d42ff86e4b948f2c6c4f05a3 4cb55ff2a5eafb0c4d18c04cd4ecbdbe +4cb7ad92ae4a073749bd2f3e8f76fe17 4cb84ff6e627cc660af81c8df97f4667 4cb9b767bf5891b291df15f4e37d0b7d 4cbdf7062183a256db043d516bee56ac @@ -17318,9 +19363,11 @@ 4cc89aed52470dd581d0254a97ff8c0d 4cc9323a149b02a969a413a79d19ea0a 4cc9c253a70e1be116ce3efe53d975c8 +4ccb10a841822eda5141e286335092cb 4ccbdac14a03280a40e2922696388398 4ccbf03484d0efa952c9fecfaf93919e 4cccd4ce9d45b4d99042a7a7edb6a625 +4cccde8e729c7fed882bd4efd7873cd2 4cccf81a6f36e88efea1a5e4c3af13a4 4ccd64ec88004d2b371f09635ea6ffdb 4cd27da951191fa120c6dd4aa75c8bd0 @@ -17332,22 +19379,27 @@ 4cd8f39721feb50e1273e073144e4915 4cdadfda86e975c7aae03efbad6e408a 4cdb02466f86b57e88ab3d05702a9611 +4cdb6d2af510e068afb8d7978090eca7 4cdbee7783747e0cb1911fd769210d68 4cdccb3da2bcb774c889cdcf503b5f56 4cdd82fa4883d5c564eb3f035ec24a16 4cdd8525644ee4d7275dc19c3456f886 +4cde011ea55e66af1108fa1228a76271 4cde9a150cb17c5658ad8d4f26a17765 4cdf51e4e711681dad9927d424c50fa6 4ce0491f7cb8efdbd5408b726a4c1991 4ce04ea860942900936d01b74b528381 4ce0f915f67dfa44cb14fadf037cab16 +4ce112d8886c77dca1cc9fb7960cef1f 4ce4c00c01ceb27c2becf27f1f2ec350 4ce5f1879b071eb43da5394e70820d0e 4ce5f56783a1cc09d5a851558ff392fa +4ce640ac1cc66b43ad502b0767d3c03a 4ce7d5a0e7337e8bfb9da1f2c62cedab 4ce884b03cddd72a98eb6704ae7c798b 4ce95075727479c8b1793dea7039696c 4ceb0fbf94c6dc4058eeff3bbe2267f6 +4cec1e508db19bb302fff9603ef03fb1 4cee7646750a3a3ea6bac4dc009410d9 4cee770b0ca3eb320581f60b2dc1205b 4cef8acc2caed7ff944a4f99a414f630 @@ -17364,12 +19416,14 @@ 4cf9fbfef72c2c5cb0695ca6d72ed40d 4cfa2653851e1de1c31c5c62c478fef7 4cfa4d023575d40222e12bbaf3abc112 +4cfa9417f69ad9962ffb9b5c187cc466 4cfb9d510352e653924f2b4a7c4f3a8a 4d004a543f2f38a022ef70b45b417955 4d007566f9502810b4778fcd805905ca 4d0152f85746953ff3e6a97bba75e281 4d036a0446a0186b6c422d981026709e 4d039973fa2b94b30fe519e41a184de9 +4d0481694541ecea3169b5b1b4f71f9d 4d04f81e7ccfdf33adf0cdbd91ecba2c 4d06a7c9e617cc392966b48f91700d83 4d083e21c88b45e3415e7126115d9f6c @@ -17398,6 +19452,7 @@ 4d21d28e09dcb04a0e7e8d2543530f2a 4d2461371b3c0d20e9d403e29d93301d 4d2526c50dfcb2b473cbca8e951d5f09 +4d282bc16e6f5feb85e723f3d2783e40 4d297c6124a9d7635766c1153c3d1e65 4d29bf077250e94019e58f8ab584fd55 4d2ac36fd2b497fdda0913937e09ce30 @@ -17418,9 +19473,11 @@ 4d33654d8030a6a78a1c803e653c4041 4d37c0e6fbbb0d5b5acc1d8c5fae8341 4d3845b3f9afd9a8dd93cb776fedeb32 +4d38ae969bba607d309db11e43c0c85c 4d3b7b9ca8876fb19f392ce99f79c8a9 4d3cdbcc57698524bd2fbc945b41d6f2 4d3d1bad01bf9e438828b7e4c22a1bd7 +4d3d456c377b3ffc016546bf1139349e 4d3ead26c008263d640c1e811f8c678a 4d400997728d4ce237247560088ffbcc 4d400a1480a62fbde8fec434bf4dd8e8 @@ -17438,6 +19495,7 @@ 4d4677a366462a9ec7caaee594474942 4d46b946c68d2df1e23ade7f6a4cfeab 4d46c5c1e59ed442af7903c77d095683 +4d4947bd4ca0d2ebbf5f47e5cd94fe40 4d4a17b8824e2790ce08b1fc3650eb3e 4d4a46b2d1b7805840e49a4ed7b4f795 4d4bfef3f4e4415bc0ec8024223b7582 @@ -17455,6 +19513,7 @@ 4d577e6f90cdff2a150ac137d7c17d26 4d57a990e1dd6114e51d2f6aaf1d6cac 4d5875d87574be8d3f1993115bf3c373 +4d5b1b54a5444505501728c9a50167cf 4d5d653d8824a9865bd8e59dc076e2c9 4d5d9ca8a103642efba3883b9e96627f 4d5db31d23e57afd89ea52ff773e4d16 @@ -17497,6 +19556,8 @@ 4d85d451d8560b2df535b7371aa1d4a9 4d88b781c640ed21d693895a4a8305f8 4d89da8611064e4b8f120ee51a03ec39 +4d8a9700862e64b44e27b31607be9928 +4d8ac728de9c895bb6c43c4aeb5af6b8 4d8d8b8a6413f78bfaf740524e31e95e 4d8e13c4edaced86ad508787254f4ec0 4d8e8c5d8b0dc5c64af4a008430e11e4 @@ -17515,10 +19576,12 @@ 4d98b065f0bfb5159f8a10049f03974f 4d9a925e1a8626ff3021d2df5b6638e9 4d9ad559deb8d6081d39b005c78514db +4d9d78f99bd55f84022e75cbae15a702 4d9ee1e9dddb66c61a24549f1f032c80 4da00850807d54ef79b9bb28e2f9505c 4da03ec8d5c2d9b31768e05204d9a8df 4da04f90ec4f75bf93ee42c9b8f22a17 +4da0b19dd519bbdb4ec6e611253b9c98 4da2a631e39de36509465509c16f98a3 4da4f416ba59bb4550fcfb5d18cb72a8 4da74b8a6bbe37583db7dd40b38a5e3c @@ -17528,6 +19591,7 @@ 4da979a18d8076a223afb020855946b8 4da9ef00bd691d80b6e367b0f34a6778 4daad7e0904f6e4512e05896e1cd4a72 +4dab47e7dc0bc018bd0da7782b5c656b 4dacaddedf6449aef26f4113361a83ac 4dad054b8e6b68dcb1bc0e207d67f271 4dadc169a307baf0b06dba86bd1f4a23 @@ -17558,6 +19622,7 @@ 4dc893e3cf9d5aa4aae21062dbe882c1 4dc91b6242d24ef3c255e66a162f0ebc 4dcbc6cf3b452f5d3762728d0bd0cc0a +4dcdd3b3c4b369856ec5863806cab8c4 4dd002f042b1652e1e27d50d60def223 4dd023c313784e4e66454390f97cbb68 4dd0f5ae02e94be8e54f4489c58f8732 @@ -17565,6 +19630,7 @@ 4dd23c4ef0a0e6108d9fee3bad995f13 4dd23e0c16e46a71d004f5e82c4d54c4 4dd34f5e41e99bbde744693f87c731f8 +4dd3676c439c2999baef2aecc541a8fb 4dd379e7b6e1fdc2475c7085fe9d36cc 4dd54b00d1bdd1db7d59748806e32992 4dd5b9eabac961a5ef057a8d1fa53ef0 @@ -17572,10 +19638,12 @@ 4dd69aba418a300f5df944c4a133f4c6 4dd6a220ade0bc8f84f1b85addc6d4cb 4dda279b3fc37feab4ff3b4dbad6b7d3 +4ddad83272d948c34f169441d3690639 4ddc11b36d972b85bf567ee71f46e062 4dde35dfc1873e7de15abe105ef87b27 4ddf3f3402baad0d5f7b2e18f93b50c0 4ddfebe32dbc4aaa8b700b3e32b8b199 +4de20ed2e12515ce748c90af65baaf34 4de376a3e134c4f5f9892f249483f3a6 4de4047c552c3b7f0b6fa9a3c15541bc 4de55c237965af4912473c090c307004 @@ -17591,9 +19659,13 @@ 4ded27870ed39c0c414d5b10b08a6253 4ded28ee973157cbc5bc309815bc6c84 4deebba43a9f96d5cb368f3399049e8e +4df120b4656c13f14775534b0efb5743 +4df23da8f10d5c840b7825ea8db2ce1c +4df343db81a84c4f55193897805b31b2 4df5172bb15fee78948a178904ba0a8a 4df57b59f733b407e88c97250b488f6f 4df5c15adba7f1854ae00a9dce4b21cc +4df5e3bfac4e223048638fc92120084d 4df65984a034883dd1259f8a1cfe2131 4df6d53280dd229febad2ebad2548e82 4df6f9d653efdc105756a1c11caed458 @@ -17614,6 +19686,7 @@ 4e11a6c771566e19fa47dae3bb5503c2 4e11df37f3ab6003fdee530b0fcd3d47 4e14c0c9149893dcdf35c84f62337e4c +4e14f8d498e6637faf99eabadf5dd6d8 4e1533e6fc7c090f0934f0df2ee3e4ae 4e156ccbbb87d1b3f06eb7cd1007b723 4e15fed9fe096323f21347c76a86253d @@ -17624,6 +19697,7 @@ 4e1e349b844b7c26182a90f5be97ca78 4e1fe7c0e5bc563a466f1889be750a71 4e218cfa800501bc9f08d9b91bbac990 +4e226b115cc30be3afbd87c6f85359df 4e2505d288cfe63060c532251f365e93 4e25127e33820bc620354eddacb23a6f 4e252431d2580af8c9fa544a8dbd62d1 @@ -17664,6 +19738,7 @@ 4e4991bb09c2f268b08efc328a643b36 4e49bf5b798c78f3924e79cf86db4c4e 4e4bd8fa220b49ffdf828c17d5fe4911 +4e4cd86ccf0f8294b8db4e18dec543a0 4e4de82b1e3494a9de7d8a169646175a 4e511d2d749793ef16fba71297151497 4e51480f32ed9bcb2ef759850169838f @@ -17692,13 +19767,17 @@ 4e691082ccb87596eef14cb9412258cd 4e694cb858a9f6c1103f3a75c540b62e 4e69d09d99f928779567ea9d72522223 +4e6a6aa3db30cb9dd8d561b2d7898d31 4e6dcb0e1c7ef475dc0fe392992ff5d6 +4e6e7eec273f7f1fcd09c02e9fae17b5 +4e6eac26a4c512ba92d29e0f8b6a9694 4e6fa82f3ad6be8fa15dafa2888af819 4e6fcae82fcb7a09ab29e88c691923d7 4e71120b241aa9281ef0043850768505 4e716784684d95017a8e08af29be1eeb 4e71b7ce38325275fec06b095f92d28a 4e7396dbfdd3da30ec057ed08a1759b2 +4e74b30dd680d867a84414fbba6cc7b4 4e75667e5160ffb53b8053020fdab865 4e770bdf47ecfbad742b418ef2ddfb36 4e77f40a227b24fdce8841a0338ea1f5 @@ -17734,12 +19813,16 @@ 4e9237cdb16772dd0ce058cede63b314 4e92b5d85215c6872288d1673861fc39 4e92e948e924e294389d3243caca3a5b +4e93d1229de256e98aca084988509c45 +4e941a65a223fadd1b4ac6f43fd63981 4e943b5e9ec3eafba97659d5a6557ebc 4e946d48a3fe46aff20d3659f8e717c3 +4e963337e8eb71b845849884a7b35b6d 4e96b2461db4ef0409c9d6ba56d7954e 4e97015138c25d10a895b6fcd1a66706 4e980edd76bc258df020dc000273ba56 4e989816aee4c90b559a65b783562253 +4e9910a91ad78eb6a1b6ba3c8d0f1230 4e999b07ed34eb57fd7c83f675fb789f 4e9a39259c0dba65b9a1de944a846f91 4e9a86f562c9c6299cd2e6ecb6975b1e @@ -17753,6 +19836,7 @@ 4e9f2f50ad2f447a0bcb04305805334a 4ea0134ad97a19bcccabe542eda1bb4c 4ea0e23b32be671b6f2cd66ca2dbbb9f +4ea224217209851b1c71c069d863f7a2 4ea263c257e700be14083d9d64f4946b 4ea33f2fa3d496e1cafb93cd02e60ad4 4ea4656c51a980a7965b78235e93101e @@ -17781,12 +19865,15 @@ 4eb4cbd425bf334f3fff86ea7b2ec94e 4eb5b2fedefcdf1d4cc7839e9986f1d1 4eb80c5dd9f495ff14ceaafe7261a288 +4eb84cb547b738143593ee80b56a79b5 4ebc4a5bc3046744b142eac03640f9f7 4ebedef7e5f9a907b50052b1e5a2f30a 4ebf4e7f6784762d877d0df9c728c0b4 +4ec0454a56ea978c1125d8704732dcd5 4ec2f7bd978b83aa238f0a20fd426fc9 4ec3e004a262f885b7ec55f2bb0b44b2 4ec4140fed778f329f7e2be95b5ebcdb +4ec6f817cccd727bc48cfe902abf77f1 4ec7c5f865f5c6b7a9faf9ad7f7a4660 4ec8cb25d1cd8e85dff742fa84a99cbb 4ec9bf53452d57520f4a85ef03e30412 @@ -17799,12 +19886,15 @@ 4ed261c8e056a3eeb289f2848f2ed86e 4ed2dcf300b836e850aeec9684160a89 4ed3021a2526445fa90a1b33f2bd9fc8 +4ed311c45d330b66fb7e46acaca68f8a 4ed33351c67123751f3a3f0b5a6b45be +4ed3b85fe7da1b29909778b08363fb53 4ed3f0bffc710b850cfc3a1715725aa9 4ed7760b17f6c3cd0fbdc59ebd91a0b4 4ed853faceaf9d4cd7b19656d40d5862 4ed866f55b071b51d3be537320ea643d 4ed8b6513d4563e5d7e652a813bea5b0 +4edab5314a5178a4163785b03f26a5fc 4edb5e11e2e3d75b631e902799fdd85c 4edbcfa6d6d123f9627f01b2c3670b71 4edccd105914873d36705b242a553e5c @@ -17817,6 +19907,7 @@ 4ee2736f74e9dbf1f432bcc4ce6c6e77 4ee2a85054829b56e965c1659d2cf998 4ee32b708e8218bc9cfdc347c8a27551 +4ee3629f9ffb968cd315117c41d4829d 4ee382ceba1f0aba0758be8199c8e48e 4ee4342b80e715598c8c153f83561a86 4ee487a19482d3125c49276f81631582 @@ -17828,17 +19919,22 @@ 4eec0f0380c1036d194059038ae1689a 4eec341dd60328d27fca83e063a5ffaf 4eed3017c1702fc56c39f573f34faa82 +4eeebee11ceb7e8193ce10401c37e505 +4eeefb1e3443e4430057b1c63e665774 4eef43301068770c8e0834fd4f34bd35 4ef0098609c04148923c092a9a21a9f9 4ef017673188762b80196535024d711a 4ef0361ff7201f78ef77b549f64763d9 4ef2cd196d27fb66dc0339c2e3c3d378 4ef3250947360cb44a7f6ef4450d674b +4ef32cb409bf4f4329f3a6b50184679e 4ef3a11f4a2e992b3953423455174e18 4ef3f5d9ec5a6b7df3c21b76cb0eb77d 4ef4dcb0ddb2931fb5b8b1b340d94f1e 4ef7de1ff547d93d1ca381f2b8523220 +4ef83d79cf7527e9a510468437cbc064 4ef96d1ec58464b6266a697112cb33ea +4efa99ac8340704ad99496b7fe8384d8 4efc3e7f25b64eafe8668127c72dc7aa 4efcc43ed89043fdcd599fd75a40c308 4efcfbc5416a38ff1343ea9ba2ffc2b4 @@ -17847,6 +19943,7 @@ 4f01779cd64dfd1d2e2dbaee14ff05db 4f0183f39eded12bc70a190feb2361b3 4f01c63f9c70d6f54791d7b3573cccd6 +4f038f19c7618d0e5babd1e943fc85e4 4f0511e013e9bfe4a587969f41ff97af 4f055409828fcffa8ac15af8f8c875ef 4f05e12c2617383e78ba67e63d5cc41d @@ -17854,13 +19951,19 @@ 4f0b5876be6e5fe5823022aa4e55a0ed 4f0bc15467ee9517b7274398459c1d45 4f0fade7fc80fa561b41d4f867fde452 +4f10c48cf25d5761644bd2636997eea5 +4f116020c2d54b4df85cd56a7fbccbe7 4f11b95b26fdb3c9e6289267767e4ce6 +4f11e0895d056d502f2c629df64c6e83 +4f134175d5d8c12cfc0595a325ea8913 4f13ba4cd6f4b9db462ba88ab943e9c8 4f146dad770585a75a97f899df835b91 +4f1475494e642a9028f87ae0aa590716 4f14a71b2c00beedc763404b65885d93 4f14b9de37d95cbba67e05d2f1772b8c 4f1583303461d9c64218e6b6c46e0eca 4f16e1a12ce201eb4ce085c7fff3ddbf +4f16eaa418efd4f94baea71daee5d267 4f18365fcf83457a47a40d91c4256422 4f183d85494388583b174c4b54f1c79c 4f188c8e16ca69bfba3540d45649d7f6 @@ -17873,12 +19976,15 @@ 4f1e0224fc38d2e24b9162cfc07986d2 4f1e8f5885a0655a9585468465e3f523 4f1eb5d9362a16992e151e5e4b927846 +4f1f1413352b152265d75d086d41ea4e 4f207ef15661aae3f963009b76a17f17 4f210225a01d1272e5818c88c4af1ba0 +4f2233851493470f809520af1f61bee8 4f22a90387f690b20a18d2f7c08d2358 4f22ed862e51389b7918da45e843b27c 4f248daef86725d420e754ff8f89f362 4f24a9f03cd77e6b1e971140da7f8935 +4f25013e811ea636ee73039c69e9efcf 4f25b1b45b275ef55b724fe02424cc76 4f27445536fedc698bb831ba9be40adc 4f27dc5b3b035696411bbd647cee3316 @@ -17886,6 +19992,8 @@ 4f29313ad46c093707d356cb3f29d277 4f2988d667e946c5addfd09b10f19c56 4f29aa56383c8c27cd739b95f1f1faef +4f29db079565b20e7a9bcbf104f25b6e +4f29f8d295c9f8338e5ef002bcde2bb8 4f2a522ae224d5f051d4201559dbbd11 4f2ae6ccb6da040f5609b36dbe505cec 4f2be320180fc16dce9c683912c93f4b @@ -17900,11 +20008,14 @@ 4f33eb53fcf744def1e38612a7f56927 4f344e3e23a272dadc1d0122c4648f52 4f36914483f8c621989e9a6a47b93cf5 +4f378afe4d64e3d394ff0c76f245e82f 4f38f7016487e20d187347bc86c9c4f5 +4f3a75ba272ff83d55e99cf7d95922b8 4f3aaf0562fcc24063e0d5396892d7e7 4f3e64637f0fe5f99bb85fceb17ecb35 4f3edb86c8542999a695415371904561 4f3ee6386e8b717ea3ddf9a673ea983e +4f47753de1accd2d93e321192eaece44 4f47bfc48cd69b10c0b995dfe625eaad 4f48dee1786480e1057de71647dbbde6 4f48e60858dc789551af56083b5839e3 @@ -17916,6 +20027,7 @@ 4f50b4a94147a5034f019040becce384 4f52b3d9766df2d01d3607be197722fb 4f52f3fdd7b1d0ebf8938517ff1adadb +4f549f43ba3b4e1576929b16f7298b3c 4f55a6a69f4fa2f58de643977e532e87 4f56f5886155b2c3df324168c5417654 4f5788a73760a3017b5afc1b4baaf5a4 @@ -17935,14 +20047,19 @@ 4f65c2209e3ee628ea1d045b978208c3 4f66b9ea10c10f3ab844c1512a23bde2 4f66fa624ea823eb116328b6816fd5e0 +4f6703e7ffb171d9f9b3ec2320b933f8 +4f69bf666e0f1b6f31bff6c45b379ee4 4f6a3071559eec19703137d9969e6daa 4f6c4bd15ba77045a1addd1c93e56d1f 4f6d1f13ed47ba986e5b63f2645d31ce 4f6e5faf600cbc11c28f7c139d6943a4 4f6f53fd02a978db9432c3ee73842543 +4f713cc54fa097b1790bca7d4ed13f0a +4f7153e47ffeaf797fdbb0ecc7624975 4f71a0450c91a800340ab58e2dcaa8b2 4f720299375a7ab900f5480f1132d768 4f732b83011ebb457ddff699adb0aff5 +4f73a517e873b691e25eea5d2dadbfb4 4f7476ec7fc7e81a18be156c556e7058 4f76e00c83205cf20ff15777da2d8b0e 4f76f76c7340b2437831bab6457a60ea @@ -17950,6 +20067,7 @@ 4f7839e45a1f67150cf314e972e1d5c6 4f787cfa9fa147bba8aa03eef4548897 4f7920fdbc4e16219bce6c6488da0476 +4f7a5aecc86d280616c5bd7c597ae100 4f7b868f7d6f5366037a65c15c3d6e4c 4f7beab435b94c8c2680c52317483ec8 4f7c418b0fa6eb8fbb05677125b64966 @@ -17974,6 +20092,7 @@ 4f8f1bc2295f0d3339c974bebb403799 4f8fd51911484a75996bf1ce4aa3a378 4f9030ce41e05c95a588128d2118fe21 +4f91dfe9b066c6f2437a6d7e3802a383 4f91f47ad4280a66378d0922a7ba30c3 4f956475c2df8d82cbdbfd67915fe998 4f95dae3132285cd3d5f1f8cb4113d87 @@ -17987,6 +20106,8 @@ 4fa098e48d8415a952ea73e8bdc06b9b 4fa16c78b1f133361f177ed27aae3337 4fa37c81cac27c9316d94e6206a030d5 +4fa418742169e342f1dd4877f6255f9b +4fa5cf030bf38e6d2bfa1079263b8e5b 4fa7dbfb933927b4a964dfa5bc2a8074 4fa845c7adb9addc09c51cee1d7caaa2 4fa9f3120333ebb5cfca1783851df323 @@ -17998,12 +20119,15 @@ 4fb2c696fbf97427b875867aeaee0116 4fb2ce6ff72241b33c7a25194c15985e 4fb320c153208269dfa89e6688534a8a +4fb56a77d49abc28656d6258b4e7536a 4fb589f2c9f1f6f343b1330c205d627f 4fb594abdb8c3a5d52e3ec7fb0e159b8 4fb6937e608d962b68fe4fa37604bf17 4fb8471348b397f8c40cd5b025f03064 4fb855cb49d2a7a8b6513ff9f860a169 4fb94b6b7266d19fc0e8a7923a136708 +4fba859bb3373eb1fb1c293cda229f93 +4fbb044b56c2f5e9dee4fe569d7a1bee 4fbf81afff921fd0052f8832a24ca29b 4fc0be4e7662bbf64030b15b475484ca 4fc0cb7bafe886bea9b335b8d28822e8 @@ -18030,9 +20154,11 @@ 4fda1fb05a3c72a2fcc45f0b28c87b7d 4fdbae56b8fedf211af32a64c763070a 4fdbcee7b5c9f6a6eacdf130e20fe2ad +4fdbf2f30ef984adaf5008bfbc778919 4fdcc0c7b0a5d2529b4b0581903adb47 4fdd7e8be644d0887226a287f0cdde6f 4fde5d5012b85d197d30f8aa1bcae037 +4fde7301620f2f15466fa4f657268983 4fe00689acdc3a03b950737789bf4a28 4fe052a69b1a1ab1a73a69d12973a3c4 4fe47a878c6ccb38367f1a3e0faeb1ef @@ -18049,8 +20175,10 @@ 4fedcd0d97b7e39eb42f4651e9ee2c43 4fefcefcd338c0b0fdf10b76833e5e42 4ff14e3a3a3673f2ca5ea33ec381f0e9 +4ff3825027ac2d4f971309fb4e3c7c6f 4ff4469c2754db1685365404ccb3f550 4ff499b93811ae357be7c6046d8d2731 +4ff4bfeb180f68a238f50c56147fff89 4ff4ef60fd607e78b22654e21fdf680d 4ff5004d4e8bd04511c21b9df39c4900 4ff53154d7e8e85c691c702d0b3746ea @@ -18062,11 +20190,14 @@ 4ff9ef93f87b28406cb6dae77773c260 4ffa03e5387a0c09f3a82bce353d7a2e 4ffaaf8a88427771155f1dd191cfe693 +4ffe5dc494da12ba8cb2bb8b49ca323f 5001051a28a04cabf81f977cdb213a95 50028bc9550b6846beeffd17ebcc3d2a 50033fc4a214d5131764338b263721e4 50043b56e09a356d8d8b30623af44f7e +500442950bc234e54a85ce84f4fd2405 5004f156bcad2cee429e0240418969b7 +5005b4be9a4a3444c90f9c2c9cf1de9c 500720bab658f8a75adfbadbb4ac6f9a 50078b74ad6eaeed7d49cf89e10f4e5b 5008d57476397b7a99f032f5dbde267c @@ -18075,6 +20206,7 @@ 500df7910493664ad4537001415dc21a 50103b6d4e10f18666a4924fff3e5e0f 50110d273b121f2bef613cf6e8df427a +5011f2d9c7e3c51e70371a878623f3e0 5011fd98a6ebeddf080ad8aeeaa44ea5 5012804725fd8580d80ff2610be925fe 50135cb0d4d76c575316c692983ef32c @@ -18088,6 +20220,7 @@ 502321617e3f508ed72033c0f2189db1 502566308dd75fd8a78a755ebe9fc396 502760a1d18c87651ca4f53f89e56bcb +50296df61fe5920d39dd14c4794acc46 502f4c4191ecd2682c7e3920ec669651 503066e9de73c5f71972f8736402cf87 503067d47844c1c81bfb585e99c94d43 @@ -18096,6 +20229,8 @@ 5031d604ff0fee7eb98d3a381907dbcd 5033c14b8b8cc2ba4e104ac2be3d3131 5034ccb4c08e19a43f4d617f058eafe0 +5035b7cb314f686181f0e5372a1c30cf +5037489bc33e8aefdb303c4bc92b6007 5037cb6727735a6b095a8b5dd13b95c8 503a2677dd1ea2730676a66265c7d6f9 503acefe8718af00574041c414153c41 @@ -18104,7 +20239,9 @@ 50406f914d74c7d1d183633149b41a61 50424ab07d42a1542563eab9ed59a40e 5043de654779f92774d2bd2f155ed93b +50453aa67bd11802833e97331f08d978 504723841ac6fea01ef4a95422c94ddc +5047b588a5e85974a3e41121a0795bdd 5048c310f0e9c3d4fd79b86bad84bb37 5048d8f3abd2d984195e86e44b82d6af 504aa04bca7fe1364daab11d7a290b90 @@ -18115,14 +20252,17 @@ 504fc6a07f41703520c23dd4c77f3f50 505043d5344dcf4a1521a324513d34b1 50510e297659b03bdae6ff558e9c6419 +5053d34bc73477fbd1ea3b7a0527a4c1 505449fceb6b80034bd728ba02632055 505527ca1f661a3e24089e63948285b7 +5055f4d42482bf129460711bc31377f8 505620ff92c5c1ad39144130cf4c6a8a 505636ebaff579bc493b91d96866f942 5057a4f8330d1371260fb28630c34bea 5057eea2e7cfb79935d81ac23fef8c75 5058a98a6446693d64158ba82aef377d 5058f7e77c0937968995751b9ada0f10 +505a87682e0aa635eed46802706a03c6 505a98bb4eb6e20ff47ce7f49a8fd101 505af381a69371ff0ff122206902849d 505b335cf161c2be74d2d9803f3816b2 @@ -18130,6 +20270,7 @@ 505c1f7ec0dda70362ac1e53eff67d50 505d0cc414ff9f4ce703fe95a303e209 505d9c9b022d8cfd9abb1da00db66cb6 +505dfd25a7a79a07d78ebcc9e6b0cd1a 5061c1c0470532b6b69162bf4f0b034b 50631d46a35d95140da96b8bebd5d34e 5063250eb40c305240577b7e6f2169b7 @@ -18168,8 +20309,10 @@ 507dd951154a708dcea6eaca0490c243 507e8e0fc909fff511322645c6ceb8c0 507f5f74dfb8d3678d739ff3c5a04922 +50809d56f50572e8d427007389f8f205 5081222ecd02f76358c0a6b064ecd7ce 508243aae6951a027cc273efb3ba5e09 +50828a1ed4084d7b2c4d673bc4da98ed 508322b42ebf44275e388e983450fd2a 5083a6894808501b742f1bef241c18f0 508407a26cf0e19bf322514d23c0d8f9 @@ -18178,14 +20321,17 @@ 50882b771983a455048d26b8f4563df7 5088cee84155ef6e081aea9cff4cf39c 5088d369235e78f30ceb5a851058789e +50896d4afb857875b53fe9614999a004 508a75c18f450163ea9a96fc2758655e 508b0af400e6ea380fb27ab7778578e4 508c47c85b5b1bf836c0bacb5cb88dd1 5090b6ee892ab83cbc96d195b2026329 +5091670b7cfc41faba3ee3d1d27545e8 5091968a4e2faea2f5bd6756e406975a 5091cf09a751b99a5ec649240e1c2e98 50931c61f9d790ff41fcb449ec0950ca 50943902f960ae3f1d8f220f692644b0 +50955beaeb6e5c63043105077eecb416 5095e0b3e5d4f42a59c46dc08644d97f 509609ef1014b4085830d7949379b563 50963b8af6c435561150deea2df0a65c @@ -18198,14 +20344,18 @@ 50a08d390ed6212a3f52fd07d221ca59 50a10e89a94d773a84a4bb99bf2cf251 50a1aa138c31187bc3976cd062a2519e +50a212ab89ebe24f3fbf9c4cc5290aed 50a2e1d0fd94062c6c8ab3173ed8d3a2 +50a4897c7f68abfe5d218635005cdbc9 50a54adb149fa19eb63b582d1dd6bf84 50a5781812f9208f3ec6e68f378d0d0c 50a7368454e58f90430dbc902d14a67e 50a7d8611b2c5ba70140605c0fabee59 50a96c46d396602f63570cfc2e907fcc +50aaf3d04b9fd9445b1efaf458881a3f 50abdd2efd4519b1632b6730ac076799 50ae62d9bdd8ac5d00bfe89a3d05a4b5 +50afb00c50ecdd04b08708ead04a10a6 50b07cc6b81aa969b6f354ed32926f27 50b0d3d792379dfb2c22ebe6cd3ba2ee 50b18992066068fa55b2e2a4fde51645 @@ -18215,17 +20365,21 @@ 50bb2232ac4b97d4da6152b2c1ebb399 50bbd1900827cf1022db5d59cb512192 50bd9efaa24805765e902c7e2999b4af +50bec69229c4edea0b530474dadcd83e 50bf0b01ed8b442091a9e9ded8b99de1 50bfaf2ae6295b00d9519b59564356b4 50bfeef526fbcc4ea002615373e4c12a 50bff042f7fffeeb5a236f3d331bac1e 50c0483cda62dbf98aea2baa07a9c39b +50c1912eff76af5be18e98c2fc031e1d 50c1c8955b673f95b150e23297298874 50c2b398906a66dfa210877565c30d1f +50c49fcd23bac2502bc121ad85bc70a9 50c5635a5fe322fcc5d9d794863e07f9 50c641d74a021eec8f32644b533eb5ba 50c8a0bb65623e46ecaa4b2de62bc598 50c8b381f708bcaa0194ae070a5d52d3 +50c8e1c88e2fa1761045824155a5bc3b 50c91b20dba944682d8dea61282289b1 50cce9958b206c200e833ef0b78c597b 50cd25d6907d9ee8be2a211620c4c5eb @@ -18249,8 +20403,11 @@ 50deba98cf72767dd4028b63d4d23d93 50e08de94ac5882d576ec69be776724e 50e3d5204efb90a764b4fc8a0783b695 +50e51682f40fae8c47d02f8c7995e89d +50e5461602cc5e134712bd824bd48806 50e6ef542dc892adad99b53e18e731b5 50e7ed89c27732b8f45e462379ed6541 +50e7f8e07be2081788069f14cbd2ad39 50e9c70b6476743cc0599195c3a0dc4a 50ea3a2149fd8fedb59be2a650b18928 50eb68d33704af37eb3f83d42ce22e54 @@ -18260,7 +20417,9 @@ 50f0281a3312f994e45ed637a6e84321 50f140b666a2cf87bc25bd883ffdd02d 50f15ea61da0a225661b9d45c063bb60 +50f1ad9a87eb5493608b14e11b3e9a94 50f207b701e9994c6094d8ba679c87d1 +50f22aa1abd407447263c31c5de21f6f 50f3afeb653f2070e231eca2fd927034 50f514ca6ab020b305e43dcd6e54591f 50f5939dcbcadca470241d448cbd203b @@ -18270,14 +20429,17 @@ 50fba0b0b9d7cb1a2e655fa16ce1a78e 50fe8137b900e1335b2b1cf1de23f311 50ffce71f24edcec31d22c88a1555a53 +5100b52f0c9f4fa4b35bf9eb212b9fa1 51025779cd25b1d5af94ddab19c96570 5103c86f37301240ee9e2895fe70cd86 5103f0107aa408b0e7d912b02a4b815b 51042e0fb2cc1d12672b2e15064988a7 51046ce4b6b873eee3a3688b354a9c79 5104c08228a5efe28ff493a5862560c8 +510557479dcade4c04bd4cef79f0566b 51056dac3be674cc6fac108d41a64aad 5105e343039bfd9c2eef71dc51d3e0c5 +5106ef44f8dc39a564add39f9b994694 510754ba207c6bcd14224938fa7c7c6c 5108a46234af5dfe0bd85aa7fc623b50 51094151484506345802a8aee722ea5c @@ -18288,6 +20450,7 @@ 5111fe0515e3734d76f8b9400a329146 511393bcdf3e52f0a580a50acde1964c 51142f139161c15026799d0df5cc2fca +5115aeb547a9754156f12f5e1b684994 51178f8ffe267a4985df5b403ce23830 511ad3830283ed5a6c483941d152b32e 511cf2df29aa0fff54fbd621b3f44cea @@ -18308,7 +20471,9 @@ 512811b8d5fc13ae4ac1067136dc58b3 51288f80fecbfdd9a97aa0bdb41057da 51289320dacf6dcf1dff6bac5d3409ab +51298b154275ec4cd94f2df5363f956b 512a2ec875bebd147571e015f18e9e33 +512a7cbe7e163286c48d88bc3122e4d4 512aecfc3b0e8251d9a3a3c4647e1e02 512fb55153cd0647d415e1afe604a0ff 51301d9bec04a96a4a60722c29ac30b4 @@ -18319,10 +20484,12 @@ 51375a6de90f9151001e68a389337975 5137957f882ec3aed4fe490491225a19 5138d515972d4dd4588fb67ac0a1f819 +51396ff44aedff5eb525fcdcc0e8d4e4 5139f1a62072f7ee07148b83fcc432ec 513a0f26a252667f62e549ac035f5093 513b1c35d914c99316b348199fb79ec1 513b978e58b922dba40fbd9ffdcdb454 +513c0e22dfb31d841f73b302720924f8 513c87e57348fc862a8a110722104e47 513cd6430cd4247fefebd590474f2b86 513d5f5b1b6b0287d7ed9f5826af5f61 @@ -18335,12 +20502,14 @@ 51461607add9229b97f16ecf8a0a3012 5146959757509c164fb8a464a344491f 5146c455d7eb63ca21c75a130a223aa5 +51472e5115b93659fa16df1247b50a08 5148c0ece381d5633eaef9fc2e36f183 514a0aff366ff8ee455c3bf1cee0aac4 514a0f3b6a72fcf3d46799c4715e1606 514a294c2322e129d19fc1584d74c577 514adaea7e0ced7a7ada382839a82005 514b1bd846fcaceee2ff364aa37e3e5c +514c81a3178728fd173dbfc856868c15 514e008a2dd765ebf538d08e0af9aeb1 514f0a9bda96295383c939a25bea1909 514fdbecea0f3f40544c0aeac44ce693 @@ -18348,6 +20517,7 @@ 515106097017542ef0dd6512430258e7 515455f6878f70b5c2403d6a1a40a3ee 5154c9d72e55f94569378d2f3543d787 +5156b384f3f1c20f947c0f8be9874461 51571da43e45ec568dc1791a7897519c 515803b028b1bd972a94509c7474c4b6 515844ae6b4f4485e5eb821e48953928 @@ -18358,8 +20528,11 @@ 515eff801f732419b9f824d3f2180397 51618019aa035694142fc1f4c752e5de 516280426cb783ce2ffb535827ed98aa +5162bc8ea8130a1859424e9451273901 5162d1510d40fa43643925c3c01397ee +51630dce28f58e0c4f9da6b85a4fa9d2 5163d66999dbf93eeb9f0c99af290826 +51656ca00b90096467daac987c2e1b16 516631f2ef2bb8bd50dc3a86db14a198 516742ea6d4de333dd561447e5642b0e 516743ccca71e93f76350517615c6066 @@ -18393,7 +20566,9 @@ 517f89d7aef428be8915adb8625c91f7 51807923a483e24ce0399c82e34f6302 518098a52ef959f3a94d112ed8e83f22 +51813d010fab4899ccbeb209e6430a8c 5181476986315b78a69542560e66d8b9 +5181cb187cdb1e778d8b72377f99849b 5184f4f11903170e027f9ee79497ab76 51862076cddb6bd9439b53d2a6453297 5186f02aa7c5c9460ac6656565be4f69 @@ -18407,6 +20582,7 @@ 51904f05c85315aa1511876cf9077a8c 51912662690fed540cc6b01e5ee022e7 51919d149ff0b15deff01d24615f4948 +5191f9ac8cd3f155ffde50dcab9f368a 5198d3b8aa3412dc737a38e2e0300ac5 5198e5b2f5b915f08e9d528c63afa149 5199b8331b9acc95bb61f2232e981772 @@ -18416,6 +20592,7 @@ 51a37c59adb9b4b84a5dd01d29a57da0 51a421a7200cc6be612dd530a03375f1 51a46f9a4caf3e0048c5ea5e29a985d7 +51a52afcebff605651789f9cacad59c4 51a6d41031db861288ff378ae0bebd6e 51a79923357d5d279c1f54a9ffaca1f3 51a7ddb677860c8a3a46084b7d2fcc76 @@ -18425,6 +20602,7 @@ 51ab971efb49dc08a7bc83e3f2bbc7aa 51ac42e66f90baba12bf2477b99a815c 51add48eb0c9088c5a1a0d99548bdeab +51ae157239329edbcba8730145462e3e 51b1ee1dd4ebe9c3d229cf8874ba553f 51b37ddc1acde6bc6d7cc05597f58f14 51b4b816ff4a556489067968f6dfab51 @@ -18440,11 +20618,13 @@ 51bbed6e04a0f234fb8e0b84b86f6cf6 51bc3fda6c506e444f8dad9b2677c14c 51bd383240fcce841f61c926b89d48ee +51bdd57163e8d06e8329e82e82f3b2d3 51bdd99c74a7dde069fe5d2bcdb8216e 51bf4979603b25ebc4555c0951161a55 51c1a8049802d73ee2e19a310bd06880 51c2287ad8276a3c9c1d6afa70535add 51c241d2b43722d95ccb945a3f2fe8d7 +51c252889a588120ad3dc25a04883f76 51c2d0abd424f88f6a112d0ad1f8005e 51c526fcacf8e0f67e5141d1fdfb991d 51c5f599515faefd25265f9e59428c6a @@ -18454,6 +20634,7 @@ 51ca7b3d7394624af7eeb804cbad8fc8 51caffaed0f001e618dbb54308957084 51cb55861f0683b8eccf6df914499b38 +51cbeb75ad116c6cdf2dd33d4d8de613 51cc0a90c849a3fa91b6920887b02711 51cc12e323d58e20206b4b8410a11364 51cc4bab29df9a8bc6d99449f3e9ce80 @@ -18467,9 +20648,12 @@ 51d71178f71a4f3bccc11b1cf69044f2 51d9c95bfb0feecf6c811f94e1a337e3 51dbef6e8f70ba4ba76018419bea58c1 +51dcb3b72721ebe4349d7c8589ba7b05 +51dd98003066d20b9cbede27a5243384 51de220ef593320509f08d394e6748e1 51de58a3028fc5f126799a95d015a282 51df4e6bd6f91748ea2503e433ad7f52 +51dfc4ff45797480c189d562f00cb31f 51dfe28a1ff9fa30c4e10235b6dec77b 51e09eecd7f5e21fdcc5477d07a2af33 51e0fdd432828e255b47240529d88dcf @@ -18482,9 +20666,12 @@ 51e7e7272b4ddc1eee8706aeb7f3b201 51e8b4b921ea22aa1a39f1531b635d84 51e9dad3dc19495cb42096a2df44120a +51ea7976f525c56c4e1ee8ef73f5dbda 51ea80e2310e96729f81979a1104302d +51eabc61cbcad4e599640c8fac41b927 51ec8c9776461a7b508bd6df402103c7 51ec992560ef752c9c89eda6084f2095 +51ede152257b9b5cbade93d6e3ef5fd7 51efbb013ff28d45ffb407dc36394907 51f03ccdf4e21a56a8922f8025e2313e 51f199e4ebccb77b4b63020d11410585 @@ -18496,6 +20683,7 @@ 51fa137e399836dcf43feccf5fc8191f 51fa79fcd5bec931c4f0e3951c54ed14 51faca51e5954ca26d39c03c8b77d581 +51fad9803f39a9d29e5e9e6ff6a56c6f 51fb99cd928c6cdc55a78112d326fb4f 51fcb752075afff896ac12d809acc4c3 51fd8adb4cff16b05b99cd7305e459e4 @@ -18504,11 +20692,13 @@ 51fec8af55b322dd46860d7cd3719ea8 51fed03b90c0a5d052fae13e69266d2d 51ff4c3487d1bbdb16a2e1f027644379 +51ff9781392ebd310015b888cc4e44b5 520171213451e1ebc54e03e077477377 520278815ed992ab3265c48249df8d5f 52030f2c1c050f59e1520802fbae01f5 520325529c0ccade21c210c6771099ad 5203d0988bd0529c5f8c7193c8485a82 +52049ed4cb61c1c0cd161d300dc1b369 5205311009209a44eb4acd179f8c3797 5206433d627489f752c025121cb9843b 520905a75a9f5e80668e2b440c05ea1a @@ -18525,10 +20715,13 @@ 5214560b9b6312c4fc45f85a802a5cb2 5216141e8520969847b57555aaf47511 52179e857dee77924e34483d50e5191e +52195610dbf8688424ea9afbe5c9ce8f 521a76b3a815c4a856d4e02f0b0cb6f1 521be75b70cefec8b38217c0b2ef7e0b +521e3c9964762abb0d4d24bd08e03874 521fa978e4301793993327642cd25fb4 52206b6b55c2e744bfefc52686afa123 +5224785e7994b306d1788e96797cd568 52253b4f7559297827e115007615ef02 5228159bb13ee245c35cb3115ce61a76 5228f7eab0566c617b2aeec8fd0adcae @@ -18539,6 +20732,7 @@ 522b4d38d93fa42eeb5ea8c82710068e 522c6a0be4ba2a18173f2dab26c77ddd 522c8df73642669bdc40e75b52a5e0bb +522f3d1e346e4db27920d39e3bd59467 52305cc395699a26060f98dd65eee5ea 52310f26b00f603a77689a7beb8d0f1a 523113710bfd80f304fa37ad3a099347 @@ -18553,27 +20747,35 @@ 5237ab6f1445cf179f7fad91ccbcf7e2 52390f12923c68231b6d9efe5a725d47 523a02ea35add4bd39cae5ea2327bcba +523a1868950e28d477d971f30fbeebb6 523b985bc0d6cfbc051a4a34514c16f4 523bf92fe5543544937769575e9a459d 523ce4ea335cca1427540af34944e7e3 523d4433bf00ae8534f932a1f2b0a64f 523d4e3cc851d5251f092f021fffd4fa 523d694ed8bea2e15b308560ffb938ea +523d86331d3d2beabc12990cd3e1dfcc +523efde8bf287664c464ff01b017d2c8 524106c64938f8b43ea5edc81912effa 5242b5b59107bed19b216ae8425754e1 524383766acbc7f229c0116b5c3e6f7e 5244890f6805f17831a8c4f86bda08bd 5247ccb31145d2cdf6ffbcefae6b4d04 +5248bde6312a5f7e74f1fa19fbae35ac 5248cc152b34f0160d5acc15580627c1 52493007b5e0cbacd755b3a3ad2d4c79 524a25b9d27b360f5adf86c38e59a824 +524a2fa0ee3015e8fd2a50c5b990baf9 524bfd33097cbbdc699ee57f8a8e0383 524cde52c476a89b3d05408e292cb65b +524d4515f49161bae65129eb5111d8be 524d9a9fc833ba66e56c0054d4d160d1 524e1df3755d48f34d6b7014b0c75b5e 524e8d1bd93f0b74f6f78517952bacae 524f30a29d96b333a9f404527929cf10 +525039f30f17958597a6a87c8c0e86db 5250a8559197aa274efe356bf5e8fa1c +5252d3d6011e093cf009583a07fa20d7 52553aa70a78c7fcc4c45ea8a443c7d6 525580ffc74e679d5a89530f497af735 5256aeff83b307a9dc29bde51c696050 @@ -18583,6 +20785,7 @@ 52583beec4461481f7d507b246d290b3 525ee47df107ac05348a8094c2ab21e4 525efac4fc2b606c4dd81cf401b11ffe +526053aba777a1404f0a0f7d183459af 52623b84258d4dd55b9eae1f81c1dc04 52623fe019424df170d19c54d78cfcf9 5264ffd54b8c5dba90a0d55b32cc93dc @@ -18598,14 +20801,18 @@ 526e7804e6ba4af67a6b20b26b1b85ef 5270a059e8e476ff45da6479b516c914 52754339e1a157a8eff0ee2c0a99f6f2 +52759e4bef3609ed0ee377cccc7f7f13 5276d4306c9a4ff953b64f03064ddf7e 5277156589f74e94bb8859b3d84aa552 5277b514690a61b4d9fbd6958618fa24 527ab8144dc197e572b53a3598b6e62c +527b260a09b5382f9c988effde509fb2 527ba9cbbae5f4bee866ae74b170dc88 52803d7d2a7aabb5d954a5413ba136c3 5280ff760b526f11342020f4c0a51d89 +52810f601caae2b09da3c9b173b9640d 52813ed2bedcd1dce4159c7c3a38b4c4 +5283df43f7e1ab031f98697c459e7835 5283fb08ecb599fc0e5f0d591553b15e 5285e0ff46a723267cddf10da4d41986 5289d77ad8b71d2cc2ad4243f17e30c3 @@ -18617,6 +20824,7 @@ 5292158bdf359b4a2292fd84e4017af5 5294e4422b391ff4b9bb39147addfa60 52950a83229b0487d59965a0cfbe49e9 +529619e5b699810dd57ae86d637d1353 5296815501e5eca9d3f63b4fb7258ffc 52968746e4efc6a9a1b8eaed22ee3b38 5296a9d34eb88d8f7c2028033c9763fa @@ -18624,10 +20832,13 @@ 52986baba17dc73806912fb20055333c 5298e1d28d03607ac5be5407d0961111 529980ae025ae3c1872a5dd191174817 +5299a4374d8638b6c1b3802c4e9e2709 529a85b89cbf5b35cca4b3c613c484d9 529adf3b59efe0b2ca376b1537a945ae 529baf667be3c40586168cbcac9421c2 +529c3f515edd7397d50930c28e6a7fe4 529c79325149834aaece1ec426df1845 +529cd190909ee03f5851df0b83460c29 529dcee6d2889fa0e578faf96301edd0 529fc3f0067f9dc25a2b4c5155980bf1 529fddce0401d4505a483b4aebd5c5f1 @@ -18652,6 +20863,7 @@ 52a87d049123a60c34eedd847fadc3e3 52a91c2d2fee0274c420f4245788a0c3 52a9c3c990464234a2ea65bc1ceddaa2 +52ab3a5d05820b566b2c585bf43a2b1f 52ac0fb766dd9788dadb54c8cfe5244b 52ae0fe40d13c2b640818b7d5fbdedb3 52af43bb2a90177324b0332ede38b100 @@ -18667,6 +20879,7 @@ 52bd596d40c14e531a4393f0c7d3599f 52bf1c5601b0cbb6235bf19f33ad7285 52c153e20066d7620131da39ec8c0a2b +52c293ba10bb3c2503450fd3f60213c2 52c2b619f4fa731bc2eeb492d5931cfb 52c2dac95dabaebd032d343e33f988dd 52c2e59c4e0d734f34efcd6da6e1919c @@ -18678,6 +20891,7 @@ 52cd5bfae8ac37ea597127ceb9683244 52ce168cc4c52c14ab486f861ac14172 52cf16f707600ff15b177611b3ff0743 +52cf6c0d60e73502d31c7dbae568dfc7 52d1949027fd98b3f5bb6e9fb25c08c6 52d4ebf3789d4b6fff86bedfdb293cfd 52d719364b4c948efd22b7245428756f @@ -18716,6 +20930,7 @@ 52fce820d29de4875e4b3738d56c2b1c 52ff4c8fad5ba3f9a7ddf7fd5db4e442 530081e753caae0086ef39506367e8c4 +5300c185db0c2d66f1353cb289079303 5300ea2afa75c219bc1d4c444066c34e 53020b72a913cf6cf744b1fec7b895d4 53024ab2d0d95e28fbfd28331c6865c5 @@ -18729,11 +20944,14 @@ 530d7c4bd2b33b3f66efb249a67bf6d5 5310f18d7f0692fb57c0cdf544cada91 5310f27972ff9d45d6a9194eeef8040e +531167e2fc4793ccd20176da0e5b1e1b +53116f0fce03b132f456a7174c979571 53131effa170643046ba202544d925e1 531469f71846d228a70aa476f42b5d68 5314849d8a5f60d30adb9f9cd125bd06 53155da80d8f9951d8844f48b15ff019 531681623b8f8eba0c6adee9d55f10bf +531750aaed5f2f183074a3ddd262ba27 53182dfc6d7194b99d45cd22aeb78126 531880f1622d923d9fe3e1c19b460bee 53191fa60d0407df72cb2c5abfc40045 @@ -18747,6 +20965,7 @@ 53203a9c23aaed0f319d1f444ba9a21e 5321934d1658844c9c4d80f64f0b3890 5321d2ce12f5cd2c2f2f5a60481e5706 +5321f52b32928a6db9408097aa345d98 53223f9302cafffb98caa53765ed456d 53232d3e7907f9d498b9ceb7d88bfafa 53264ba24de8e442d9f50c7db61a4332 @@ -18755,6 +20974,8 @@ 53272f2b6dc727c3fbcd4938ec9768cf 5329bcc1eeec8aac4badd596e03ccfb3 532cd3e0723cf443e547218f4a6a75a2 +532d078860fd31e3f91b405743c5e3d4 +532d9c8b0b4950783831bc2c26aca89e 532dbf2e55afe2d3d929204962342a9c 532e64af301507d8f624f705d664b44e 532f3dbe4172c7594a35f93eec6afe33 @@ -18771,7 +20992,9 @@ 533ce74cdc5e3a1435e91578016d484f 534031c58adb3603188129883674022e 5341155db1201d5364b7f99517e8d49b +53414a4d9407b7a24ab8d3f83dbbe33f 53414e3a5cc5723fc7518ab10ea59587 +5341e1f1cb8c1b3f939d1a46ee6e4810 534389a161ad2e6c3f7834b5963ca355 5345c16cb6242f5becab11da3ca2d9c7 5345d9b7daf3ac5dcb6e93ee104e80c6 @@ -18784,6 +21007,7 @@ 534d172c210a8d9673bda4b510be8402 534ef150f04a0c841420620400685a96 534f71b89cdc3397f08fb98a93788438 +5350edb466e02df43a34999e47f32d25 53512f74d4421042e5d653e7c7a5be1a 53516d786a766ea11a61bc5fcb44650e 5351e21ce5b81bdd7c0bbf123a2e46a2 @@ -18805,12 +21029,14 @@ 5360aa15856ef3f1cce9be8d26f3af99 5360d53135c802228f816f3f5c31d57f 536374159acaf11a4a8803e7dad5c9b9 +53637ec3cbdd18ccea8d3f6de36c5226 536391461493eccd17ceebaa079f5948 53664292645d3b4de9e84de177ed21ac 5366f42afc3a5e6cc1dcd853027c6883 5367234dc1dd3ef4ffc8a7ad555f25b0 53672bdad82e52c8cc15f374a995e386 536796f0bb8c7e03649d46627e1ea4ee +5367c581a5b8962ce086c98f9896065a 53685d7743faf1418620bdc0e2f2a5b4 536870b7582a74f876bc6282da0a1765 536bc88469e9b665ea802274dd2a1ecc @@ -18822,10 +21048,15 @@ 53722d1cd19ad042776675e05f70ce88 537237ee8c2d7956222aefbdd85da0c9 5373658480eb3b62b8c24234eca05aa0 +5373dc2adb872672e06f7263f5569e8d +537594f9fb769770dc7238aa362fd97c +53760ab6582aca741431a9775728e56d +537677d8ffc181d3cbbc3754016e1334 537690aab9af4bb8f37421697a8b3b2a 53791558bfee972beffe51186d0a2cb1 53795f0ff3545975c4d32d8d875964bb 5379c10b2859b1c1c8d3b4e1f5b673c1 +537dcbc98fdd5d4058ee395624de9a29 537eb457ee63eaaf5b1c02e617f8ad72 538051cacd5d0f2c66ae259c177fe8e6 538056f10f2ade7d38f70901772ea9fd @@ -18838,6 +21069,7 @@ 53891f6752eaadc4532c89824464757d 538a92a0a2a5b02de7c7e13298dcdd26 538ace24217856ba6aaeee1e2ee3fe6b +538b3c128b9cdf7ff6524ac1061a67bc 538b62220eb388b2e58f7208c8254219 538ee4bb4aecd995c8b2be7c43a2b2b1 5390cdb57135416388394dedda1ee0f8 @@ -18855,15 +21087,18 @@ 539b07e2621abf56a8aea9ca1412851f 539b94014beb121579f09dc027ecfa06 539d0c4e75d433bec35e86774631b986 +539d2827476d98787874a6b1e0d481df 539ebf699ca37c52583c88c367541425 539f0dffedb1783e061afc70f83c332b 53a092bd642cecb71a68604cf96cac03 53a0a7ae0cfd2a2024da25d925d001c9 +53a0b26a8e8ff007d2dd0e4dcea9d3fb 53a144af21035027788253559045ad2b 53a236c2e95b41e9397be696a7cada4c 53a23d47d4204737aed1af290dd42b91 53a48b7e1fb278eeed0768df6ac08da8 53a634dcfe1d6e2196883754083191f7 +53a6737a4e8c96d39d47881d92153c25 53a8b37c30c190751b3a339409e71247 53ae21343beb14657400eb23f048355b 53ae223fe919df6639beeb47fc118520 @@ -18873,6 +21108,8 @@ 53b041cb188fc90ec45e2aa53ddfc018 53b0d4abf30d47fc45c7652d2843051d 53b0ff189e6789dbefed0dab7d2bc8bc +53b2b305ded447f6f35e7e4077ec6027 +53b40747ca6cca54a99404c1d80d1bd4 53b5582b760d212d40155f6409e812d3 53b5dc437038add25c6706b79738bb5d 53b676b3e9bc92252b7f5a4c8219af46 @@ -18888,6 +21125,8 @@ 53c1f15b5455ef319036bdc3c2da2776 53c247959776c72ee01c4b8dbea22222 53c26115abd47eadaa21bba11cc454ad +53c314fbab503d252e5da3e1f89d07b6 +53c5570aa386394ef34e5a08f0d05c90 53c567a78ae5d0f0ca9a274adfd891a7 53c667aa6f4ab98054edd68f4d0e1bdb 53c8160f576f30b2bd9ce3f3ef981758 @@ -18907,6 +21146,7 @@ 53d44e3031d74239d0d72d9da33965f8 53d4da6f60fefb8d7125e7cb22a52532 53d6dfc671ad46a468dad555da8b9488 +53d7229209f6df30b6d7e5425aba7759 53d75ff4f8ea9d54ea6c483c657b2323 53d7e258d6ddb47617a94343591b6add 53d8695f73de9927f80cbdc05f8af7ac @@ -18922,7 +21162,9 @@ 53e24cc1dd854d4ba3fe0fa5c4a0727a 53e49212ff75893ad8b58e4f3e694c6c 53e4a417711001026924ea6477ebf48a +53e53aecbd86e7072d2ad82f592cfe99 53e8399b8dcbf9ba5949ec841d7e673f +53e8c8693e502db04245cf8a4c6e2207 53e9065530312a4beddde53a68f7d632 53e9540cbbab6da49d61baaf6cdce1b2 53e9608a90becc92bcba836d49e53d84 @@ -18950,16 +21192,22 @@ 53f8a75ad089987e237251ceda8182f9 53f9f4b8e42ae111e2ad0d4fd9e7db26 53fb27cf9e7fded3b35d87ad47d73ed2 +5401e89ce67f6ab7ac6121f620fffecf +540207d684d295930f3d878b157a5ef8 54036be651e0ab428e77ce182c9b2312 +54048819724d216c5786b7b0534da81a 54060cda127d688d5cbb1095bdceafc6 5406106762cffc23d730a85af219f7f2 54068f470b5925bcbabd19b707c61f20 540711a6e8a228dc6da4f9df5d580892 +5409153947d7d1772d06cc5dba8ac460 54095391d87cdf525bd3dc3bc381aa75 +540a84514890e019df93b9a13e4f3860 540adce538413d6bcdfc59f6b9034d12 540af289b311272e0d7fad8c5c0a7e09 540c5b4da0cab2194fa5e6a8d28eff4c 540cffe58619a93f753bf65363808109 +540d615d6a038e2a032f8360103c8ffa 5410a8fc06eee62d37b79109bb821a14 54120cc4c7191844694982a01f3d9d79 54129ba4a991bab79463c211db2bcdcd @@ -18971,7 +21219,9 @@ 541a57180662e79556d5c7fa4b53aa4f 541a940fb6a2581093c026737dee418d 541aa601c2532fc734e817c2ce74b518 +541b6ed68d1e1f333415e5db20e1cc97 541b7bc4e236adb91e142f91f1a0e5d8 +541b8a9b39ce55380bfcf1e890bd2708 541c9f54d3b5936d9d91e7abe1fbc16d 541d935b2920881d5e4e81f77888515f 541dda9606ece2e8b0c3eb2be166a0d3 @@ -18981,6 +21231,7 @@ 541ffd6007edee91f305b3b2b8791d4c 5422a54ca63cebfc7f44303f5c1e2038 5422cbed9f711797f1d3a85a33129356 +54262bf3e4999d2e519eff053c5abbd5 54263f5df1b2735eca863be84f584a8a 5426923934318f2adfe7585dfe9ec715 5426e73f66b0a97cd30f4187c6ae3040 @@ -18995,6 +21246,8 @@ 542ec06ea868191da71638adb9aecbf8 542f8925929f061e3b143753fe45318a 542fa255be11a5b800addaa052fd6416 +54329e5d82c39768e8135cead27e22dd +543592baf2db15fb3b7584319c859a93 5435ea028c9d0a2e3993eeba5915a4b1 5436455b28c8efd9fac705955dbf7dc4 5436641382b78b5d03087cbdfab52b4e @@ -19007,11 +21260,15 @@ 543abc852feed5f00c78bc06a95cf543 543b73f97cc9a1ba299fae06761fec2d 543b8e48c18a4c4b0bc04941de92467e +543c178f669c72a01f77c298d9f3a4d6 543f7a5e8ceee3ce20e449f0d44c2679 544002de1255b4b3bfe79e6058f9732e 5440fcfd0bdee89c4efdb04100aa636f +54413e856c22622d42776c8e461cf275 5441ce1bef9399fb06e1af2e6e98c8a4 544263dec8db18ae853077c36c6e9b11 +544294a44cfc5b4bfa9d2fd69b154229 +54433b01df25dd4731950ace579f2691 5443750bd9acdb06cff50d595362435d 5445834875acd90481a1c91ab5411963 5447cf051385e1b99200bc43287c2464 @@ -19022,6 +21279,7 @@ 544b17b77eb56430a5709f3e34d143aa 544b49682cbef132bf0c7368e70290af 544b5e3383aeef3ca37b66eb42feeaea +544cacbdbbfe1a1e30edca78ded63b72 544dab34a60f5278fda8c81711d9224f 544f6a9d8fc8bd9c4d9aeec4c1a65168 544fe090a14bb96d8183b181b8265f8a @@ -19036,6 +21294,7 @@ 5456d98def586eeefb4aa1ef05137cdb 5457c1ec710674a19912f30184dd4674 5457db240553d3c491aef03a86ca4234 +54589cb77ae414fc0c85138c89acb2fc 545917713376c36f2ace6ca0c63c1c5e 5459a21046acfb11ee7fedcc780dd535 545a35273134f06cd9b8dab5676053d2 @@ -19046,6 +21305,7 @@ 5461d577d833d623c39c14c0e59d5abb 5461e70b0481dfce29c30fd08ac91693 54635bb47c051529ae7d152ded2aa0e4 +54635ed014a0598cbd60d784f4c67d9d 5463868704cc51e2f7bae769d3a297c5 5463ed4c177c172f9672458d4de649c8 5466f965085564e4c3820fb0c3ba931e @@ -19083,14 +21343,17 @@ 548cd3fe9714b9ddab7475bdccb0e41c 548d15a3a85390f523f595a2b0898251 548d1ed64130ff250a4bddc7a4383528 +548e115a841a6ca9ed36feed520fbf3d 548f628d607dde19e7168f4bfd507152 548fc9fdb7afb49fa28a031242d61b9d +548fdc530a1aab2c7f2363841c45b096 548fdf4dab05eb03d994c03f0038f8ea 5491264b7508d8f931ef84bee81f6548 5491f81cfe4f317ad7c0a2745d16f138 549338fec67f986de96cf1ed05447d69 549382a307f94a7f44e65760b0538ecf 5495c4ed5e887af948dfc44a61684524 +54967922b94ed7c6b3289b8f39f0ff77 549776bca0832d632375cd151198bee0 5497979ddafe7739529db9252a3237ff 5497b487cf65f6a0fa26606081a61709 @@ -19113,6 +21376,7 @@ 54aeae4b60831a864ada55c3ec7c6696 54aef5e2220b04afbbf1132b11e68bc3 54b0a5c8cc9e9fb89b7dcdf7238d615e +54b209f9b639db9bab8c38cacbb251f8 54b2c22268938d7dfcf18c7b78bd41d1 54b2cd32159308014a8307af2af34cde 54b34323277d53eeff0c06effef80860 @@ -19122,12 +21386,14 @@ 54b58fd9b62c5dd4f51c1d363c4536b2 54b71e0c470dc2b50c37a733ce55f9e7 54b8b3b60c48f22cdd1ad63e73cb2962 +54b8e2e746e2c929b786995029067175 54b93c9b78a834b38c75001330c7c339 54b94d5f25f90bc62271523c9d0d346b 54baa3ba0cce22fac92a7007e73660f8 54bb951cb326ce144f2d82aaecac6406 54bb97ad57ef40f75b99b4141dc7dc95 54bc844fe2c4e529d2fdde636c380733 +54bd050bd21894480531f1e1e02ff0ba 54bf301c7115734cfa42bc4a95cdc286 54c1ea0ae506468148a67d2ee08f54de 54c2f1a64f534e8c61a539142b5dc4f3 @@ -19141,13 +21407,17 @@ 54c934ea80d25b199170610fd697dbf4 54cacba9daf3d984893033b962d02a51 54ceba3598abc008ee1c45faf3a36b97 +54d0103c5d6988a609de15ce07dbd235 54d044f7b314aec48c5be952b0dd0c65 +54d1b3d5253d3a2b2c3298e8afccdb01 54d4a58ab6f47a5794bef893eebe0e79 +54d5df863ab1e9dd5e04f80bafc2734b 54d70157f8aca34e596fc10d7b8b7d67 54d800d16df29cae7dbac0c833b0de68 54dbdd0742060ff49119d6b6b593d597 54dc9113ecf04089fb38c2f386a74b43 54dcf63416bcec837d193194028c46ea +54de07fe5cf28961f43078c9e2eb19f7 54dfd30a28475227deea1a60babd9f86 54e011ea5ca7c4f12bd36294f8073466 54e02cd7aee3068e77a079a33d8919f8 @@ -19159,10 +21429,12 @@ 54e74fb77b047aa07848711097ff29c3 54e7ca1ea9e7b0abaabe5ae746d8a98d 54e8706cb015af005ae508db5eb38fde +54e99bcc06354f64a94c60eded56d87d 54e9bf156cbb75530cd1f1239db93d93 54ea145d2c7df97ec6c072cdf5798607 54ea295267ffb15eaa8807b9258c8bf4 54ea403c70c882d2fe9725e2b12dd22e +54ea9b6ee014d4efea77298139137d5a 54ebd212ff26f3dd50e8567d94c5d687 54ebe1922790a5e74af9a317655f9227 54ec53d4c5a3ac1a7fb08fba242e6c01 @@ -19174,6 +21446,7 @@ 54f4a0048f4faac762b3e4f2df6c113e 54f583d279601c440043718f5e491471 54f5f6a95170752f6e307b385ea1fa79 +54f65227efa8a88477c3257a385d01ab 54f67aca0de4e37d9b23ae8d2beff2ab 54f728ae8857f175d0a1171e81c2ef30 54f769c8dbf845c28ecfc2fe698513b5 @@ -19196,16 +21469,21 @@ 550696e0acf1af54b6502a560daa4a42 55085a461bf9638e3fe59ac48e7608d1 550b056ce5e54c0fd35a9b6d00f65b1a +550b8762de1025511182444d4f87e300 550bb34fbf8ea5dfd4ebadf10fc1e666 550c595fd38fb524cbef935a12bf34fb +550cc5f829155f9e339bab9b53a0b5ef 550f09f46f3932fc3a5f478200f02b76 550fd76ed53908f848c4b05d657fa3bf 5512fa9f21719b21129f8ec530429ad8 +55132cfc6524237c0532c7f2cf46ed4e 551409600861579fed6b245cb2a2de26 55148daac43741781d44512076c81609 55161f92230fe35a1fef2ea5818bd522 55163254f81279ba32a6a8b82630fa1f +551bcc3136baa00872fe29d6687256e4 551d734abb9b0c55e548ad99c363f60a +551ec836b6186e4c13dac90ee7134cf5 551fe418e18b9d4cbeaae8f402fa15ba 5522460f5d8b0fcfee8f9ffb4bced5df 552272f639af284cf98dd9d6067887a0 @@ -19216,6 +21494,7 @@ 5525ae0e2ddd50577e476cfb56e58e16 55298002034147384898803d44139df6 552a4ecee8658a2c548e96b41b57d30c +552cf0a1c9341dfc20db07d2c2be9620 552efec0fd40847a7059b57d350fb162 552f1c4e671006ea7f97f8db6de54263 552f29b250be78875de2b67866378976 @@ -19228,6 +21507,7 @@ 5533752db20533cdbc60a663989a6cc3 5536a148271415f17e68fd757422a3c1 55385bfbfd41d60a9449047b46de8619 +553890dee0d000132868e13c586e6c63 553940fa525cdddf1af5dcfcdf312c06 553983e0bb00b75831c75c000730fd8c 553ae61897173290704277da61bd9e90 @@ -19269,6 +21549,7 @@ 55669e3db0aa117a6a5a5e7c525d45f5 55670d9abbe69a29dc47d0e647f0b05f 556783a42344c89f0f395f7cc5a7d31a +55679576aba7b1bbc01b199d7ad443ff 55684c8932717d7bfe6047bbd8b7ebf9 556aa2299955ec406478a0813a388e88 556b41826ff1d56e432c798ec8abd7d4 @@ -19278,12 +21559,15 @@ 557071e649f7b258a41aaa00eedfe2d9 5570e7486b49d01b516afa1adc9c4914 557108dee102e1bc4719695cda87f439 +5572362185774c8d51babf6da8c1728c 557312fde769b8516ff78caa80b873c0 5573762077ad9f4e29acad78158f8671 55738694323e7c3996af9ac33b70ab40 557692d35ef6c754c655e38330335cde 5576af1bc9637029b6bdd290c021520f 5576c8f528d02b4e7971ac22ffb332b9 +5577cc3bcd07f709a14d15ff36abc2a7 +5577ef1f5588944e36f0d22e0dd8da3e 55794c280d581a45abb33854ec03108e 557a8b79fd6b6338ff2f6e11bebdf573 557a93bdd379f3dcbfb068910be2ccc0 @@ -19297,8 +21581,10 @@ 5580619205d558d1fe7efda62da255e4 558188b8e811b04f1f94929fa8deda87 55818fd2d2a57f1009a145846d614927 +5584f6acd28ea26b95d88f8b3b588b1d 55867393b81d9ba98867defe458291c6 558882a5903fe631f1cdb3d4557a38f9 +55889170cff827a3b9ef1536ce09dc1f 558ac6c5a0de70867a690a722f25539a 558ae579e476de0dc2de7a806d2db4be 558b039c15ac46443222315a8800d279 @@ -19311,6 +21597,7 @@ 5592b01631f75138c5f18880493d5334 55941d36f12a52458c0c671de36aceeb 5594beb08feff0edc12f8a4bb4281c44 +55950b7d40574b018bca47f5d6fd6955 55962e1c8432d1fd57baf041a499a011 559643e40013bc35a5d8ae94e4da220d 5596e627d251a4ee59b9989a98c500fd @@ -19323,17 +21610,20 @@ 559b839f172f1af414e3b629ce9750c2 559b84bafdc4c0965fad305142119a6c 559ccb30f0d466b5d731462c73709f99 +559e53d61638fe48b1c02598378cb7c9 55a2fbbffa51b99c5e014e7a776e2d56 55a397755b61185e7343e0bfeb4e73bd 55a3bbd2e86f2ceaab95290d5581fc6e 55a4730049260cd33872ce0130e880d1 55a65284de71a9fdd38a933da52d82a4 55a66d2de3b6f4784bce57c5fd1c5931 +55a6da8a1950a63c1e55d3a40a1c483e 55a8391e2e357dc68b83304a2a72abc2 55a85153a36ff417b0b93e358d85ef33 55a96734f6489b41bd27fec987e01b96 55a983fd353ca76780236200ec9639a6 55ac83de7e84c04aa8ef0f76e9bd2c36 +55ad8a00a0d0bf5fae8a4d80ba5646ff 55ae307912f3081c7ef4fd50eb43ce0b 55ae68079b3c32473d63236fba7498b7 55af3a91152163bd2c574d99a17888e7 @@ -19341,6 +21631,7 @@ 55b0f35cf18302dd3e2445c600f5360b 55b1b3b89327c2c4b4edfaa7176a5a2c 55b231f137bdfe764c30e480f12c60f9 +55b34128eded0794755de1b3be19b92f 55b53bf6afd2ca1660302916a321b8e4 55b56c53cef94d700f3a25f98cc45188 55b69ca2e426fac5ebec7fac289f9536 @@ -19355,6 +21646,7 @@ 55bc46f70cb4aa303c12196b128285a4 55bd1fcc901a27674a747c26a802e525 55be50f2e27f4a5b208bbec173fb2ebc +55becde518438620deaf894b003c3932 55bf785c7a4f965f02a4f1c545b99778 55c10db1f5acf720604da2e75c108232 55c1760615078aa336541183c35b98cc @@ -19386,17 +21678,21 @@ 55da13977b34500d72b81fb43de25dbe 55dd33bc7bd3729f22af3fe72ef4074b 55de4872b2e2456b0678fc884b88dcd5 +55df087679aefb35cd0dea3e84f4b788 55dff4a086ed49d5622c2bc3e16ef9d9 55e06199a0ae86ea50256b2b5c6719e0 55e191ac536a5097a9d257634b393327 55e25ccc7300db7dbdba5272322d02bd 55e33da09a07207f4a9acb46d1e27ddb +55e341d67497e263d99b784c7f1567b9 55e36f61f1d967f595c355630079ca43 55e63df04cec0b854e06249f1e059be6 +55e7faa09ccb4f2ea19c66e703dca232 55e9c3ba5578404f43d5030cc3d10601 55ed517a2b39f80a7b1ab398e1a8537d 55efa3da7182f285fffa71f66f09d215 55efa97004f99776f51d66fbecd72a2d +55efc0a0e239226afa8076b4b8897da0 55f067c23ce89dfcbdfb53fd9fa71b61 55f0d6a33a5727d00e8ccb6a05430143 55f1cf1513e1d7c4527273b6f892dcb6 @@ -19404,12 +21700,14 @@ 55f29408aa3485c0700f160a9ae01b12 55f3d0f6362c80ccbc77bcf109116bf5 55f402fec978d6496fcbbb3cc3b37be0 +55f46b87d6bb17879a97963d32643950 55f4cbf5ea025e7bf158479ef7a1e570 55f53d5a8e1fb0292911a9ffeb56a02f 55f70b4bf59c8115302d3a895b2de462 55f9565ed0b894023ffd7df5199ba8d4 55fa00f2a612d179f85c98bb11c409d7 55fa4791fbf4bc24e88d5ac77187d301 +55fb30292bf27472e425f276ec8f0ee4 55fb4d445dbf22a66c6e2cc1c6cc990a 55fe2120dcdb2d3596f79037efaca4b6 5600637e1fbef5f9e278dc7b6185bbdc @@ -19426,6 +21724,7 @@ 56143bbdb7b0c937529c54d7bb0a2bc8 56168994f23e6078eb51c6249cf492e1 5616d0de82f76721c9f482cf009fba5b +561b166ea28ff22179ce8a0276b9100e 561dc1abc10d0fb7eadefb34fe5df995 561e3930d3018b618c041c50750b2372 561fae812fc4e38819f32b41eea4053c @@ -19433,6 +21732,7 @@ 5622ec80fcfae0b8b5ed26c81d30716b 5623b235201448f5f716d355a2e8f0c0 5625f24a65be274599546d7bb03fd73b +5626d97cf5f3246ff488909a9c83835b 562951911c1d54a96bc5d5bedf76dca4 56296467d281595782b4fda4add570cb 562ab80b49f2b179001a3cb6454e8aba @@ -19440,12 +21740,14 @@ 562c43db3c64974d28d8466f8f7d9bc6 562c7815dd276901f7188239320494f2 562dc072dcda6769007341e69707e056 +562eaf2f7ccd2053665e539fe2b396e9 562f38b0aa672a4d876fe333ae87db6b 5630af588c6e460a0dcbc6cebbb9ff48 5630b716a548e75c59a3dd0c2910851a 5630e3af3dfb9c3e691da520a16198ae 5631840a3e1edb16b049beca22a418f4 56318903977ef8fe79aa0f6fec28abd3 +56325ad0d807df6ece80e3585be780fc 56339cca27c98e177b810670d056b92b 563590646a85a011c2749678baffbf21 563708fbc3e7d683b890532d6a2d9644 @@ -19470,18 +21772,24 @@ 5643b9056491392e3fffc45db5555b86 56444d3bed2b98cd612358fccbd94dd9 56448db25ac077d75c32908a30edb4db +5644afc67a252a67f132b4dab0609aee 5646f6c99efcab909707de471eec4428 5646fb25fa4540f2579785856fb0c93f 5647e8746de4d9141a0774664441d63d 5649575a2fdbb34e3400cb28c01fb7d6 +564a74d0067ac62aec7ccf464925c57d 564df56f7b38b93010ac2b3709490724 +564f06540fc5e5d11323bc084b202c11 +565017f68c4e3cc0fc89ff8eb1bc7b6e 5650607c838795bad6575a7d0bd141c6 56524a236eb89f95e9f1c41f970006d7 +5652d8ada68bf0276dcd039029a642bc 56563c75785832e2d925ef14ced10ad5 56566ef04debca10d2d4e59cb4b73219 56574d8d68634342ca257e097c6de08e 56588093a6b112cffe162f155bf33be2 5658a8971697f599c78941d430631960 +56598f503598ddb6acbd2db2d8d3fa77 5659e33538795b8c827ebcfbf2407f17 565a67126581cbc0448b4944af586336 565ab7ebc363f9237cd2dc15dfa89ecf @@ -19496,6 +21804,7 @@ 566b597124e68a1a9b6ae4ce7f646669 566b78e458caed1b5af78bae39fa9534 566d8b8a093b3186432f3fed0fd39a8e +56701b7d60288d17d016bf4742c6b0fb 567122aed9e62f9ba809b8d03148a0e9 5671a78d913d43e638f73d1ab9e44323 56723e0a30401a1940c68b4822fcd56e @@ -19514,6 +21823,7 @@ 567dae027709c9adef8bbed175c6822d 567ee06745e48a82a85981fe14d9163f 567f3641d12489904051a6e6c7b87056 +567f42ff7c2568914e579722181cc727 567fa1b91d9edcb8892e8fc3f4d4463d 5681f51db0a21d5fb749c61111e31baf 568375788543615da622637a2a1b1580 @@ -19521,8 +21831,10 @@ 5684e0a9db320f14367b45fc38e3b651 56876a828d7258c7c47b466d7fbde78d 5687e75fcddc3a7fedfe0bda4b59a1ea +56885162d31bcfcad9f371a59944d03b 5688632a2c28bca84bf37ab6e5fec41b 56890bf613ea8090adf8a9c39a8a6c5f +568a002fc6967b4f5f4bda5531d76ed5 568c48195e7b26e13a5abe2e48fc9448 568cce51bf2252d3ad5143ef49b2547c 568dd82d6ef796b4aed735b628258204 @@ -19530,8 +21842,10 @@ 5690907213ddc547b2da106b09e40d63 5690be8fb3e96498afa993bdb2900a8d 56926c181985900917e993e63df85f6c +5694a52943e9dc8a476a6e0e3c950f62 5694d6bccd557e42e0046112704acfcb 5695ffd8ab28bedd247c7378a88b9abc +56968447d7aa0c6c30291fcf71a4b391 56973ffba2c04857419cd5e5751094c0 569840bf00f2e8f6c5b6fa0a35fd8692 569b613e862f2cd2f76ea62ed4997207 @@ -19555,6 +21869,7 @@ 56ad05df55603bd474bb18a9563dfe20 56ad333a506d4bc941df7dfcee8531cb 56ad4eb8db1e1cb7d44b083ad6b8be27 +56ae6c8184ab8e2772952a7850f17e69 56b0f256fb49cae69f35f0158739b20c 56b1e66217f5480a74be912ca64a75d9 56b2a48cd438051e224405cb48723582 @@ -19567,6 +21882,7 @@ 56b758b5d6d7450d1ca266ea76274cd0 56bf5c7a811545f2045411596208e7c6 56c132a13f14c75e9fe74d1a2d484961 +56c391f65789699337bdd613de01bd23 56c63589f332bec1ee6126dcffdf8d2e 56c6419f2a076f29577bd5a8ae49dd13 56c9b027defcba1c09f23269a859463b @@ -19575,9 +21891,11 @@ 56cbf072da6e9436470f727dddc9dcb0 56ccba3846e59e04610b00d221315ce8 56ccfc8e0539103c822b0da538d8af02 +56cdba232afdc48fca72296885597a73 56cded6b5fd03ba15fcbdb687f0fb2bd 56ce52bec9a65541b1ded8749f2cf275 56cf954882586fd0a2183a6e4ea76675 +56d0051b725e41366280ab49a5f7b772 56d01cebd1e39794740b6b0ad10574c5 56d0d39f525f2a0eebede4575ee0dbed 56d1a8c9659dd7f31554bbea180a7291 @@ -19604,6 +21922,8 @@ 56e767e74ea699523fc603454ee5b299 56e80310bc9beef1af9be7fe68173a76 56e903d9c8bd78d7f67527256187d85e +56eadc0037265de2ab63bbe3b9fd8618 +56ebb8088b4f4f22d5db74633d29d014 56eca39b890617dc9f71f80c899bc9b6 56ecf96a051177ae8fcb8eaea6018e02 56ed7daa1b6a0bf8b21a700bf0f864a3 @@ -19616,6 +21936,7 @@ 56f485b049d040a9b197a28dd43b7023 56f4d6466397d94b156e2420e0097cec 56f50fb7693147d0de0492da385e1f25 +56f7005b40bb2fedd4cc81417bcc0761 56f7103325c186b673c92d5faa3549b1 56f8626e4de38ae29491259b1bdf1453 56f92cd8b93d7fe89ce65e9c19d00a37 @@ -19629,9 +21950,11 @@ 56fd01b77533f152db60472c97ed2ac8 56fd2a06b14a1d324af7650a0549c6d9 56fece784d09a1dca5410e01ba18a71e +56ff2b086420e4e2e5100e4c6580053a 56ffa3d20aa1abc277f07fed624d2f0b 5700a851784f589a2d785aa32f458c62 570133b1093eb4aac04205e96178f853 +57018cee7a1e7553a97598101dd6fb36 5702d6a366c01956e52da0001e1181e7 5704ae629c66e1c546e18d370052d975 57050c5d926347b7fc7fcf9b897926f9 @@ -19642,11 +21965,14 @@ 570a810adf599ca3c6bf3aeb09379773 570aadd9a949310b3556a66c7942694e 570ae3c5a035eeff2b0eaf50f01fba8e +570c32a62e71f3cc3a6feae773aca013 570da4aa96052e51c7c30af5161d556f 570e3c3a363bbb6f116b4591b120cd83 +570e71604ade7dcbdb339f3441cbca29 570f5a884b1724477dfa6ca5c47b0bc9 571134872562da71c4e8ae7161713102 5713b037ffd4a685778cbdd88bff886c +5713ec245cb142b24b159ba82462e996 5713f94dc6201bca0f552bd2c167001b 57180e688bb7f9f118be3a5eaf15170c 5719359b01011e2a42d03d35c16022ff @@ -19664,6 +21990,7 @@ 57207d0e4513d0d17a4a960820579df8 5720d25b130b56f849c2c74886eb87c6 5720f9f1df41216c7d9112490acac863 +572121523d524d4d29f22ec060c944ed 57212b91118be36ed7a5f0a795a27dd0 5722396e37c11dcdf054bca5e3edcbf1 57251900fd828915743b5dff6b15bf59 @@ -19688,12 +22015,14 @@ 573787fb3967c9515f1736f6c132162f 5737fd4961dced4858e921b0528ba0d5 573919c232c2f803f870b0b7cd7b4eee +573a6933548edc695361aa6bcac2e4f0 573a81fcb9c39e9a752d4e2edd0858a6 573c34ec113416776676b34958938490 573ddb89f6363cce4530997a5af56a8d 573e54d7ca6efaedda1bd377a05d38b0 573ecaf13360bc6f5b32554d0c279b75 573f37de7614d2496405c51348d6043e +57401906743550f3412658a257ad2865 5740e6280339a22fdb90b38f748a33e4 57428e3dc5847aa523dc8f1e826dbdea 5742cf7e0599edf7c90acaa7dae547ff @@ -19710,16 +22039,21 @@ 574d258ae4e5d8a45298f3f8e797194d 574eb7ca78defa3f0acd739a659a6d6f 574f93707d81b89d3706c13afd9ec714 +5751d5a6faa9757d89f13ece96dc5fe7 5751dec506f7c66df4bdee121b04f7f8 5752ab43e81015b545b4645e382a4b98 5752ee63cb0815a50e386bf7fe8a22ae 5755d5eb2af99f46376aa0260d101164 575669a50038c0bf463c726e26e177f7 +5756cf365059169b48fe46f8ffaa21be +5758eee4b9776a440fba35ab783c268e 57592b27f82734105fdc292d38e9b9d7 575aade1771c3ddb8391cc85111fea27 575b219efcf2c7f98b6b691910da93db 575baab9ff00a5ee9f0ca600d28c5318 +575bf7298dcb8d3b80f8a3387db39cf4 575cc60adfd1d3aaed320da0a52f3256 +575e626756dbd959c120d3797b663483 575efbed7c91bf5048ff1e05297a1b8c 575f475aa47715cfb7f498742a3c494d 5760271b6b83a25a55a82cda6fbb19ba @@ -19735,6 +22069,8 @@ 576694413c0f844098c7aa56fa2b08fc 57669f661e536a3a6a6508b352c18b50 57689c62583fae6502eb22f73ab4f925 +5768ea9ccfbefef9636be90ecff13655 +5768f8301549de48186ecf8c1ba6a188 57695e7f2e10de4ce096838b3d0b0825 576bec4b192418612964b85c445b56b5 576cdd2beb67060f2785906257c138c6 @@ -19748,16 +22084,21 @@ 5772ba065411a0aca59ac1eed2b25423 5772fa61779210e1ddba56a1b1119a64 5773c9c96f2c8a5a288732278eef271d +577427c48541dca36931b1f339863c9a +577445753d71aadeff9cbd4b1a8ff722 577584137361687ce48ea7f4eca664f3 577604999d3d91bcecb40ffd2e613cd6 577a40648ecef340878b5b00840de4f7 577a47ca34f563b87c31c30c9448a957 +577b86ae1021893ead02db163cf26eb2 577be4e9647b3f605448213587b0d763 577cf208b191769c104b764da9b88f9c 577e667b1e3611dc4ca4fba9abe062b7 577f48c1eb50594dcee98b33de21bc08 578021f989e436ee67f0a1ddd96083f7 +578091d5b19c9644cd0c051d03a27aba 5781364f52150bcd2551491d26586690 +57830961abfa5db6fc5406467f4f3c2d 5783657df1917d5f2a51e00dad9c2989 5784c20d0cadba7e1c9e126b1d7806e4 578566fe0005c67996574611067c416b @@ -19765,6 +22106,7 @@ 578754dfd03439b4362c2b9c798d981e 578848de1239132c4efb86731e96f2af 57893055886fb75715915646d6ac1062 +57896bb5fd79d3cfbf0c03ddba08e35a 578a396ca8df731cd4a3c2ec2d52219e 578ae8645b9e858f35953555f31a868d 578c0d8184ce9f559b2975a8b6517688 @@ -19773,6 +22115,7 @@ 578d7b3c10ff9d3dd9cebb3fde8dd2df 578dade6735abda2c697bdfd04a100e8 578e1dbf2ca6184abb05ea9f9aa36c11 +57904f26946686bc2fa368812547aad2 57906a3b0d69cfc75006578282168331 579105cd72aad337285f17889d1d2962 57912c167760a755100f722e3bfe9553 @@ -19808,9 +22151,11 @@ 57a93e7cfc069d67afbd8f2316386ee1 57a95578fb1d0aee0aa4ea7c2c97c17b 57aaeffc566541a830c745af0675cfbc +57ab7f58af71a1b0a2fa0a9ae1df3a0f 57abd0a7fc79bf6d69dd50c8f492a4c7 57ac67ce167b58936e81b2c05466a1ee 57ad50720898e0bfddb33bcabc5bda77 +57ae76f4073f862502bae579ee02c161 57aeaec04791a52e532a60961f6c722e 57af877757069d75e5718f09724baa4c 57b12d77517c6a2f01cb075873fa0dd0 @@ -19825,12 +22170,14 @@ 57c16c7bd6e426d383123eae59c65d26 57c2aed647131c5d3465c749eb4bbef0 57c2bd470a1babf40868ace21b72939c +57c2e758ab7010628c2c3f3616473307 57c3810b9e6d4b7ea32ee22609c4613c 57c4df4fdc1d460b8d2b46eb3ac70a72 57c580cf7ba4c16e5316d46820189679 57c5c78b56f8021533757742ed7cec0c 57c6a2f77fd8fb73172dde201ea4b5f5 57c808154025ee4bef440ae6b8f6cc8b +57c971172c94a72e6228fd8ebb69897d 57c9d5bfcf6a84e86269a956ad0d0075 57cc8439bec971e72232cd9875b4a74d 57cde13b7f7f2e61c5b8e971dde206a7 @@ -19838,6 +22185,7 @@ 57cf324b86a7a4c295ff0ec7994d2247 57d108ce1a2a57f8ec9cae69b4c1613b 57d4ef3c65ee7ebcb90bb92b82e05824 +57d5499b53ac4d8260eb387ef38ea00b 57d7f4273c5168b1799ea7be3b741dbb 57d7ff35d29489b0799e524c688bcd89 57daf1d6bbe206b53bd8675dedae51bf @@ -19848,6 +22196,7 @@ 57ddee0ad87c0cfcf59ddbbc438f07c7 57e1c1cd7604f52a373b6ff9a6b90fa3 57e1d0d001e2a96ae72736f58736edb7 +57e1d90a35e7b2d0c90d677a5095341d 57e220fca9686d8d3bb96bae71c7bce9 57e2d36e172bf538f8b55d32b2b4353e 57e2dd62dc7432480532030223302d1e @@ -19860,21 +22209,26 @@ 57e7921420eb3b6bcf286d711e3c1f90 57e840c66990d53941af29f0ec2708ff 57e8c8898caec50a07db06cee78e3487 +57ea911733092987b73d58e405d12350 57eab63f043c605f72a1bdcf041754fe 57eafb0e50415f64ac4959e6e85a0ca9 57eb7bda8d41ff0e4dd3d5a889e2a8c3 57ebe12969ce53e64525849a05f5661c 57ec2e8a0ce9b54d4a74551312315b61 57efdc746cbd51946fb81dcf997001b2 +57f00ab877e1ffd8e681d3b67957279e 57f150b93ce92888508dfcf92e8a6ba8 57f1941bf1df87ae2f1cfe7c4091cd58 57f7f8bf5b6e316dcef12db0e89a69b4 +57f836cfdc09b95bb44e790bc6163796 57f8db61b680e01a4aa7d6a646c1032a 57f8fb7c5f4cf34ad51e9da295fb08c0 57f950dc5bfa894eee79e868b863a4ce 57fae90a01da08117e8d1160e4840492 +57fb9f75eefef5f0a863c4c907a26d68 57fc8a800cfbcf6f9d366b63754b8ef4 57fcaa0b67dd3e0972d4cf1f9bbb965c +57fcff59384a5fac36e84915c8efd94b 57fe69ca44852498b16c944ae77303a7 57ffed54104a49025a5119ae117a3880 580141369e7fa050d959d08a6d71d9fb @@ -19921,6 +22275,7 @@ 5830760d5d69ba23232ec1f3f83842f9 5830cdfa1ef57800a0b72a3ffb5befd3 583173b28cfdfe0c1af96802545cf9dc +583273a26a5b93863f818ba095e7b746 5834a95d9b15137e07cec86a5fc2be8e 58357c8c5da853a168c845628b27bb79 583628e868a6b38988eb68538eeb7c89 @@ -19946,6 +22301,7 @@ 5840a152edf4d0396195bfbd12781fa3 5840a703fd8850f2b5c9cedc530e529e 5840b59a48af3a5d911eb7953d0efc44 +5841180b7a56fb8be407afb136c69ecd 58418935eae8c34a00c2474a5a45ccab 58418ba11b58b4b13b0514f915c72acc 584319011b964242b491ff4a786e805c @@ -19956,6 +22312,7 @@ 584643528e061e2994c8027daa5201ab 58469bd539ab5c2c83d288b59164cfad 584872ea05a8450c4935c9fe9f949177 +5848bf5eaaf75e4bbbf36fc39a942230 5849da8d25943a2bfac20c862322b635 584a627bc4825712625ec240d4f5b8d5 584bcc6b3840b66e2b5d89f91b6c94be @@ -19972,6 +22329,7 @@ 585775325784f3b5765fb6d1dc9e7ca6 5859057436fd4d576e977b83babccf8f 58592f77f7b952d31dc69de853571d01 +5859b7687dbde4e797e6c2f762cd4e0b 585a6ebde15ec8ef702b3519a76dd1a5 585b3c14938928236602483cbc796a74 585b864d7c70c19c8ea52856d11f301e @@ -19988,6 +22346,7 @@ 5860c2032b3ee15264a9821bc3ae04b3 58628436070e7e78b336751476fda428 586383c2bc540b970853a8c5293e3c86 +5865fc5b2e222315431706c3f1893c46 5866a0927e3ff797286ed74181186db6 586734a012fc3a8dacfe013f32a3a1ee 58697f297f235ecf5a8521c283afab9e @@ -20005,6 +22364,7 @@ 58755e06097797b557589e714c0f8b4a 5875907102ffda7de155fff22ec028da 5875faf591aa69949ac10492f1f4de93 +58779bfe0b8e1b0070d2b2e70cf46ad3 587c81868a4dabddc0c99a616cb68abe 587d8717a6478beb7937c455aad5ef1b 587e8e09971fc29237b21f87471bc6cb @@ -20036,15 +22396,18 @@ 58959d39e21bae923e3d28dc62b447e5 5895aeb8d81c2c84044a40ee1cee60e8 5895f895653b2806cb8410697a4e5d00 +5895fd76084b0fada30b1881c23bece1 589850366fe240629eb715b9aacb830a 58990140537f6647fa694ded29ae721d 58990bdf8260154d43dd1c12f9cdae11 5899467d9879223cef91e5111f54cf61 +589a1fc428e0cb88ce5afa1d409c7387 589acde08b57ae755a478b2ae69f531e 589b634b43eb6050948ddf3e58bab06d 589d4a52a0de00aa0c0447c3087554b5 589ddb58a858ede45c8a43aec80bf3fb 58a062ca863cfc51c3f2811aacefd609 +58a08061e42e9ad8114114aebb30bd30 58a1abb92f4993f890115e3bf9fb9e2d 58a20fd1dc3ceac06806bba348d4979f 58a3f910051220d846b7d1a40587b84e @@ -20059,26 +22422,33 @@ 58aba2066c51b013d54c515fff6c20d1 58abd6bebd1b6032db37ba1c9270d703 58ac457cff0f82b7648691cbde55516b +58adb2144f85d350d37df8297a1f3380 58aea954e6d9862a59063824c9390f4e 58af679252c19a7321941eacee38a083 58af9f9025e433c4bc81ecfe70fb5ae6 +58b1c8289f32c86471cc9942cf30446d 58b1da695f53ab8d0c91337c99e18c35 58b224d16aeb4d733e98e874ffcd9f53 58b687566b4e1a1a68029a3b90aaf019 58b700513e1454a9ee475c9b6b284236 58ba26bfcd34c285d982c9dd34e0bf2a +58bb19db394d4c09dbc73553f42dc270 58bd8dc2c62c12f19e08fa7e431b92da 58c069752503a00305078bc462375ed1 58c1987afc8d5961e309c41c4f698c71 58c3296402d551e68c18fb83b3644240 +58c410382cd1577883161ba3762bb77a +58c4234f86bdabe0f5b7ab29960e08ce 58c616da2b621d77f3c1819494db68a9 58c6367fa0fa718e8bcd6b0a782642d3 58c6550bed9fa7cf3ec887dc6b6c7847 58c6e5e300d603375b990b86f242a6cd 58c8cedaa2cf007121aff2bf2188c56e 58c942f100b08136371d1be61fb8bb9c +58cac88f833ecc29f08f822fcc819096 58cc8e84522955685f52f21c4d76743f 58cdd0e3d79fbee37e3d85cf3e8dddd3 +58d13a00b7ee9ca7c892bb737cd6f96f 58d26a4d6755d1e1f5d190a48fd7058e 58d2eb47eb8c504ae72dd7896892b5a8 58d351fea425c25f308876099ba1effd @@ -20097,8 +22467,10 @@ 58e277df61c6d9be94be65e671427e5c 58e27bf1658d24a0cb83269ef73b1b88 58e349d14f86e1e3becdc7c1f682242d +58e430438d57b69e8c89dd68cb1e53bb 58e46843cd1af009ea3d2da1fa715068 58e4fd0acfa757a1913d897ca16c213e +58e7924903db8f33e9c086fd356a50fb 58e837f8133b426e98c449b441e521b0 58e87e727b7aa02d07798d271a71f317 58ec280e1c3127def18a187193dcdaaf @@ -20106,6 +22478,7 @@ 58ed844ec72a88f7806d01b152dbff5b 58ee72408e69fd5cfa0573a6ec99352f 58efc2326b54db375f84616178494302 +58f1035a7771834c7a1c8bc225a02205 58f161ae98f0365619039ce6f53ecfca 58f2229eb88dde4a6da3b36544cce0c6 58f22c534f78a68488fedfc042793c19 @@ -20126,9 +22499,11 @@ 590144663fb6ff35025fc4a9a72c39cf 5901a3181ac82b01b72710cea1d9dcc5 59021d2479732f3fac0d82fd89898b6b +59040c0999290481b8f0234c29949bbb 5904c880dacf98a709a471befb3f25c1 59062dd4d773b08fc415f09749214e79 590735bf04a5676438bf0413a387fedf +5907b70fba58d2ab4108bc6a42083935 590ad716c99a48f04db0e2c02b700388 590fa5fbf3075d14ce887d06ed81d4d0 59103ac5ecb3666bb78961de1f29b091 @@ -20146,25 +22521,36 @@ 591b5b6ab6e009003d051818b12b40d8 591b6f943d145551df3442bd2a4683f4 591c8db8640336413ff39d53601007bc +591d763ebfa12cb5462bd1a7d1c2cea1 591da8f87f4c7d021f1d4fa6ce09e4e6 591e58d99e2e8d05ceb1437eb578b601 591f0aaecb90e0517f1bc85b31d42ce3 +5920b11a60e2430eaebc52b10ff2d2b6 +5921a47883d1e82d0c630061c237bdc5 592454c6654042ab142ede526a691130 +5926267de0ad909bc90dcdc0a3f7a647 59264e8cc0616723c008cf2735b06bd0 5926f9637fb60676a7e343a2aab9f488 59296adbb25dc699acbef8b0e5e31230 59299efc3f8f7fe4d4e9db611644274b 592a22eca0a9cc480316f400416a95c2 +592aaba57fa876059c440a23203fd5a2 592ac96195c43ff4c3df31e6258cd571 592b32df1cebaf19ff39354b3efec6ae +592dc98829978a433c13d14cdc99f573 592ef1260d3105f60ffc633121674668 592f490103f2c4123af43144343294cb 592f5b84311a04a426d065e84b6a0aa1 +592fcba915e619c90e9cdc6be5846e0b +59328d41e4e8edeefcbf2534e0988ec8 59338b40a9cc7b892c6b34f17ab192d7 59338f1eadd06a4b0a67fdc4dcb17f99 59341df23ff8de4abb03eae1b632841c +593528b27e3345baa64cd7ace154e41c 59357288c79595d99df3914cdc29fb55 59369c4af06f4ac69b9b3222d620b106 +5938af03d6a177d8c0b8e73c2b7f635e +5938ef2c3f27ab4e5d0a6deac2972147 593ac696d046633e9342cb85fdae6fc6 593ad1c6b8c7ecccd6d1471d2064338c 593e0bc9254858c4b5abd1b49a672e4a @@ -20177,27 +22563,33 @@ 59453ec867f8bc07a82c1ff43505bf0f 59457be4e9c94ccca9c06de24d45d307 594814a1fede9fa722dd0674099d3997 +594a95b81f22172538d227b6dcadb4af 594ad51fe5ae3ab2c26e0c61ebbe0f5b 594b961c67e3d9960a2315e7823d6f01 594bfad776741dafc7993017ea988354 +594c0e0027c54d308c8971f02f8d60ec 594c6536107cbc9593a12f7c4377e702 594ce127db1dc5c2059652b5e837330f +594ce415f27124ace1f54be02c4026fb 594d2fa080cb24927b49029d3cbe8dac 594d58092ccd5579627365c88091b62f 594d7d9cfe6d835ae3bd0c670474179b 59530c908967f0e63b6a95875e31ec13 5953519374a39dc96499ea39f943bb10 59538327da86d9c11a2519810da04927 +5953adc4e64114bd330f62cc11dfbd42 5953c380665ca1789548b8bad020e14a 5955476d34fd9fb030e473ac47884545 59561daaaf4e7599012a8ae45bb324f1 5956826623aee5b23e0ffb9bed3c59e9 +595693011d4465dfc338c2c37e9aba02 59569bd175cf549a68a8253a2e022833 595794ed477359ffc80e689f2cc7ce08 5958450d4bae96013b49bdd596105669 5958708270e9b6aa5fd57ef48c5b7292 59599293b82e56e8308e0bc4adcb68c3 595a5b58ab8005b972b62aa472536284 +595c6c41bbbc57d70e6822957a16b885 595d9cccb4a60d8624c40bbc618d8c2a 595de3f08dcd63c3f458654ae1c77fa9 595fcbccce76471523373ed533b7ae5c @@ -20206,16 +22598,22 @@ 596280812c3c8765952a7ea5c17e5608 5963f6cacade1e2192b3f8c0779006c4 596431a846b9127f689d11910f0b0c51 +59643712bc13d9c970d714233b724370 +5964582c0dfbdb2d48c2d5b2820945bb 59645e5fb68bd1ed93dcec0406a2a77d 5964a05204d798b2149a66052b50dd55 +596714a702d2605129e6983458d16e30 +5967575f780e281eacc2e91bd1ab9867 5968b2f1f6d4b3406997b7f7e79240fc 596a244d85b83386a2462fbcc7ede21b 596abc1123523f570a3ff80a6919ed7b 596be6175cbc554aa579e421503e1d1c +596d1658aabe1ee511f6b1eb6fa88f56 596d26aee759bccb05a2a1e264303011 596dd3778f753bb0187b871beb6cecd5 596e43ae063470fc7e6efa2703ffaa6d 596f8b6e4bb87f7f1d1b93dcacc480ef +596f96a96441673f35cbbd1038ae77de 5973910eef764dd80d57ab4f11f0c838 5974da82e14f213615bcc33a1a36323f 5975fee5c7b38c81efb5d7f1facb50c9 @@ -20234,9 +22632,11 @@ 598bfb6d3fbb4e59a3f60717296e82c5 598c0b9baca1403b44e7dbb26f008178 598c1d38d1a6dd68c5230ed6fdc1e35b +598cd47970e29c4020e189a79c7f9494 598d94c4bc18dae1ac73bd05eea52fee 598de494587d087dc323d36ccea41620 598ef88efb7ff7694350b703fdd3a671 +598efa4c79681d5f9fa3c16efefb1e1c 59903fc455986aa8d2ff9b854c5f88e9 59911ca7ba509119c85eb0ff6435576b 599460bbf98cc0e3d5b5bb3c12fbe9fb @@ -20249,12 +22649,14 @@ 599b76545d5f77f36d377f029b94db2e 599b7690185e8fca6805236a428e73b6 599d03ee5dc18dd256a57bb8737133a0 +599e4cd5e637a512856d83b162930917 599f1ab520f921d45563ca41d35aac73 599f3e2b59db1fa9be48eeac55f0a6a5 599ff3d0b99308a8746aeb7e9711440c 59a19d6b8ee04924c3b3c58db65e8b1f 59a200ff8fada22d299dad69657e8691 59a247e217298c6e177bb01d20b68b14 +59a2745ab6b7ce5d862a32967eadaa4b 59a34de450e4fd6808d6a50eadc9f526 59a40940d13f68d4334b3bcb12c7fe86 59a4858c6ff44f02b7fa9b2871f051ac @@ -20264,6 +22666,7 @@ 59aa97f370b4ef448c57bc6ba9fda2e9 59abcaa2ea49c165c5d7581290b15539 59ac2e8ec80629e246dde99441ba729b +59af669eb22610ee725af24d82b654b2 59afe335fbd81866d1e075c60d961952 59b18e937658ce63b4102f0308582b2a 59b290b97a89ffd7f9762c81e5e45d08 @@ -20274,9 +22677,11 @@ 59b55ac0a22872184eaf52f5a639ebe4 59b6817b5374bc71d557ed9808b68c26 59b879d2fda52d9781bbd53ba101f2fb +59b8cd3e50f5862be05e698d9ce37e42 59b9344c7cf7ea07cc210b066a9377ea 59b9c12d78d8043c835bf5f117fbcd86 59ba98102a07f58dba7e2690a0677301 +59bb9f7edeb576e7aef4c2fdfe5aee83 59bdaa43a1972e9512bf6bf2a4e49bb4 59be63cd107c4d6b4b06a8cc24a5b653 59be6aef751b4a7975059e073596465b @@ -20287,12 +22692,14 @@ 59c23767a7501b08a14c6a85c1cc2468 59c2a5534791865d4820ba165727d666 59c30a1a7c1527977a47d5b80ab892d2 +59c45266943061da4babfdde75f07a8b 59c4be64af960d08a0f64b0acfa227a2 59c5c1a73d1982c6c51e069244869c5f 59c7f97b5865f9c9fc9f29b122794205 59c80074f1deb1463e7333516aea7627 59c81aaa939266c819d7209800fb9a9e 59c926a81f91dff6e41ce7d9225fa1ab +59c942b3eab1d8569afe5aadaf81c3c8 59ca97ae3d4c1b6d8b10fd68d2888086 59cbf9f3e837a6bef5874447f12e9951 59ccecc9cb0c34218188276010105dc8 @@ -20320,6 +22727,7 @@ 59e9b7d39828f59a093dbc7efa2c10d9 59ea3933bb57f3b03f42a26182a1906b 59ea8446fd350ea90c920a782af10d8e +59ecafb15a58d9638d425b53ab946bc0 59ecdd36ee9f8be3d41cf10ef5cb1340 59eced118b6ab5221f17cf9794263eaf 59eed33d685fe1a5b8cde844c3e9718f @@ -20337,6 +22745,7 @@ 59fa844e3d8e2a73f5f71fcb9509ed76 59fa94c66abaa26ee258716eda7cfd6b 59fdf2349a99b3173e3051834efc563f +59fe44a91b9f7a5377aaea5e57be418c 5a02227fbf7ae628cac2448d595c3b61 5a05a8b2125998c37e37ed287e818850 5a060ca0dd29f238249440018262b251 @@ -20350,6 +22759,8 @@ 5a0e9ba7a276ca39d8d92c8e19a161b3 5a0eb624f6a6ffb5d4ac571252a5277d 5a0f37394a43c8193ae883bc1c4db8f8 +5a1054cc3631da2fa9da372b5bbf21bb +5a10e5ea08e6ba55007c1d74a8765b70 5a117bb732f0242a24555157d1e0a814 5a1224dde5d38bdb2383da5a67b1fad4 5a132c29e38aa7f45c3789a991ea1e26 @@ -20371,6 +22782,8 @@ 5a24f2a9460c5c65334df610b02afed8 5a25919331e4fd58faa97fb40d41f9d8 5a265068aea6189283ef4863d9344e63 +5a265f2efb6063a23884cbf82d0e9a04 +5a2838fb1b6c22082b70dab6e86c49ac 5a29366a0a53142daf43b51ace1eda47 5a2aa906666fd1f3c7d176f8c745cd06 5a2ab2aa8f5895b465f2ef64c28ba7f6 @@ -20384,6 +22797,7 @@ 5a3199fa1d13c4320af57492b06fa7de 5a31af8d040f4e9b530fa5f77b1ba5ad 5a321e09795ddc91bad7a872dd43db2e +5a358e0149eb688858006940b7ab10f0 5a387922342857ab49eb9df37eedf7fc 5a38a7273aa895a42cd4fd3a5ee5068a 5a396a6084ac0eaa50068121c5735a08 @@ -20399,8 +22813,10 @@ 5a457e7bbb8538c6618958e837ded122 5a45c0a1b86cf86cc2a1fb6b3c0fd624 5a470623e9bfe3fa546aef6d15c415d4 +5a475068634800967bcb551dae33a23e 5a476f204c097c0916234ec39af6d624 5a489e79701bb32096c77bf3c45fe212 +5a48ac04153d9fbada7160e969be94c7 5a48bc8e49ef8671075ad0dfe944a255 5a49f8fedf56d66e5814685802fcd11d 5a4bc6bc448c8cd14e14c9dd3cecbbf8 @@ -20410,6 +22826,7 @@ 5a5279fabadd6151dfdf05d25fa734c8 5a52a40b9b7de00e7b04efb23cbceb4c 5a5727d8be17fd7c820ee29e6adb70f6 +5a585184d0ad2e2e2fbfb2a597d73506 5a58e72020ec00484714e0b55bd17a6b 5a596b9800ae71b4d24c0c669ce73c28 5a59fb517e4601e5f57a022ebd6fe184 @@ -20422,6 +22839,7 @@ 5a6108d9775cf79e2bed458e6dc831a2 5a6227f7d16e0b84efb488089dee0563 5a65357dd2143c7e7e510ea154e71a84 +5a65f506cbb2e966d41d6fd95fde6b50 5a669ce92d95b27fead0fe13733182ca 5a678e0e9740afe99b4d17c435f2395f 5a6910ef51c12e1a25c755d7164f6b48 @@ -20440,6 +22858,7 @@ 5a79b0da4de1e3d83093c076a7d2e7a3 5a79fd0fdcb5f399a22cc500501ef08a 5a7bd9b4e432fc72a24392c3940dfae2 +5a7d261dca629760a0a0ac27edc9cb00 5a80559775a323a3b0edbf39c4f486cd 5a81796f87821a5ff0366e242521ec77 5a81b6ef8a91a52fd0f9fc717e87bb7a @@ -20465,12 +22884,14 @@ 5a98c3c93c2b2abd8ecdd3d91880ddfe 5a98c5b1b5446cfc2d1f94a6b606e382 5a99c6323421c25db72b2f73567759b6 +5a9af17f2dbd8b9644b77fd37ff5f829 5a9c6c221674a2b7d1cbfc0a521ceb54 5a9ceb0ea2e9afbdb7dea5b88cdea692 5a9d4a7bde49cfdba9a83402d8012c97 5a9e642b1b4680768033c55ffcea120b 5a9e7e61a19373952768ffa0821e81d9 5a9e8cdb98194f8aa10e91cac1a5f788 +5a9fb3a71e229f7aa43c214fe29b5eab 5aa0d3499b17a8a40075b9b8e0c17724 5aa20992bb32b706dc4f3909552912b9 5aa997d955f75b95fb3fac37ade64b13 @@ -20479,6 +22900,7 @@ 5aacfc76e53c0c7e753bce2b83f0ce8f 5aad85cac3ba5339a30c90b8fc1b2cad 5aaf764c9f31025ed1b9d69d7ce33706 +5ab0ebc8cd431f529c081266afa8dc69 5ab12db9e525075796e2bafeabad6160 5ab4fea2643c931374379554a678f2e5 5ab6ae5d4cc60686800d81d9c10218f4 @@ -20486,6 +22908,7 @@ 5ab8714342860b0d4a0e55ebb3274052 5abadaebf45811fd742af400ce5636b1 5abc26380c25af18127b2a23871c9879 +5abdc3b51ad739e6fcf28a5fedc3508f 5abe6b62722811278763ab520f7dd688 5abf30b31f6e4fce4108a831322d3527 5abf8d0e811b1e021acd6e92f6a9960b @@ -20524,12 +22947,16 @@ 5adab1ce05350e145619b457a1efe50d 5adcc3926d8ea6609fcf437e7800a89f 5adf41c9e25fc7edfef0a152f1210b94 +5ae0af0b75fecc6a2a8d9559f6e71c70 +5ae2812cf2ce9e1c0345e13ec32b015a 5ae51114fd114027f737305349b97b9e +5ae587c8a6b42ff40afe402811b66482 5ae896524de3dffc76dec23ce6e51f74 5aeaa2e489fa08bbe952dd61b761825e 5aeae1afeef69df0eef489866e60c0f9 5aeafb8887b9aa7ec0c8079234182fcc 5aeb86cb61f6b90f08c0fe1a1ad2038b +5aed5c2ce4293c6ca7c814220120984b 5aef327bd6f2664c8d2ecf81b44047fc 5af135f48232eb30e2d50cce60c56961 5af1e5bc2091b8d85f9a30285a03ce1a @@ -20550,9 +22977,11 @@ 5afbc37da9d64799ead81911b3589144 5afe28ea6c109013851872bc1ef52d3e 5afec2c8cf667571051a0839a6c0a855 +5aff272437b85ee65ee88231f37e2cf9 5b000e964f44acbc0c7b1e82712cd3c1 5b00120a1720204945ef509824e9f38b 5b01b7efb343db05992c95f088c25e9a +5b01dfa23f066026f2311b41e745608a 5b037b1c4e0ad2952246c2294093575f 5b03a785a0d999136047ef3dda9f3b26 5b03d4dd0bfb08656e94241cdb28a7d2 @@ -20578,12 +23007,14 @@ 5b22dec73046aa089b23727b6dcb374d 5b22fffeeb2c1d8505bd904608413ff0 5b23ad95095d92e80b1ce1d09a14fedc +5b241cc78316bca37249d901ad603521 5b2583e4f7ccb7a4e4387d83f1ac537b 5b259863bcbfe0e008f753c788d71467 5b25e1541dc06d480ae64901a66d2b6e 5b263f24a60cdf57dd1b3ab4a8cf34df 5b26b309dd1ab700ff0c6899c9b0dc57 5b27500ffd008d7d98b2943c2a8a11a3 +5b28b04a5326265c57a1676731535b0c 5b2acfff7cf531598ca1f37d4b0a3808 5b2b0af5f7539c133089f60855570e57 5b2c1cc770c6a14150cd0cb86e80c362 @@ -20596,19 +23027,25 @@ 5b328c3fc42e14204c9db754d18105fc 5b3317f82ecafb049bb7cdf13bb63d39 5b3449b95d3f74564097002636524067 +5b35d9114424d9d2ecf76850b3c5c6e7 5b36a778abfb9ca43c7366c3c8333ea3 5b36c6673013ce1009db14b138d5511e 5b36f6c34d05f8904ed34b13820bc705 +5b372014440b184993a949bea1a15e2a 5b385fecbefc68e35acf74faa924ab26 5b3913d0331c7a2aae6822ec2ae6d4e8 5b39fdb609218d9e51135bc651fe49e6 +5b3a750011086a37f3c6a12a8a747883 5b3af12e0645d61b9e5807ff9c228449 5b3bc098ad76863a6f4072ad8f3e5032 5b3fc65ec6dd8c3ef1c9c89715de1726 +5b3fe1cf17e5ef02ec67224a39723cd9 5b406204151ae8e9bee5f728790e84f7 5b453945de590ec89acc7639e651d59a 5b49179446f7cef473d1a1a0cfe3e5fd 5b4a97e352cc9c0b15b03f3500d1e00d +5b4c1fc316673653d5292b024320389d +5b4cd105ca80d6a5479ab4239b84bce2 5b4d0185f2e9b5d2b0c88c52bcf903e4 5b4f1a919c6598b2b2c31ee662707bef 5b5029ea3bf1522bbf55004f0d532b7a @@ -20622,8 +23059,10 @@ 5b57b3af1dcff8e250642afd0e47bb3b 5b57da648504c773ae72423893cd4433 5b5802117445cc3855ac25d5ab51e243 +5b5a42d064bfed4b89a796d5a07902dd 5b5aaf51d3673caca09436af5fa29e00 5b5b50b6f7f84505e737e544f4edf52c +5b608c1b48d833c62049e0ca1a3c872e 5b62c16a07f933a04b9a738eade5588e 5b6449f7a8529096685bbb42e4db1308 5b64918fa45d3bee24f203e49401e857 @@ -20639,6 +23078,7 @@ 5b6a661f5b8473f91ae68c52680210f4 5b6afafffb1f1ce0823fdd043fcd5ce5 5b6b9939d16168d10bd4d1c45954c497 +5b6be47e0a401749bacde31c97151dfc 5b6e7faea95ce3b97339db4681f6112a 5b708f5f515d09324219a38aeeedc57a 5b736a7e66f433d7406d113fa0ff3fca @@ -20671,9 +23111,11 @@ 5b93ecaafeee673452e9c91b4b865b72 5b9444091a4dc7bd1c94ca593b268893 5b948bf8b491c15d3e7c252425b97c8b +5b95381dc06da020470afc291cf31a37 5b954d7087042bffc5def041e59d6d44 5b956080605d9f9120e51408e067d766 5b985c508f9d48c6cbc2b4108d7c8df1 +5b986760667c0fbf889c0c0049ef0546 5b98caca62c76006d88ae6e98fb83d09 5b98ec8946fa922115e4668ceb0d2d4f 5b9b9ff424c95259ca18a6378432ab41 @@ -20706,6 +23148,7 @@ 5bb3372c2221710589fbfa71ccf4042e 5bb3bddc2bf41c57995d3c93c3113e15 5bb43f6ca7972dcc9faf65da47c1529d +5bb53cde9b6ca23bec82fb9dffa27938 5bb5670957b605823aa474707472a4a4 5bb5fec7bf7b879f63f94deed4c77d2a 5bb65c2c99fadc8a1caa67c6919b05c5 @@ -20715,6 +23158,7 @@ 5bbe4613e54405c50ee77d03a1622e40 5bbef6d433c82433db0bc56a535edcd5 5bbfc1191bfd3ccdbfbf0418ea316421 +5bc0455081f153802ba1c2378d9b4c16 5bc063af48c8d00774847154c8a6354d 5bc3a21240bbb500bba3f4f06f11cac7 5bc5581c85e7ff821a3e9b470a54ad02 @@ -20736,6 +23180,7 @@ 5bd5137f7bbb46bce568dd1b65c31203 5bd644174e56321dc7781941f7521d53 5bd9657ba0d8a972ad0c1d601efcac67 +5bd9b4f623478eb3e572eba92add853f 5bda005bab6f8fcf4a5699dd122bfecf 5bda279c9fb6a5c968c334dfb1ebdd63 5bda53827ae0b5ad827a48595789d60b @@ -20744,6 +23189,7 @@ 5bddbe55a6a7e16fb964883b7efe8e5f 5bdde126215d9a481a1961cc7a4e21a0 5bddffc0410ce6cc8c4315f557ee01f7 +5bde45b75cc2d35caedeedd53cbda0b1 5be0c0466a6dfd5169c32f04ec53b4b9 5be13ad707b62d2208ecfd3af49bf708 5be29dac39e124564326db0417999f09 @@ -20760,11 +23206,13 @@ 5bedd8f636796418c8382376dabd9737 5bedf91d84e6e73e0aca3e939473392e 5bee6c53ee159292ba415db8082b09de +5bef2170c568962fa8bf8151640ea4ea 5befc47ee7c45446823a7b3bf7b18133 5bf08e44a179f0ff3ba1f972a5efadbd 5bf0a8b3e2d1538763ccafcf6f3a555b 5bf2e86a047e0e56586f6194101de2b1 5bf33bd5e5cc6e701b592eae65b5ce4f +5bf3a9d98363f561221d083cb55b1fa5 5bf3e6c23d866e54ca10cffbc1067adc 5bf432e5e36e1618a35357b8fd090ce3 5bf5c4df8dc9ff4e4e14d005134b0082 @@ -20772,12 +23220,15 @@ 5bf65c90f911cd28d7542e1235fe9fbf 5bf77209a804fc105b7366ddc708cde5 5bf7ea5a4c4a2ee5a3a2edc9b0e0b0de +5bf8959b5137c341c5cb2cf8d0f0f46b 5bf9efb02f4e17cc36ada7b2a9648d6d 5bfafc079992df00a7a33062283dfa26 5bfb21a1fadc4164e75ba6b55c7c0e6f 5bfc99ff3124c4bec3c55a6d4bc7c8cb 5bfd1f927da0013d83521c3acd0a1a63 +5bfd94c3272bd032d35f0bfe70599b79 5bfe1d454ed14b3d3793a3c13eee7072 +5bfe5c7f71f2e7cb56dee24d42dfd2fd 5bfe7045ba325993590663f6ed166f22 5bffdada48eed466dca7abb3c7ed15ed 5bffefa1af06d89b52e6fe127c711600 @@ -20794,6 +23245,7 @@ 5c09a6f67271275ebe0df6d1962bbead 5c09f1c614b0cf95ac7b3589ae36b137 5c0acb8a6cd92af6ed5b4d6d6e04f498 +5c0aee944e375b3a0a49008bcb9698c2 5c0bf895bfb5f7e64bcbee916005ff31 5c0c1ed2aaec6aa7393531756c56adb3 5c0c50336ba6061140dd253b74e6dba1 @@ -20809,6 +23261,7 @@ 5c1ae446734fc3e0c98989f77d9b534b 5c1b61fc81a6c1d8b18090bada20af25 5c1d7a18e4f112aed3b8e7871b2c1fa8 +5c1e8d8ec10109127511299485bdb4db 5c1f3ee41841072615ece00302ebd6f1 5c1f81b333c99f52f8427d081d6b609e 5c20bb6e12bf19b2adfad70a818c3ea4 @@ -20816,6 +23269,7 @@ 5c21d6b054d409e24d04edb0a9572deb 5c22e153b709e48cbf90e867d2bf28b6 5c23005a0db463b4ab216e1d18e36694 +5c2660d07dfe4517d400b2fc1e8b26ba 5c267d3d6e64d2987e1fea91131f12f9 5c281bc061ad14713e768b466a0c404d 5c2820a08946a28cb20d1dfd2638da48 @@ -20824,11 +23278,13 @@ 5c2a218eea875a2c4fd52f0e210dda36 5c2b8ad17799e3f7f2f0a06579ba9341 5c2bb47aa67e3eee64d136c221563562 +5c2c4ef047038e0ee66cb5d0c70dd021 5c2d7c5d857a42062ca3e86a00b30035 5c316000fb42cf709fb9824327b91989 5c337e0cd5661a410f87ab6c9bfc8f2e 5c34649eb6ba117929433f9fca1c27f3 5c349d30a593b52229e240e8251fbf54 +5c355eedc0633e17dddac8f5f7fe573b 5c35c3d30c76d8e0c999441d686340eb 5c38817fccecd29caf729f836b5b0fb3 5c39084af3d49565873b7fb50d740dd5 @@ -20846,6 +23302,7 @@ 5c4684621bca2c6cc9bb7f03d875688b 5c4825623577d9a5fad099e7c62ccab6 5c49fdd8ee0ef2136daf97423360a32b +5c4a37788abfb804a52425697a99aa30 5c4bcece70de961bdd5df2353b2ab3ad 5c4c234a35138f857c115da817c2d387 5c4d7eaa1f7699dea14bd5bc5bf84a5b @@ -20854,6 +23311,7 @@ 5c4e2f0455f2d20334f5fdbd4a0b3305 5c512d23ec47700b7b3bf26834386002 5c513d4644c8f32d1ff565c464afc25f +5c5156cc2cbd567c4609d3e4651fd6d7 5c519b363d8cd2143ef1608a18dd4c43 5c527140edea52a1b93a198186283d37 5c5281a1eca940dcb8976c8d687b32eb @@ -20862,6 +23320,7 @@ 5c55cefbdca314ca0ba6753b7fdb35e6 5c566a8f85424361718d65dde18ff9c4 5c56ac47c06673ac60181291ccc65315 +5c57490406ebc6da5bbec54c39925421 5c579c192eb3b66106b39d01f62e47d5 5c57aa039081b7b32b411cb72dd588b4 5c57baadd4e4a25f0d2dca6a87c50972 @@ -20882,6 +23341,7 @@ 5c6af21fca240d81dc5ec58c76920a1c 5c6b314e5a4a143d0638342c335826c8 5c6e89d52e01ad93f7769d717f2cb818 +5c6fc458394bb61fc399b7b395e53b7a 5c6fea1b23a9bcc01586ca28ab7f69a6 5c710387304d6f7dc5c0f295f9e345c3 5c726e4c66495beef7d1ad28ee9a2c2f @@ -20923,7 +23383,9 @@ 5c942c354905d6384c53f8757c387c4e 5c94fbb4c2156be41376fd270942b6d2 5c95572337ed235bdbe1fcd421158f52 +5c95f2a26dbeb3b02f8e168a82c4ffd2 5c964ab3727365e1a1803023753a4a75 +5c96a038492a7b88070b46e7f6ead6d7 5c97022d802c04efb0ca80d971a8b950 5c97aa61189b8b33c3959dfb3634c396 5c99402c57a1cd11e19cce64dc8d4951 @@ -20939,15 +23401,18 @@ 5ca2892ea4ae82af8600b5b91add9a2c 5ca39f3cd509d22ea05b1d4253799b4f 5ca61b05f3d12117514f58aad8ea5e1b +5ca96e79be0b185257e5253c0b544d56 5caa1540367baae9931573414e1bb524 5caa97e2b261f2d8b16ae946d0c0add3 5cab133914067ec3bab739b60442d663 +5cab172156cfd3419f155eed4d703eb3 5cab200560037e1d0f6f85b40c77fe40 5cabe9f2f31997e649a3a7f7353e0f67 5cb15b4a6a2718c90e8513bf4cb6023c 5cb22a9b004f155e4c1d59d46b96ae8b 5cb2e89953c8675b8d9e4795f8c42205 5cb384b7154f7cc579081f71c3432b90 +5cb3859fcea4cf322012663883751b64 5cb6deee192f16fd5903b64617da031c 5cb825a9b77408e56d4c9ecd3b20306d 5cb8f3e8fcfa682b75c151686914df64 @@ -20963,6 +23428,7 @@ 5cc1aaf07efe252da80a915555e14ff4 5cc38a26a15d92c1dbb453070056af2d 5cc3bf3867aac4b8a105857c941d2d42 +5cc4d5b220ee1ab5da8f78c46ba55375 5cc51ff3407569a994b7aa994feabc07 5cc55ef1edd652dc0acf4ce20087025d 5cc5f602175c872b771466d08e3dd5d9 @@ -20972,6 +23438,7 @@ 5ccbbf5c0b2d7ecb83e621079445f2b9 5ccc097d0130393b183d19b4625184a1 5ccc8710fb8e2ea263c1e4feae18fc83 +5ccd9f32fc6b767c9ad1cd9b2d585454 5cd0317cecc259d939ab282e7d8043c7 5cd1087ae06fbf75d62216529c212ce9 5cd15830de7d5c2ede110e7156de892c @@ -20982,6 +23449,7 @@ 5cd405b3f7a12e211aab69977239cea9 5cd6998bf7958e1e0a5fa10b6c604d44 5cd6f2391ce1ea08c19fc0a85ce501f0 +5cd709c39b3d6127ed16622f55d1e063 5cd78583609df734a0cff3408715d1c8 5cd7a35b147b7144fdfcdddea734fe64 5cd7a498370d0815f369fd440a21de75 @@ -20999,6 +23467,7 @@ 5cdbed5c4852c07a9f8193e1914b58b8 5cdc2b17ba433910013eb9f4dbdbb69f 5cdd4a9d741b3edd0e2b063b3a5af782 +5cdd81b3341f983726e5f8a979e0cd57 5cdebcc7034cd6277d9ea85cdbff9fa5 5ce00be4be11c656cab911a24a8d8115 5ce3b0546a81783b827281c4199443bb @@ -21029,12 +23498,15 @@ 5cf82b36a27ea758f71ac57a6c57fe03 5cf84f6ba61afb3890dd79b521265d75 5cf9d305f0367257d7e63c679b377b93 +5cfa3a626c2a1b13b76534808c723f2c 5cfb5642b8b9e455f458dd6676fa2ae5 5cfd807b2f5f8e45c80869e2ca85374b +5cfeb345ebba87c99b344243e6649d1c 5cff9b8ecab14045789d86a1fca4c5f8 5cffca50820a0cc5bddf0d058fe31a06 5d00d1faa8ee907bf533b40028910b88 5d010d5636ea5eb6d3c2e3aa34c11da5 +5d035f978b654688eceedc48d581455a 5d04bb2362fd695d134c6283e67c6f5a 5d06b50815b42d339f97fa5442981c13 5d0741d9d6c6301cc471088cae31dce4 @@ -21053,26 +23525,32 @@ 5d1388d22222dd2a74dbf77d779406d0 5d13af3bb3d10adb4b4bcd7e0ba2b076 5d17ceecadfb567c4720b072807114e1 +5d17eb41363029434ea971407d9e2a59 5d1895183e042229ba8a4ee313b6fece 5d18b362d49eb721e31636c281ca4c51 5d18bc654457e4434415e4598ff1b9ac 5d1a0f08983761f046c9cbfdf23ea284 5d1f9d7cc2155deff09275bf98735c9e +5d1fcdcbba86c252204e4b3f387f78fb 5d2053dcd78475a46490c5b278a36054 5d206661ef747052ca2a2c135e223e08 5d24c14930bc8bbb2970784225e84668 5d2577947fa92d1789c65332948a0424 5d25cfb8b37ff77ec7882a6aec62e0e1 5d26b88a6666d7eacb85ae3e391e4c09 +5d2707f08b70bd22c6c64240e18d381e +5d27debd2df15270d856fb56171c5681 5d28c33fa012334ca67ff7d7903b09fd 5d29244825c72a8fc87c69c61ec6405c 5d2976dc1cc5651d8b20e2e8c766d624 +5d2a12e985fa7923dcc1a204f24eb10b 5d2b1fa029fbe6da51a992bf24e99834 5d2ce3379d6387db336f0589aa886b86 5d2cfa97679c0faabce5a7fa934af11e 5d2d8f4f8194efd8508a6ef191fc7d40 5d2db3b1d9835bf21ccdc1663f732157 5d2f90e199e040277d36586f44ab99df +5d2fdc38625cfbe45b7086da9c23ead7 5d31311c9d7ddc7f125c9cde3e80b24f 5d319e19fc5055853721e15e7c6f683b 5d31a6761a6fcaea1a819ee59e6c1dc3 @@ -21083,6 +23561,8 @@ 5d397eccdea7440533035989f1d657be 5d39aa75dd8aaea70bb59f7c506e5a53 5d3a55c895032fc66660c4fe4f5b339d +5d3a734aa9f10196ef32e50441c0a512 +5d3acd1731553ac1b12d99a272460c85 5d3b4ba187db1d392e89e56be027776f 5d3e1caeff0e85b88a4bf99b8b75c180 5d3ee2014ff1a5b8d99c9cd19a6874a1 @@ -21107,7 +23587,9 @@ 5d52da859594f095d1a3b7e574d41e55 5d5351b57229dfce62a9c1de79c0c5a3 5d547875bc58db048b3ddd1cb62e2584 +5d561394e18a132951ea869406be1cfd 5d56331cd8dba8eec2490a6af8c17847 +5d56afdb89a936d42ef91853afaaf216 5d57182d1246066277c30dcfa51e5353 5d57b6ff1db158300cb76d897714acb3 5d595611835589651eee63268b1478d0 @@ -21121,6 +23603,7 @@ 5d5fe91ea801c04164c6dc1b01d9b3bf 5d614f53dc1d7be25e3dcd1d4d72631c 5d635e7bba585a1444f433eb85bfdccc +5d63607384b98ee2e7650fa47e27f30a 5d64e4541db6a866b43cf5224da69b01 5d6646615a9e34acec517f5d20a584b0 5d6673e25f6a64ffb8fc114149d6b05e @@ -21147,6 +23630,7 @@ 5d796eb834210414aac6b88c36bd2fe1 5d7cb7a3a3ba6d5fe06db956fa2d7398 5d7d51883011cbfde65292b0730263aa +5d80119e73e246165d52ab4439246316 5d817ce474d1bbda6228722b3a13ed51 5d82b6bcee8c087a1be1e8d7839d012c 5d8318492b4f8b82d154f0d7880e7555 @@ -21161,15 +23645,18 @@ 5d8ddbe1e03696447405f7bac76678cf 5d8fad2fe04bc7eab7667ea0e3f52824 5d90971db9b6ec2e468f1b541d852ad3 +5d91570a5c7441595fa109acabb8ad1a 5d91bc5a51a724c5e73936471dbb2bd6 5d91c5fb1024d876d4f210f80c0b82b5 5d938241558fccba61e6f31bc0baca95 5d95b5846b040279b4f200ef505b3aac 5d95b90af79cd5e4a551a3b1d38de230 5d971cffd66a038644f584da8b249105 +5d972082b7c2928342e0084e86c94532 5d974f98551a77bdfdd31c4df8317835 5d9a4d145d7b37ab32f55be991f47610 5d9a991afa12f19c92acce953e40165e +5d9ae70b402921450b703077b1e22a8c 5d9bd9867e4ce779204f69389d1bac4f 5d9be76256f01ee8f8cac90836260e99 5d9d26b2c6cb7aa4fed549a470aad2c4 @@ -21178,6 +23665,7 @@ 5d9fbda1b36a98f2fd6321882d7de764 5d9ff0f34f61faa749358f87f99cdcbe 5da05a370d719c21bbbf89857b9ca5c4 +5da151647b429f8a8d678722977b420b 5da244d6e8458aeb2ec548a8ed3edaf8 5da415cb366bc7533b91f001ff0e025c 5da45672ec37e58c10a4640c548c94d7 @@ -21195,9 +23683,11 @@ 5daec945e83f8d8aa62429eb09b7a9d6 5daecb6596bee4b194325c5a4bbb7068 5daf0fc47cc6d2c8f6c0d5403e5465e7 +5daf227a7bb257a828f58fdd1a783ff6 5daf8ce971b96b1ef5efc1acb1b9881b 5daff4100f31ac130f917816fa222719 5db031bf483598b4b66c12259eeb07cf +5db0cda0317d37046ed85eff56e4f672 5db1e0aad1ab0f47837149ecc21d8a32 5db253ab4950b9d8417140c91e79a945 5db42044ef144221095c2d18eb608bec @@ -21208,27 +23698,33 @@ 5db808c9df7c0ecb767726511cfec91f 5dba268e600e58efcaa6d0fb3fd91ba8 5dba4226dc931378bab4c4d36c8097e6 +5dba8473f2174db2b73e2ddbc1fe81dc 5dbca9e268008670355372149568eb42 5dbd86dece64a2423a392feb4083ae05 5dbdde7f5ef1904d5107bca731d016fa +5dbdeab4c3c13d97cf34e8d783142c26 5dbe0f3c52d96e0707932dca051e52b1 5dbe9a1b20945f69c4809a96d690ef12 5dc2105207dce30b39f309480f197ab5 5dc2601d839da39974a2561aff2ce37f 5dc30f318375d5a34c5032b36a8eb42b 5dc40f3266724e63b1027f2d830537ad +5dc49f0010882c8f59e06f963c597d84 +5dc6cb2f93ce55be90ab7d0f0c130d83 5dc8253d7bad7ee9e5b7944ce807cd14 5dc840e565e1713531ecb47996e8e29d 5dcc239727e56b84d8d8853e44178393 5dcdcf76d8a74391899091b7b820fda4 5dcfc3dddbaa8088cccfa9e0e7bd714d 5dd0cce4820023fe487f4129373f3740 +5dd5eb230cbfd0ccb9c4033d02516872 5dd6098b1219b049303ead391af12742 5dd702c0e749fb78ca70dc07f274323b 5dd76c78640eb81ad8b425ce0bab8b37 5dd8121ce43dbf72ea0f53654a7a9a15 5dd94e4212b6d003179f4d714ad3cc60 5ddb780489b2926332ebcc4e731679fc +5ddef45267181918cc064788ea18a068 5de019c1ff03d6b2f4800a4042735b74 5de2180724c9e93013d479a9a69391b8 5de39301b8cfe55cd1af96c868667ea4 @@ -21251,7 +23747,9 @@ 5df2a7e0e1877f13f22ea2eec880f8ff 5df49dc9a264fecf2fa6a4a78d4c69a9 5df4d6ae2ab2ab04f9024f628c25548b +5df6427b09f045dfafdf3c7c2d4d17dd 5df6475cd09335a6a6fd97552b3c2265 +5df72581bf8bcb3aa41f05fadc9e6ac1 5df8b59a7b2eb6e9f835b6bb454d30ec 5df8f660668d62d022378cf2dc7ebbba 5dfa47c6de9999c9a61d7cf9a6b96259 @@ -21259,10 +23757,14 @@ 5dfc3b7db692f86961d9fa3b1e60f16e 5dfd04639bf91236b4528a41ccf06d9b 5dfd7efbdd345098be2571c60ea45166 +5dfe48de4a0f2801c77d9bd9cc3373c5 +5dfe691c502c7809a3ce49da2ab6fdf2 5dff6456d20a4b93646916a542c06d76 5dffe29e384117c689c2b89e62cb4923 +5e0065783ecb1a825b7f44387a2f77c3 5e018df7ab9725e8601d6151269673da 5e018e6a73d14abf04d38e72a28383eb +5e02e8a5c292bdd47411f0b7a16036a3 5e0378a18bea2020fce64ce31887124a 5e04696794cfe56a6fbc3e4e8834715b 5e04ff74d2c60e13717e14dedfc4e3d6 @@ -21271,10 +23773,12 @@ 5e0953f28bc30e6385d941158853e089 5e0a7bae859838952c1878bb940b5cbf 5e0be735ea060866ce58258f091a706c +5e0c065c02306fb82b28606c774b9246 5e0c79a54cd258e9dde3d5663a3b0351 5e0ced3658ab5771828f47554752efad 5e0d70ebce5eacd2d19c75f428aa037e 5e0d82135d89d5216e7bd13ebc763902 +5e0eab3bf2d0a8d7d26f36b70ebc1af6 5e0edf1e073a67b7c1c43a8f4bc2f56d 5e11cb88810a2a595fb199fe51f99375 5e1475cd4a9a1a92bd8d3ad3f7d3ea68 @@ -21294,12 +23798,14 @@ 5e252b1206716ea0fa0eca40da6fe507 5e278216502d5828f323c7e3689e9980 5e27c57da6b690b3b1ab51b6f6888964 +5e285f9bb7283093d1cb15e1c0267875 5e29c7f6e408858d46c9c01c8ea45e44 5e2a3c9fd3cdef2a56f8a1075b4775ff 5e2b31a926985e33ff65dac9fbee45bd 5e2bb9f9ea61b9366585caaff6ca754b 5e2c9047c22bd0ff2d453990fac2db4c 5e2e3e3e97762ebb90de0f4e96938bbc +5e307358b6f7347751d9e87dbfa71a47 5e31ab98969a09f5cf838b1c5553b2ba 5e3211897c646dee049b0fcad66b3617 5e32a43cb1ae5713de2ccd2e425dc8fa @@ -21318,6 +23824,7 @@ 5e425bada922ce53ce3de8115010c9c4 5e428b5571fe2fbb764810f7ea36933f 5e428c47906f3484044c26e981e526c7 +5e42962a91bda9be324f4866ff27d4da 5e431674043943bc2dc5c91485864790 5e43257a3a6f97edfebaa83519b63af6 5e4398445684ed9c83e45d7b9b0f6621 @@ -21337,7 +23844,9 @@ 5e59b1191392e23eb228e522ca78af0c 5e59feed4a0cd70e21b380189bcfe66b 5e5b22dda333e80b8ceeeb87081df96b +5e5cf0c161b88f0ca0a716d2d831b244 5e5d35787540a0ab34d4dde3334618ee +5e5db35630d4a13d5acefdc63aa63a9f 5e6159971fc8f97654389a659e7647bf 5e62a0ec808b1d933b058b517811a859 5e6396ff9eb1883fbaa1f8ab5a672f31 @@ -21353,11 +23862,13 @@ 5e6eea65f5623ae754d430d3253ec7f5 5e711feffb7d3f0ca3249a7ab1f291f5 5e71ce876029126b2fc06b9f132ef648 +5e72b40d971ffa59020df5e946fb78bf 5e72d1b5da8f145c23b98e1e2838a4c6 5e72ead354380c51ebed0c5e650ad288 5e74b92d4f91e9ed1b3fee592cb22635 5e74f67fc8121653b6a6a801b86a49f8 5e769b0678339feee2981c0d8f32e50d +5e770a84eb155ca1ea17209cb98397a8 5e7944d6e510e7e0960fc9e4d28b3385 5e79a7eab3b2c2c654b0e420d1348991 5e7a38c5e18839be2331d11c66b6a542 @@ -21368,6 +23879,7 @@ 5e7df55bbb4f3f3be261577491f24fa4 5e7e5b392b34bad7bd61dba3f8590291 5e7ea177fcfbbfc4d4647f2ec854a4b2 +5e804cb5f2f279fee01e42e9b71f5b30 5e816789e6db69adab4e516321a718ed 5e817eef75066b182646bb512f969b95 5e81d3c3b904940d4372496a81aa9179 @@ -21382,6 +23894,7 @@ 5e8b88bcbfb24a37bd8fc5534552b152 5e8d7345618f025a78644962b0ec28bd 5e8e1d139500893bedb076d1dc01ce03 +5e9167abacfa0fa0d33a2a8fdb4ca2e5 5e91b6c8bbe53c9f34e63054c5ec5ac6 5e9256fb218780ac0eaea829ac848783 5e9333ce096a576d59809fe98c6c7bb9 @@ -21389,19 +23902,25 @@ 5e94b2d405497f422b7aef152e0d31ec 5e94c79d74a1f62db43806873904ad27 5e976d98a1bf3bc86920c51e09b4a3de +5e9802ea9279546786f2796574e1285b 5e98386e3c3e582a1a52bdf2c4ed7f7d 5e9872159973f42c3c6ca127f910483e +5e98f143f36f4e22eabc4a0177c072f9 +5e9910f83b03f4d6bf0d5d5333dc1810 5e991f221f160ef2b29f7d7cdf28d444 +5e9c016bd462018851b6658717075ccb 5e9d290815dc579485aa6eed496b241c 5e9eda907377c7bbbc4ddf252530a8a9 5ea311d64891c8828bab38edde460f53 5ea31ebd6a8abf232e6ee2def4a3c1aa +5ea3b922a92cfc5a3083387766f1d015 5ea4aab0882ee4864ec36eb4e07f2606 5ea4d480cb50d8e97db3b1eecb8109bd 5ea53e34eb494c2fc9cebf3c73b2ee7b 5ea5b4b66223bb35df11f7be844d66cb 5ea63fc6c59801f16fd5a385082d9f0e 5ea6584e1af079d8e04b09cd799df139 +5ea7ef721d1c6f9f91eaf6c3b38f29e0 5eaad75e6bb592fa1f25037a08633345 5eac7a09bbc3d4b2af84dd4172e1eb65 5ead7b232f74da6a12fd686a6c0c807a @@ -21411,6 +23930,7 @@ 5eb62a735987b29624a2f19caa1da494 5eb6cf6d48336e59f159238e7309c552 5eb7c9bfc9427471c6a0db2201351673 +5eb84b1f9671777f02759f139e3cad96 5eb873e4994dfd64f9b83abd363f3ee8 5eba6b4de99d50b2316747a258c505b7 5ebc160f6779b9666f257efb865e6979 @@ -21427,14 +23947,19 @@ 5ec52f15f955258f92d2d43a35cb2223 5ec692a163b3ea004eee06694ea2a454 5ec72f6f47ea28cfa2146305afcd2d1c +5ec7c824c308c6f441fee201d54d95a8 5ec843d67ba52f02d22281c4b7d7d311 5ec844669aa160cedd91448ca546566c +5ec85d5e17164c9813d4368d679cdf16 5eca650d9e620793be441b547a62fe5f +5ecae11af01c9838fdb29de9cbc15b24 5ecb2a7d1a99522f58ca23d7a992af9c 5ecdcb539ab5a735b300de8f42370192 5ece03dfdbbca725b2d1fe1489afbca3 5ecf308103e6e6526e599d3d1afad773 +5ecf89cb252e0e458c16c4d72932a6eb 5ed03a5c35868ec35ef79c908b731f25 +5ed0e75a6fe6af81e7d8a5a14b55e279 5ed12f1ab1bce46d4b1fe2c5606df155 5ed15c9b3342008a7e4053845e731704 5ed1b6445f7999935722cb877519bfe6 @@ -21448,17 +23973,21 @@ 5edccf52eca8033b46808e7fb898b7d9 5edd2fefde21a3164f1853e7020284e4 5edd993835c089c8913b23cc2480c211 +5ede71191bc74f2c1d02dafd2e85960f 5edfbd19bb7f1850bd6a7af61623a539 5ee0826055807879027e40c565f7e852 +5ee09c6dc8f5c59a9eb63703c9c52ff6 5ee6cb6f97474864bb9c5cd496b78df3 5ee6ee7e04645e000bda30ad53bbb408 5ee8fee9ecd07b3dc5de009b366bbdae 5ee99e54d1c190e278e3693e6db2e98c 5ee9b4c6ec2b4ccbf9080028be6f0930 5ee9e36e49049c8693525c8f0fb359a1 +5eead73a4ce9615d9559a4eab2d96d90 5eec36b769b94d5695d50a6a4665b50c 5eec5a317d809f9fbb1d4065b74286d0 5eecd8f7c3b013fdfa82c67706a151de +5eeecb3b80db1d327660c4241f942b86 5ef3b89e55fd584f11d0363975418d2d 5ef5f0355f37507dd8a9f7edebf7f59f 5ef65a4207de6cbe1be081c9b0ad6cae @@ -21471,6 +24000,7 @@ 5efb72b067d51bbbb6dc8daf3027271c 5efc19eee8e088301efadac44b1c32d9 5efc740b4cb242960c534358dd7ee6f5 +5efe9456bd1f23bfe23f9b2be1a72f8f 5efed65a95588a524432f4e80f57ac09 5eff5f75ba4bda60838d557516b99a12 5f01da24b67bf642f7804569709f67a4 @@ -21478,6 +24008,7 @@ 5f0378e17102963b37d455cc0f211b2d 5f047f82d12f21ff793e7214932324a6 5f04bfc1c1c6df3fe505ef36e022e120 +5f05d6efd883a03766ed4c5665fe4193 5f0843f3672ba3950c031845e5248922 5f0954d4e13c571366860df1fc43eea4 5f09751cecaf4754d0a6e9aa615286b8 @@ -21485,6 +24016,7 @@ 5f0b7cc97e82407be348271151f2011b 5f0c71ca3800397e26a92116e71ed9aa 5f0ca1dddcaad709e845cef806801504 +5f0d803b6c64b189bd33586248c33bc2 5f0d896da4e13bdf192bd237b7c9524f 5f0d96744cf75c55fdafbe63c8e61289 5f0e64ab34b0dfe2df63236dc9ddecc5 @@ -21496,10 +24028,13 @@ 5f142ac441b1e25a1a0580314c426a1e 5f14832d1fa1f70c46747c9dedd72d61 5f16ebef27248deff8f7b6f4b2f0e10a +5f17f7d3f1d354bd5abfec3eadf1d9d5 5f1900db8ffd1c2cbb6b4289aa4b3a7e 5f1a62d66739f19b241ae69dd5901c76 5f1c5cf375c8666a310dd962ffe65144 5f1f5d0cc416496fbfce7b2de6df810f +5f20643ebfe112708aaee28f39a28473 +5f238dfe304955f1cfa53a78584a4456 5f24cc28c624f4f2fc38e4865389c310 5f2559dcd8b54cf95ed797b26ad12788 5f2595c981efcd858e07cdd02f2f985b @@ -21513,9 +24048,13 @@ 5f2c2fb609ea40066542012879a35f46 5f2cc4b0a405a0bed9a8cca116d667fd 5f2e29815ff49057bbc0d4bb392efae3 +5f2f56b17845d283c3e9c364786ce78d 5f2fb2d05be9a0424e1772a3f740bba8 +5f3064585889193319a81511400259c4 +5f30e03cb3806f827e10c5edaf7549a8 5f33338caf1d0cb299840711477dee4c 5f33b43cb944182576245f15e7c601c8 +5f35550b60000202c9b4437a63750871 5f356b8e6749ecdde2c342ca3621742a 5f35a63c8f18d5f5b1061bbbef18485e 5f35d178c61593dbf34682496b1667ad @@ -21524,6 +24063,7 @@ 5f3a0c0f790bb629bfe6cc70439595be 5f3a21dabaec279d94d8b35a51bc4b48 5f3a9be5227fa3185c99de65d7422e77 +5f3ab245817ace11b08a06e19b4825ac 5f3b36a19ab40183129dc771c90eed10 5f3c9c2da5bffb5cb5eea3c7dda03a14 5f3d006aec739377d2f7394468aa71d0 @@ -21534,12 +24074,16 @@ 5f3f0835e92f75bcd53218007f6c0db3 5f3fdf972911f6e4d51bea83020fe472 5f4022817a5ad4d4e07a169218901cf3 +5f41747813bd658651894499ea0befb9 5f43d0b2a81c9777a942f6a797e19b3d 5f468e62f5933fcd608e4f00bf5e7978 5f472a4d5603f93d5e658345cc1383d4 5f4ba8c029f5066d663466890bf87e1f +5f4bc42fef282e6d8dd9027c6a016ce0 5f4fc57ec40df0bdbd4aae8fad7195dd 5f4fcc036c0a097fc14b137bda7fcfd9 +5f5130efe221200d46f7a392b74a6b5e +5f533f8471a2af7c95d7021f2fdcba4c 5f53892f891cb0f1c1d07fb49e2a94b2 5f548fcf483414def431da1a13b6a478 5f556a7336caeca71507f36504848672 @@ -21559,6 +24103,7 @@ 5f6883f9c057f72514cbffc4956ddb11 5f6c7fd7f5d7d1d6ed51203d452ec8e9 5f6d16e5030324c1da9ce229d13f5e5e +5f6efca5b4a3b7bf73fc3ec6322e9409 5f6feea7f4e1f912482dae7d0253d55d 5f70d4a806976ef0049b53cf739bbe2c 5f737ebc74fa734d47f9e35ca6e5fc91 @@ -21570,6 +24115,7 @@ 5f7aa973591fc55345788d7eda9665a6 5f7accc6e2623a9fb105a21fa4ddc32e 5f7b4454076f6a366694ad513ef3f3d3 +5f7be59014087a1a1cff38c8b30cb3ea 5f7c66385d9513a6f17aa2c8b05771f5 5f7e3b31e52bdccf9575e4e37c5000e7 5f81737fceeae5d41b936e3127d690d8 @@ -21580,10 +24126,14 @@ 5f83b54d0e757d43ed9c7c2865fdd906 5f86313b2e10abc3980545b82c68bff8 5f87fed679f1bb16ac45b3f39c724a68 +5f886a9589924f5cf4d77f02358d0dc7 5f8a1492abe655392be6a92531c0ebb1 +5f8a60fdf32fbd78474c721278f1bbae +5f8d20e3e764adeeadf5c0e857b39a93 5f8ded808b9281b14f2a93e4c65018f8 5f8ea98b5af886c6bdd35e4f6158af0b 5f8f4e684777fb5fd3f88d8036303d14 +5f900090c95eba86bcb7a42b1116155c 5f9037ddeb6b4fbef938218fcc2e86f9 5f91f4e57d8feece78e4c250fd683dd0 5f944048695f60edfeb53f19eb200c5e @@ -21618,7 +24168,9 @@ 5fae322992aaddf35b0d26e21404c0f9 5faf9cb2782120742becc0d4e4b65ab1 5fafd3381f3642a4fd4d49b8803ae996 +5fb0f86bb2f849f2110428ef50e47c34 5fb1a7ab3280f099f04a61cb8438d668 +5fb2a4d16f5707caa212e101db460bb2 5fb2b655371fdae940ee31d617ea7e0f 5fb49770e11cb61484e4730491793d2b 5fb50f42685e2dd940cbfb469eaea260 @@ -21634,10 +24186,13 @@ 5fbef3040385a8894458a0b321e5dc90 5fc0ba7f6c6804d6754db024bf3d2375 5fc11181759d4d5440f2db916366d116 +5fc2dc03b2eeb09b2faadd13b90dd604 +5fc4e879f3730acd572c5dc67043aca2 5fc503321792c7c79b2a3fd6164b3e8c 5fc54f761f1d3e2b418955c88db80e24 5fc73b574b425da4c4a2049c3d9ad39e 5fc79da802fbe1557d6a1da364baea80 +5fcbabdc88365098df7a9c0398f98017 5fcce5c19d2e8d1ec5796a8a77f4e431 5fcd1ef456214912969717a5c5405c4d 5fce9cc4894372adaa2bc9839ec14e5b @@ -21646,6 +24201,7 @@ 5fd243be6aa5e14faad9597f2acbdda8 5fd25305d53c1cd2c986dc48cde36d1f 5fd280e5001e721864c0f567c6be6e78 +5fd3404078bd7e56d6404d97dc7d198e 5fd42ded6a96315f28b744630d231a5a 5fd5b25716ee409aff2a304ed4fb6e5c 5fd7a10d8b3ad7b7be2122302e738aff @@ -21655,6 +24211,7 @@ 5fdd74d9a292404adedfd54d61be7a5d 5fddcd5880f49b725d1fee3eeb08c0f2 5fe1a78c46d4e755ec687e1792b3bea0 +5fe1dd2fb39df6d6b062001094f9bbc1 5fe256e1a1c9290cef13133673146f6d 5fe290c2db83eb7a88ce7ec3ffe63a0a 5fe32de08ee24f7608a829fa5904f310 @@ -21664,10 +24221,12 @@ 5fe48b1bd3e7105f10f3935ef9af822b 5fe5b0760a5bb64458a265d4ba7d8c3b 5fe5cac152a89ea0293d47b8f440a729 +5fe7c32554a32c06283cbbf9f6d24ecf 5fe91b7bdd6405e7a478e02fe0f67a0d 5fe9de73698876b896e4034e7b0c4f78 5fe9f4046e356cda5f29691c32d55894 5fea1a958fc0400dc7d4b297b345d93d +5fedbd15643054700b62031c51c0c28b 5fedf168e97bd59ab9fedc19c67b32aa 5fef50c909199439ae64f57da76937f5 5ff1b0d5804e17df5d337393456bdea2 @@ -21680,18 +24239,24 @@ 5ff5eee82b74607dfd8f0305b81fc97a 5ff6cdb5f259a8af4485466a6d778598 5ff94fb90ade2960aa8c30a9ff3ccccf +5ffa04d72893cd50f77881bbdebb3db0 5ffbdec60ed3fa3464b5ae154bc47b8e 5ffc637b09b92365624564cd5ee09d3f +5fff892075f5dc988beb9564580f7934 60001b1061e883c274f67980fb8a200f 60022e1a848d20bea2698166eb71c7b1 6002a6fc5ff728839a1a2b204579d434 6002d3802587dffe25571c9cd292ddbc +6003344b6957c3a7c17b351b3564c049 +60042028bd64bb18edf688a22d0b753d 600557f7466dfac21a7b4d27b9f34732 +600628ab68504f934647fee3eb719424 6008201b695aa96f44a59bcdb0441cdc 6008716c0e80b9fc523816a7371a6d94 6008e1e22ee2e401e8783493a040483e 6009f0cc6b654c1df86f7ea98a02a90b 600a088394fa930a7cef8fdf6d1fd7fe +600a131d12f5939e4555bb56fe82d0dc 600ae4f86c5c92466d884a55d4688890 600b07f943060b5e1a9b3b146a13ddb5 600b45417865104be16c6b7bbeef67d7 @@ -21699,6 +24264,7 @@ 600c654e25d78d5c54813aff3ab45e85 600c72ca319d17e9505a7a91c22ee54f 601011e3fd5b31fe099fa77f132b779c +6012567d77d81794732570be6cb88c23 6014d8a8db13dbd7e7f5459ca7ead299 60168a2f7bbd6a708f16b5767df79232 60174932cc19ee84d3640f9985cb4f85 @@ -21706,17 +24272,24 @@ 6018c71d46c79829f48d460d025edb4b 6018db80daa34a34465ef49cfc9fe39f 601aca9cf3a8c76f122230e78e96857d +601b3da378e2b1a9f8a1c7bb4229405e +601baa9c7ae95ec72c28fc4240578cd7 601e4122639262902167a4c1580d5ee7 601fca1c6258277c726ba0c943569f7c +6021a646b0a8e85eafbba2592f3e5e23 +6021e2b02f327adf9fc652cda647e0a8 6023324dd02f9593c73db284571bf8ae 60251dfc78cc5b2eefcd9aeb4297d109 602a21d2210418a36ca0ea6f64da09c3 602a48c91ef581462fce3a8cb08e2b67 602a73c2fcc43125b88b919c6ece2d25 602be7b1b887997e1f37065a85381436 +602cc04c4dde511a8cc244c7bb0141f9 602dc18bc1bbc393e995f0f404946ccc 602f5a243c39cac9f05c36c327ca3701 603013fd36ce956035126258572045c5 +6030c6f3a4d88f1f82077958e9aa6eb8 +603131b3d9208c29d43eb517faaf4bd7 60325835a08dde2fa4ec4f7715e6b556 603472aeed16f4bc08693312d1a875a3 60354c6cca5927265d3ee190b929da77 @@ -21743,6 +24316,7 @@ 604ceb2af216e503c689a1275193eb51 604d3ec366908e6121b9c645521c5098 604db755266230a38372857cdd1946a2 +604f540f3bd559cd9b6cd6ec236c389b 604f809b2fa293a3982f6ea57ad2f3c0 60509c0a465beeba57c8eea187fd2841 6051d6f3dd016fa6b24b82fd76135419 @@ -21760,9 +24334,13 @@ 605bd214e925d5f6923e7efc38aa25f3 605bfb48d5c40dd85b6f0251ada67846 605e0c0be497cc229a6bc48c64cb8342 +605f488e93dda74a62d65c07aba29e6e +605fe1146cb2de1adc5f961a2ea0350d +60600a8882dd7a29cb1a9a85ddd0de3f 60620e984ac788490db5b708d207802b 6063dd6aacc8ee7ba556d697c6ee2b94 6065ef88a6254c5ab0a8bcc161457ffa +60680d4fd506bdae90de5cfa3b0786ab 6068b9ceb5c0a3f78b2a472f150e3a14 6068e55689f89fbf2655e39d2ef66edb 606af0bf5ca80d73ea4ad7b60c42c52c @@ -21770,6 +24348,7 @@ 606d352ca7a5b4184963c08f5582388a 606e49a610436fff15e413fcd7a373b9 606e8831a2957bbe3346bc9af2ed69c1 +606f599274748a7769d4fa10ad4b364f 607100133275017f8d0cbc22fa73ff31 60717f245e398b6d16524df6a3426686 6071a96c3c797c8c887001bf943d0f2a @@ -21778,7 +24357,9 @@ 6072cf955cb4a0b28132478468bc31cf 6073eaaab2156fabb20741c46a262f1b 60754c0937ee8ad50b89886f10a97d03 +60764f93559f35f67ffeb7e6a7fc4081 60770e978c9c6e491b033c56f0b562c5 +607775ffcd3e5158c0b1d064148fd720 60778a63a17fb5285a435073e8df40d7 60781c16f0c24f7e22300d64e09d6e32 6079222a92da45819815ba71afc945ec @@ -21805,6 +24386,7 @@ 6092e8a74fb6c6366c399617c9f50aad 6094bcaec290653a83a4d70befa28304 6094f00e768f93d8a3fe0f7f7050811c +60962dabb4641d8414de8e79e0acf5f7 609666a9d6745fca83d6ccd896d1b3ab 609999356775ee8943544150820ee657 609a062e592001ec5425295094a7310b @@ -21814,6 +24396,7 @@ 609d129e5dc4d74010e4cfb09a8ab231 609d9bf9d3b8431b12e8d1b165c0b300 609da260dd8d31562f3c825a3e6c252b +609efa827db92a929a5391f3ef98c9dd 609f2f18e81807e1f02289cda81a2865 60a00838c1e28fb726c14c593314814a 60a1af3490c4f810afd051c13a17d33b @@ -21824,6 +24407,8 @@ 60a45dd2495a569e6bcdc6eb1d21b8b1 60a47456c42e2e714ad8035f747acf5e 60a4f7c0f0722bfa959083b8ea35448e +60a77077ddb5585bdd5fa338d0b4f1df +60a7f2d183537fb943207e493b1af864 60a91542747760d4fa8ea28238d5e4d9 60a9a978ee5d1be19b7ee106790ea09e 60a9b787fb248ba1d0f3dcb573eec325 @@ -21855,6 +24440,7 @@ 60c14a6d29dd83a02842d89974fa879e 60c3f4d56d4920a1091deeb97ac6fd15 60c5fb168f7e56a84e62e65830433f6f +60c8157d2bfbbe9cb2059593e4240803 60c9fb16cc6595cac087e958a14192bd 60c9fe92d9e2e819f351efffb54092d1 60cb4445152a1671d874091d169341d6 @@ -21869,6 +24455,7 @@ 60d0e93a1577100b4d18882fa296bcf0 60d1e42f22e35e654eedae66747ab9fb 60d37aadca821331d76c7b5c2682b3c1 +60d47c49de0e119d31eced3777d36754 60d60cbe705db060c63e344a63d65413 60d60e21c19e55ad33e64dabc4b6f8b5 60d640f73218d84ad4a885033668acdd @@ -21879,7 +24466,9 @@ 60d99a0a5e538ebbdeb4aaa21e252e87 60da6d14fc5a13f6666ceeb9ff823235 60dcee357d820a71732e3a04b21444ed +60de0f064ff3eef6792f56dd3038d2eb 60de2bf77d24d11468163772305339cb +60df0cf1775114582f5a8c48265e2354 60e5207a274abbaa9c08b55fc6c78322 60e76c1d210f64e28edec50881f8f0d2 60eb666917d006cc03c206e4c727893c @@ -21888,12 +24477,16 @@ 60ef3180b60f8f975807b506a061c6b9 60f1019dba8940a284749845a10940c9 60f1c79b6f5da89bf1aefa69792749e6 +60f3045f5093bcbddeea1d93e764c7c0 60f385958e08bab5956b5b51debb66d9 +60f401e4af7a8f12a9ee8cb74fa8c142 60f5f33a7daa48f8ba3bfdac152e0ae2 60f657a4feec53e1d1337fccfc098b4e 60f6be6ff38e78ff71342964a1c65b4f 60f817faa5394abc022223676cd69572 60f953c8e503390fba20ca483bddedb4 +60f97f46310d3312b82e70c79a60896c +60fb7791413010eccd4bc7cf190c47d5 60fcc1e3ceccbf559d6e7ff3d71b502b 60fccfc21436d35f636f93519dd96682 60fd8ba3607117647d84be16b311feb3 @@ -21914,23 +24507,28 @@ 610eb86c6194e0ac01c085e7091108e9 6110df6f53e62ba810c3343c3548ff83 61112beac342957895d1d5468cc949bb +61123a12ab2625ded29c064d9088f7fd 611283d79722ab8d8c4b9d7854428a9f 61139de56361ec585ba3e206cc247d07 611519b0c962fca3cee1085f3a6718fb 611548d936cff55229b5b10f085d5aa3 6115cdfb1f925d7e6d07e0d83654d55d 6116012afebddec804f88182f3253a8b +611625c9c9e06e80d54724f7a6c98d23 6116469778dfaf46bfb90f473fab4606 +6116b4437420c96444d071a0ff7d8ce1 61181c991b9c9a6488ae22ce4324bea0 611874e68f6b110610d3465a08eea501 611bc942aa5eeb93cfb8bb33f3bfcab3 611de7232fe220eea186a3480f0fd59c 611ec8a28d609506f030eab100da8b0f 6121967d7f7eccfbaf6b646967b1add0 +6122383854ef0eb2f3885a75e3a00cbb 6125eced0f07fe46bfa0407ca5a25b20 6126db0a3d41685083266d8b69b27abd 6127353cdb7929b354f18b8ce75ce245 61283f3d2c6425e80cb1abb8db76a8e5 +6128a0b014adf21e775477cacc256b20 61290b6f487f3abc18fb8eede058c6b9 61293762c357cd98ea6cbd5aa957d55b 6129dec72c6462b7672631b491a6259d @@ -21944,18 +24542,21 @@ 61325acf66e072e3b875c5120b7b82de 61344af44561d2a66086f53b19a7e38a 613464c69c66ccbfdbaa7e4a21cb16df +6135b5f603207b15a9a770fc13041416 61373da0a7ba151355eb30f118536125 6139d69b5bbd84e8032ab5b9b38e1d4e 613c505ae13d4207764e1d7b6bf13cd6 613c95ebdfd4ebf808ebee46ff7bc76a 613de410b24ca8be05f77d7e05747515 613de660b9b4c2294a973e0d1acea366 +613eb412887167a7d88e319326f73559 613ed7482bef1d058764cdfa73db4de1 613edf7233fe22c3ab23a714fc1c5898 613f1029835a7252580a6932e407c6b3 613f42c98cd6f5e50dcd712270c2e3c9 613f67592fe56f06b2c94df38a0f1c10 613f8c7caaa6c2e1834add719e00783e +613fb09882b1af3800d41a7a8b0c654c 6140e2a34e3c0a56081451a35a43f574 6141f67fdf36dc6ef3fcd9fc45615ca4 61443e894d4851f36c8de479b4155b4f @@ -21967,6 +24568,7 @@ 614e31d9a850adb9c0259257667b330d 614efd0079fe4581b41c3b51eaea10ea 6152d2443ab4e00b716345dbcbceaf84 +615390ff1bfb7619f081853585d86581 615460c923e0fea86cc47d3ddd63c373 61547ae4990d98384b2b0d12f51d31cf 6155d0763757b3c1227fe4a40624df1c @@ -22003,6 +24605,7 @@ 6173fc5d982136499b1e76727f9906c5 61766d15f28f6a8163f86b4c5b56a321 6177156a20647ac7a07116a0ad3989a3 +6178122af78c409bf45dc8f10878f524 617a3b1e47a056c9b412114fc102192c 617a79c7ead107b0cd9a40966f47e1f7 617be0fafb7abee054611aac170640e9 @@ -22024,10 +24627,13 @@ 618e35685d2f791a00a50b1d5d6acd49 618e5b547f2ad2406d39fd17d918f005 618e7e7f25cc43986bda7d8bbf2d7ace +618ecb0cc47a2b4a75a84d461c10a7e4 618ff6e760b78ba6fa09f80a911daa09 +619228106b17b16a8698a702eddec9b1 6192ba60f2d6bee4c29a2b0509fe035d 619379fe3994a42b3a6be6a2d4cb378c 6193bbbc14a6d5a4a87c606394548f3d +61946eb200efcd8e148dbf681a1c184e 6194cd95e62f1c4407e51c2c7ad1250e 6195299d433d2d7b7e4526b2684f4253 61964403a082163896cea6cb50ba0893 @@ -22035,6 +24641,7 @@ 6198145aede934ce84346410a51f1626 6198f6a52b8e9e72ade81482ef1ef193 61997933cefb60e98f65ca061e817b59 +6199bd236fdb6651b1b5c3142ee34656 6199d5f062545eb44ab81b0c07dc0e48 619af6f70405b9d3000e7fc9c26b9b21 619c4159d21f34bf69cf90648ce774ad @@ -22043,10 +24650,13 @@ 619e1036fabcb0a01514d51d04d7a915 619fb6823eda82b71346a0e84d867cee 61a029155f116d41433497a71d309147 +61a107a13bc6137d696268a5bf400cc2 +61a123757ebab6dbb1a62529c5ca2ece 61a14fe538674983d5e7f14a233bc506 61a1f982d85deb6f4898c0a693b3140f 61a406ee4b79b035ed3edeed7f533a07 61a51923575abd48bfb34b6aa5da0cfa +61a614153919193bb31dd53d281dadb4 61a6437b2aadcc5256bdbad9626b9f1c 61a85003b0bd935ab5cb20adfb44b082 61aa7aa7c17afc262d6088400ed3a3ed @@ -22074,9 +24684,11 @@ 61be8a5a02582aa1df311bf2c18adcd0 61c060a7b435f5b313b0bf151bf83fb4 61c6500b17595e96f719874bffe83740 +61c8ed542178490e3a2fd40efd6f7afd 61c980e852b847cf4a6d833f3f225bec 61cbf006ec5baa41eaf7a9e57e0065ea 61cc9b5a249c582e4c3122fe7214ed2e +61cca4ec6b085482d8163688b2ab5763 61cea9a1bd4c0fc9895677e7d284341f 61ced7a8164ea9cf16ff2b54deef3621 61d2b7cbcd9b69a462c4352439adf03e @@ -22097,6 +24709,8 @@ 61e03e4a23832d4e47ef4159d195f2b7 61e39d2a5d28fc2bef003d26b73c6a1a 61e3a9a58614bfe3f0dcb9b86995a751 +61e3c2739d1d27f7ba2789d83816f986 +61e428f44a7ebab5ceb7fccf144ff798 61e4dc49dbb8c1554a86723877138ca5 61e53134b982c19f4758f4ea4a25d47d 61e5a9529f446d524ad653daaf70f938 @@ -22108,6 +24722,7 @@ 61ec3fe87a46fe5dad7506f574a9143e 61ed3c07ce1dc11404b7ba241fe6f30a 61ed52ab44a3d0e91a63ee387d321dc7 +61edae411a8f7abb5fd7fc5c4962410a 61edcb90bfe8e93794035cf0ec5055b4 61f005e0316e6a33ecd85a7a840d1a7f 61f023ce7228c3525988d1084c8272d3 @@ -22147,6 +24762,7 @@ 621cd7041fa5a2eb476f60509c65ee36 621da424ad3bccb9dc70ef3a2495eace 621e3c3d53383c9d68ced349118f502d +6221c6caa3ba869ccc8d0d7d640803fd 6223bacbdda27b35287e20a7cdae5bec 6224de483572f59a37d3d0ec48415f3d 62267fde3317f8ee211f51ee15470bf7 @@ -22157,12 +24773,14 @@ 6229d9d461579ec5261bc68e3bf4cbac 622b61d5d4a7ff668d54f0d1ee6c6819 622bd98fafafcde12062bd089a123d9e +622db9851238c5f9a366358edb35da3c 622e234be3fb75a5f1b70d479926c2f1 622f993d24633059cd7d36cd4911f8a2 622ff1d78b93bef482622eaed87e08eb 6230e9587bdf640f2d8e119bfa1ec169 6230f1eaf664545480b0983372e283dd 62312e4e7442e4f488595f718d231553 +62344802f4a1fdc48733c7b841c922b5 62346068748cfb7f340c62e566ce919e 6236d8b7729640215d02ac0cc3c4cde1 62376c9ce959b42a512680a502045dcd @@ -22172,6 +24790,7 @@ 623b0a18b51400ab71dd02d0f3f32f60 623b903841786fd9fd992c2471ed04cb 623bafd43889b712127bf6de0ff485fa +623c833bf6d9ae68b81628bc7374834d 62408e1a75a7b68647f115ea31739aac 6240d0f17e9f7fd15af8c74895849fee 6241e5dab66360578daa3da18902fbf5 @@ -22184,12 +24803,14 @@ 62463a2264ca98da2810676a844370b6 624736ff350e1b9ba873071da392084e 624b4e972da33b778267e530fb6fbda3 +624b712a693d3b5b2d72b4225d950d9a 624d657aeee9474abe010245d332591a 624fb44e4b6ebe14a77885e055a3b69f 624fe542fb541d2f86b71d434e6b81d7 6250d90928a105c11a5fc6750cb46807 625403850a5cf445aad882977e285054 6256691603bea509a6274dd99f521197 +6256f632f5716acfd67e3c321c26ebb9 62572164e55569a3b207529c3aed1770 62594a4a869c34dfa626e0d8bfc954e8 625e2f820e367f84fe22d7f8e1a96482 @@ -22203,6 +24824,7 @@ 6263676d5b792bde74f98ddfd7abcab7 6263f734d3e157c68d91c3aee9f42550 62642db3cfbe7272c762354f8c2902ee +6264b4dfad1bc24ae40e2e979b525530 6264e529df87e484bc39fd449826def2 62652d3625a4e542dd6ee20dab8d63ac 626535b65f8e6390bb80a54dfd189334 @@ -22236,15 +24858,18 @@ 6288d08af03fe992e228e488d3ddce6f 62895bfa1ca3bc2232a146421123c22a 628a9f42609424f84dabf5b9beaa8367 +628aba24e85f3f4d7010f7678e8187b1 628bf65b31ef2b1d4076acfe14b830a2 628c74e159d1b75ccd874389ef66eb4f 628ceaafc376654802dc6f7e657f6ff4 +628d3b7141959d368006eb4cdc597ee1 628e07d84e7effb600cdad205edc67a5 628ee8cc820ab73df9635fc46dffc247 628eeb1956f1c6fe1aad9d5398186bac 628f46c4696ed8fae06e143689b62228 6291656debb17540c384dc95c0a6f696 6291ba8873591b653ffb6f505a123569 +62923eb33b8481685d533a0ae4a10e8c 6292f13f742eddc68548d6f163fa9223 6293667ee65a2a72ff22fb4d9a3aab3c 6293b20adb50d18f51076c0408a5cb33 @@ -22261,12 +24886,14 @@ 62a81f5ea56f352248023f24ecd57efd 62a82d92abfbcf43a52c9b544b2ee77a 62a8b6abd6cc0043bae9cf08f2f106da +62aab496be77bbe5af1dfc11f75bf9db 62ae5276dccf8eb0a1427c1677b03e38 62aebeae96a1a94f667d5b6e308afdbd 62aef5f2fa7300fbc9c8fe3b222ad20e 62af4d1c0d0742bf4ad1b4fe864329bd 62affbc8e366d0faf6f8cff4dcf44fb5 62affcb77b09b6abc8f5ac8e7fbb9ffb +62b070679e69184aa807ec5ed31701cd 62b142ac3fda19210fc88d6c48da06ac 62b2809df04ed28c95846db530637f34 62b2ea9b623e2774411ebeda3ceba519 @@ -22277,6 +24904,7 @@ 62b9b63af083c574d566022687ca1269 62ba1e72ec6c141fd1d714f47cb29466 62baefedc59c779011f2de31e673e5f3 +62bc2dd03ba9103d75eb672c10dffff8 62bc4d7b6901faed53cdb3ddb103c2ed 62bc65382a4230a4913825a90081f2bb 62bc9e39671158cdf8f914e5cc1d7b18 @@ -22302,13 +24930,16 @@ 62cf52ea6b0eae23bf26d29f555aeac7 62d09b310fc9d207b460400aff1a54dc 62d122eaf1ef68936a00002d792e26fa +62d20f6a1310ce93e64fe6c166876f41 62d2227181bb073a267400e2ff259112 62d2751296fbc6fb6980a0aec4fb5df5 62d2ac171c4da544b8466d1784ca6360 +62d38318a6c05142dd93c85ecab15896 62d3cdc386d8c93ee4d2480408cc18aa 62d4c927fa8edfc37eb8b951cccd2d85 62d58c1235151c27ea499d9b731fd907 62d67555ef4162c0ad73587939bc0898 +62d68b247b465a25b5ff5295a227d20b 62d717955d239c38039f968d432f3f70 62d98b3bc75ea0b8ccd4a08e3e4127ff 62d9ad5d921631e919255e8cfc2d2d2a @@ -22318,29 +24949,38 @@ 62dc312441bc65dada5f1ba92bb5b33c 62dd9f62474822af1b27bc8d4f424f0a 62dea479d2c2317a30496b0d2bc433d6 +62e090e5f20d2d68bcfdf8ac2722471f +62e0d07f03af748cac717ce19ac29ad9 62e197a86f8a7819a713537cc06b53ec 62e1fb1d804dc224205af8f51d98f7ed +62e22e3664a428f88e45fd95e1b86202 62e2e184ddafb0d4367bd4757a976349 62e44430780d2a6f0db37f26408ab205 62e7e9f53460133a170f3bbba0546ade 62e8e879240e9f1766313df442a27630 62ea3a5aa9436e6c3a3aab4ffc00999d +62ece33f1f04fbde064cd65679a4679d 62ecfda53397d55548448ef01c60bc5a +62ee2efa3aedf50b991c2d2c91b8d16c 62f277f8dfe84d29041187edde69aba3 62f4a953af52bafeeafbe24c1bccaa91 62f5ea822c30f7289884819ef2275569 62f62ea8f8daa78aa69515b88b592e08 62f689a29bef6fe8acbf07e163da1535 +62f6ffb2091788b57f36c1e0f383d765 62f7c267b7f0d5dee96813c1d46e3f84 62f951a57596153f30b7c1bc48fef73e 62fa0b9fdc83097c07528aeeb5dc5ed0 62fb604c0b4341553102df8f7d412ee8 62fb76c9a9fe17060797805fd8a9c338 +62fbfb432adbd9c3ed06051298da6345 62fcb9cae74bb89f0042ab75ca9d679c 62febbb14e2589dab413c75dcc9887c4 630072d5038b40c9aa87a5218762ab91 +63011b176f3cf86e6edffac3eee59809 6301988f75e80fd73506f9053f7b747b 6304798c3e80a1d5fbaba504a763f423 +6304983381c77817ea6cf7a95cf3c034 6305426c16c3be83ab50b9a9f0c5d5d7 63060325143d33d2d019e4491c92a7bb 6308f83cb5204d41980c922f2b2f5469 @@ -22362,6 +25002,7 @@ 63177b0b5e823a090c31c0b94c5a6ca6 6317804d05a02777f1c37c9eb05bf062 6317f48f55038bc84f32b0edabd37968 +631856eb730dc6561de287f4c47c9856 631b84b88291584ebb7e718dafc5d103 631f28c9b842d8582a72889ddd578b81 6320e43a8fe7cb90317c133f60816f1a @@ -22391,6 +25032,7 @@ 63310de2a82eabf75e7417541109d353 6332e9e9a38486d418638e1f8e8ee30c 633305b03e5f493c6651fe8cb2cb8a4c +6333808cdffa7daa8e58cf31dbc4ef6f 633495c4f11b0dd28dfaa65e6ec43a3b 6334c5488f2d3a72ce85302522651af2 63357191ae4d3fee6d6cb7ac62dcad48 @@ -22402,20 +25044,24 @@ 633b3c9ac70e2af7777c938e2f245236 633daff3369f4a2a487d0d15f69483fb 633e782faedcf3437207fed9bbaa7f45 +63416d7089f4ab8420a9719c9060497f 6341c3b0a9febc53de05e0bb420f62f3 6342437eb7d26c249fea7122f5b4a76d 6343c89ef5be4a9c72a14791f23cd870 6343c8e3cd472fa3f21a98b18e187f32 6344f5491a2e7a39024d167084c3e4a3 +6345706599eddfde877ba28fff695dd1 634656d3d6059e617648401fd47d96ea 634658064ba6a7748ca56f9225be908f 6346b455156dc7f7eb77921b430d1982 +6348bb6deea8661c05a8e6b80f564c37 6349e1911099693684b84c655f86d8af 634fd97a592120302627e972f6945a7b 63509d4aef3b6cc3e04035ad6bec3a66 6350ecd6aa1fe27a3e6ac9dcd36444de 63527219072a79029caaa0853308b168 6352a19cc5a14494dad16d8023470f57 +635505effd1031c683d419666d6ff759 63564272fbfeb42631c5eb9b464b0498 6357523aee3af7bf91b6974a3357bc97 6359202b13765019fb967fa2fc996249 @@ -22442,6 +25088,7 @@ 636dc11464f41674de35279bd200973b 636ecd7e928225ee1bb7843d1340c7f4 636ed4171f6198e77bfa109b2ae26c2d +636eff45f17715feb5080821279abe6c 6370299399d4f3f0e4d591a05db2b4dc 63719c4daeac7896b676281b05f56bee 6371e3d4e88f715400d05d6f9013230d @@ -22474,6 +25121,7 @@ 63881b8820c3e4cdded936aeee5750c1 63893816aa3b139332d0b03e35f300ec 6389eedd2ccd2ed15f0583af5fe0351d +638a4d6cac65d82664a3b324de32c9da 638ac12243bd3bb1c728504f3e234a04 638d69b5bc6ee7b15421d1aa92e09894 638ee7f44c4a986a8650d778de774901 @@ -22482,11 +25130,15 @@ 63926803d8ede1a17475404e2978d1d2 6395058089daa70b519a6a8e30324105 6395852cd22624c9a20933ad04751f18 +63973e45c2aecebd7208f081c168cc26 +63973eb8aacf0b7096a5b6b041518870 6397d6f3f0a07387459b51a9e03ccc7d 6398f80ae77b4c3083a64a821d30251e 639a42e8cf3d7661ca9c45813a8855dd 639b4911ce792ea0ab9be6893845b762 639e43cedb3b4b380df9c9181480e963 +639ef12c96c16e53958e9a1ac5c8c92a +639feb6b9a768a2de8087ade21014748 639fff585af16beda029304a85fc0573 63a06dcbb9b5801020bc89adedfc52de 63a189e8b94cf5d943141efd02f45c43 @@ -22508,7 +25160,9 @@ 63b214437223ead87d469854f0b70cc0 63b21a69cdcc5677ce96b4e8ce915dab 63b21d5cdfbb9a71addc025dcf5a2a6d +63b39b20724662d8861f55d5dceaeffb 63b55931879e8ccea27f14e7835aebf6 +63b583c6761f39f3faa12c01ed3fe9ce 63b64d0ea30819264a09e4f1e32d015a 63b6861aa68ced9d20bdba20fd6214b3 63b68d1ecae2b59462bdbf79af0ecbef @@ -22516,6 +25170,7 @@ 63bad3e4b31d2d8201117e5c62f13b0a 63baf7c1f48f8996913efb44dafb9a15 63bbba2a727a9ad8d463a8b8297b943d +63bd6c6b9b654048cae4299d494b106d 63becf7a6123d1a40cb6c46785e42a25 63bee63f508f4177884edf487dbd29a6 63c0c1d2cdb8a3100a121fc44397a85d @@ -22532,30 +25187,40 @@ 63cba2fe7b63f6264b2f873938442bdf 63ccebe769c893d6f94b9d435fc30b74 63cd6593daa7ee6bfd6f6f98238666bf +63cda874f36c94203033b78f1822f9f6 +63cf4719c8182b235ecdf63d99f792fa 63d0ce3fc9dc86b9b43b0b01d5346b4e 63d41d3c6c39b076d15d3ec39cf98602 63d5188e34cef30ee68389134c57142c 63d645687e6f50d9e2ec0b3ee7ffeb1e 63d67e34fa0c17e35b0f9029b2bac944 +63d6d790360122131332cb8264b01c6c +63d7b7664ecae0845b5d168eaab5e0e0 63d899120e2a885670f7b02e2e7c05bf 63de77c58dde81f5beffa91bc0f08715 63dfa561d9886ce5b2d84d14c0d05d45 63e14bfa21b4b78317944019489ab632 +63e1565b9996dfd7bd54fc266a966316 63e1796b8fafcdf4299da84fa41b4847 63e24760d7891ce798536ae61162a8dd +63e34f3ada8ec6d8559ea3e1f1ebfdab 63e38d12772a283bca25542dabbc6327 63e428cda25b5cb34e497e9e9368d558 63e42ef0d1da4cd5e390666671a47959 63e7b14b6f71d1d3dc42cfdfcc598166 63e9743ee6f0c6211c4afa09ccce102e +63e9cf619ab6e05fb436804868698cd7 63ea0b07d1e18c6436d95a6309070263 63ea178498cadf70192b0b9cf8184225 +63ebb6407fc787bd711f9ba9e4002328 63ebe9556d432b2c3068c461cd2373d8 63edcc257038c28ac67751f0d82a7a5d 63efbfc840d9d0afea41c3860c48dfcf 63f10804231b705be4294555309c9f02 63f1343ac21239de6fe7d98e541976ca +63f3096bee8912fece47239f54c406c4 63f59c03c3a0450b68b900c088ab057a +63f770d3c9f299fdb36834b9d2ae8ef3 63f833348b78914fdf130fa9284e61c9 63f9852c7dfadf56c9c4400d5728691d 63fbed8f5e8dcb8b4e8c5ec3df67619f @@ -22582,6 +25247,7 @@ 640bf8a87bc86ca18744e6a48d38f33a 640c147ceb298a1529e0293742f250e9 640c664aa4a4bea6a74cdd2308dca819 +640c7c28d0ce3700755d7cb756d56ece 640c815dfdd5260060f0b523d8776f76 640d9b1b2da6c8e250e4a53e57eddac9 640e56ad9d125bdd0426c5428f1314ae @@ -22594,6 +25260,7 @@ 64121f1474b84c76d8958eb1ce56aa34 6413d57471d7c5208f1a4ba53c5e6026 64144f3292384192741fb6779c3ea22c +6414500dd25b7b3b48dc20c6b863667f 641512678759edb4b30c8a09c2fb424c 641570cad7911f9e86b4bf032aa08221 6418c5a8f34b53efebaf222c8615485d @@ -22602,8 +25269,10 @@ 641abbb88c33aaae4fd0e2d4b956d355 641d12d1fc3ec72139e421ea1990980d 64200ec16f14c00bcc650f092f95a9be +6420701d2ab3b2bf5704ac7f06314dcb 642098cc0c5516d8161a0b31f5b8809c 6420edb364b7539ba224382d8ce97c26 +6422ab38afc167274fb086912a3a52dd 6422bacbabfe140403c7ea5fcc3d3ad0 64241e025668118df9e704a5dcb22c78 6425022b3ca72ebe9c332c4c1e8ba41f @@ -22629,12 +25298,16 @@ 643e2fe68ca020bc0fb7abe5781ea771 643e3c4590206e455310c5688a1d245a 643e55448ea8edcbe4d48368f3435d3d +643fb17d33211c28a48d037441d7f614 643ffe77569245654f293fec82577f91 +64407aef58a7fc014223fa34bc9f3e10 64413a387eda49b7dd514b7e83562d76 64416e9b6a62fa2d58e04c81bf1e870f 6441b666d75f75eb4d92ae8b50c1b60f 6441eaf5c46ecaccaef98350ee1e1bdb 6442e9400abe41189ba43cd44bdddc99 +64433a52e6948e4d58462120fcb919b2 +6445472acc6b15acb9946464d97d673d 64460de7eaa696702dd158bb4797e44d 6446da7e20c8f6f1c828f7c0b0d6813e 6448a059fc8117ad8d4eb9e79b533d00 @@ -22645,6 +25318,7 @@ 644e2d168f8984bc90804852edb50b3f 644eaf92f45587d7cd8bad6499af1f7f 64519dfac522d08720cfbf666ad89285 +645280fd563028c69f51222e39df938b 6452bb01ea950e2da7adde9804328ad4 645314501ee4c9b24288a9a3c87bf0c0 645486b586da1a5d480755c45b86f415 @@ -22671,6 +25345,7 @@ 645f6d647d33d13f88980a093da52245 646041ef861e4f0a13eede603f1b8777 6460d54f971598c7f4a5739632580236 +6461e83085fee6eff10c9583fb1e9205 64629da4da475fe53de6e033e580d380 6462fd7560c4cf19e6d3fe302bdea359 64634dceb743c82f55a0dd3b9b366307 @@ -22683,6 +25358,7 @@ 646aba4dc9877303c554519ab7bc9121 646ae148cab6b7f102e83d0bd8f6c122 646bb8bcafb251afdcf0d424ed16ac27 +646c85edfe20fd4480f27a580bbb5a12 6470896680a6859a0e48b4c2fef628f5 6471f318e18c9ccd918c0f0ce681f597 64724d9404560ea4bf8b890e9370abab @@ -22719,6 +25395,7 @@ 64921ec96379eae167a679a31fd3b4b2 64954ab5709e6874b016011fa17c98ea 6495710e496dc63a70f4e08e2ca655cb +6496af5c6ee3b0698a02c2bddcd5ed9b 6497e1d8ec365846fe4eb8f7e71df28e 64990d3c2197552cbcd2d3dabcc8f592 649da26144129ddd28bf160166bb76df @@ -22729,6 +25406,7 @@ 64a2087a31b712a293c721261990ce14 64a21505f542387a0109750960491e3f 64a484321096b7a5c6fe6d4af29e82c9 +64a4d9daaea3af57ca1691d92d39dca8 64a506019b537078db5b918f007897e0 64a51227ca013bec3b4ffbd064b3e7d8 64a5d6af398763080f539f344974a16c @@ -22740,12 +25418,15 @@ 64aa24359a6df3a85be234baf7ce2ed5 64aac95bbde1504c5885e9a74aea7b46 64aafb828877c5a456204f24dea2fd0d +64ab73ab142233b13e3d5b9c73a80d3a +64ab90df8c100eaff2ccdaf13e720a75 64adac12deee5e538014a84474ba4d0c 64ae80f320168d6c61c5b010fcd08014 64b02ab41c31c9c06da8049c59b749db 64b04c1b70996491673626f918cdcb36 64b1e2345edd62b60dcc1b5cf1a08ce1 64b20fd965992a511991b09e0e16e994 +64b24aaffb5d938f451f576095d6c40f 64b36d910f6906b51ca70a37cda52177 64b5027906436b11f9e6743ee565d6c9 64b55933a6be325a0a00c8ef6951961e @@ -22755,6 +25436,7 @@ 64b7247ac0060206bf40ccf1f059d3a6 64b8ffffafdeba587514135a9986f8c7 64bb7ff81dca217b602d1d398c0015ec +64be6839a8d898d9b8d5524d0aab6c8d 64be93c3dbe9d3d8ee613934075d1936 64bf305f4f004952941eb1c08b0c1e04 64bf6f6b597d274b7b5702d3c8781d49 @@ -22781,11 +25463,13 @@ 64d3c45fb3742eb31db0a1579c43a510 64d635ae3c51aa29b674b2f81554d68f 64d744809ac084ebcbf60ce80608c090 +64d9e281407444c37bbc2d871db7f124 64d9ef92c8b9eb5239e5e1c03aaf3850 64dbb8160eeec432aa3b3cdbd2e1cf02 64e22655a756835af725ea3f5a032517 64e2ad6482e2d8b52c954afdf644c5e8 64e5354d2ddfc4479786cfeaf74f43d1 +64e55edb0dae07cea6749c1f8a9c89b6 64e562eb8d298dfcfd9769d4ddf3427f 64e66fadf0d2664b74b0d7e4cfddbe06 64e67e94032a98b18e7d6b217c3d50ec @@ -22793,7 +25477,9 @@ 64e90ea3857f62cfb684f78d37f5c142 64e97ae44a722e75aa69629f1339701b 64ea5db6204baf02c8160639341ad018 +64eaca83eb1ca9d2c5d1cff08f24feef 64ec86175ca20d42f45e5482717d70e4 +64ef500fc0480813ccffd5fa9adf046c 64ef52e7c05ca3fb839ca18522b69aea 64f0a393a9fac5e63791de4a445c5600 64f110f249c82b79006a3402d13504be @@ -22803,6 +25489,7 @@ 64f40ead0c8f95464d5614f9bb7f6c08 64f4b649abdf55164f5a0b2f40bfaf3b 64f5dc442dcd886a00a91cd464bcd637 +64f6f9d95f9b393e7b3515811b4af6bc 64f89ed4f1e9a816d96922a6ceb91ed5 64fc34e2a6af6c9110ee30e462de559a 64fda3139ae6fc9e7a40f5b067916df7 @@ -22866,6 +25553,8 @@ 653f59359044ade07b8f4eef68072bae 653fc3b81b7e0df95fef88fb7e160456 65424d8e858fade71f527a9c2a59ef06 +6542bcb525c717924b48c9d09ee2db0a +6542e8120f45f5b701447c2a5e4000dd 654333304fd21392c50cdd3db491eaad 6543a947e7b77866c8e6a73914ac534b 65443060c5673d29e69f93244190ab30 @@ -22893,6 +25582,8 @@ 6552620c4a43006d58462ce7ae797534 655377e6c15ba7defd7c95b80df18b65 65539562f621ba8b3adeb28236523e49 +6553c4db2c6f6d456b8bac1dfada1290 +655530768db817e44992aa049ecd2253 65554d7dd904544049883fc1a2a5ae8a 65578c777b4ba668b8b3f67cfb394ed3 65597be94a50eb0a5a4ea8ead565ff2e @@ -22910,9 +25601,11 @@ 656407f9b5ba7de2cc66dd80105ee317 656650080f0f2492a69de408b966a2cc 656685ad8823e9ff81a07a9b075cbd92 +6568553fc9ebf57ea0a8b6a25a418542 656a0c14e9b39c6454019b8f51e4cdd6 656c0d432b88f08f13bd7c6d15125586 656fc7d529b3ca989e8b5e58c8a9d29f +657069a696f05a998a3e0bc0b9160d1f 6570a8836ca4117872776d60306d8083 6571fca72ebf3c6230d9d74775a5dc96 65749271465ec3d9187b35c2226c501b @@ -22943,11 +25636,13 @@ 6590c446caad78c319f7860857215f0a 6592fa8dfa78165a855d6ab38432baad 659323e3afa1bd6bb4d23df73bdaacb1 +6593783819ddcbb600d101229221dfec 6593d8fdf2201b1964f446466a5d523d 6593fa792f7b02f26e6f0a2ab1a70010 65941798b3af5c6d581750d4c940a58d 65943738dab4a8c5c2b328837cffd484 65944c8d6430d1d882c179c7d3ec7eb4 +6596f859ec02d0a79a7db3a9255fe207 65988aab527712fc34055cb1c6db60d9 6598c6ea38d69d69b59fb28bdaf56784 6599ace5940493b124c0ad6034c41749 @@ -22975,9 +25670,11 @@ 65bc2015ffb648258fb30847b5d785df 65bd01bf281d4cfbf32e4da068768c26 65be155febda2f0246bd163d170241a4 +65be52f91f481f043ea35e613a133cf7 65c466276de9e62d98a8a73868897fe0 65c46a181fb3b23ea3a3a8c5636f32f4 65c5c5904e47ed634e3d5274a97f410a +65c5d145c7c83a6303aa34404f8aa8f0 65c6279aba2ad3e7d5cb81fae6943b3a 65c835a01ab88418801b895c64ac1b6d 65ca97fded3e60260e3d56af6e5f223d @@ -22986,6 +25683,7 @@ 65cc7defb85ee791dd4881bb11fced87 65cc80ba36fe3f3fd175a49b30e8939e 65cc8fb4223415684c1ba12ae3ad1b9e +65cdb11c109b28aff6702350707c5558 65d1790c149e6a07eb8dac8b4ea1c024 65d208dc121c81e622f7c23f4ade1588 65d235134d6ab01abc8286b435613b51 @@ -23013,17 +25711,23 @@ 65e7bf31ca0bfcaf3b95b2199be6ba2c 65e8037ea0ffc564d22a8d7a7a6d7ab2 65e97269c7e2b7ee53ab2fd824504c4b +65ec996f7303a4ace169e0810b91e594 +65ecec5040d1dbdf7f2d3c29e8e70feb 65ee7faad42c3b99dd28fc1433808a62 65eed3b71d756ac5e080831f4f1a6227 65f12b15e2b323d175c3860a748c2660 +65f149c8b91587354c9a23a7a511ad02 65f2665e6122ac4bf9e77116b776421c 65f2aaa6d765d60a08a6f4be4070f852 +65f2c5177bfe0344ff0adfe834d04d2d 65f347b94657152f68754532117bf7b2 65f37c876bf44423d9ad67ca4fca9e3b +65f3833f8226a4db7a194b32e0e4dc20 65f5c0b33e2517a0cb1e00977bba718a 65f5cc2cc26c93d8b7b98126581ac63d 65f6373e1c3956a8acdaeedbc29d4777 65f7c1fd1b5d928dffede00ed340e77c +65f88d94d684ffa78240d72ea04aab78 65f8c34fbbfd7f5d2b6e8d29973b2501 65f95ba02629065f174ac46b5c53fa46 65f97208263258e704dbdf56d5305bbe @@ -23032,15 +25736,18 @@ 65fbbeba4f82411d1685601c4ebce751 65fc2744667ce55e4cd2a598c49f8181 65fcb31cb383195eb29bae2fea4ccba8 +65fcc3a6ea69604c45de141b8a0dd6d6 65fd2134e90a6e24ce1f1c56962044cb 65feda8333a13e4e9201d46c3c6fc87c 65ffdcaae0d3ed664754bda8264b171f 660081cc034cd7c6b071f4fb0529fcdc 6602abecb2a9466eb6ac8db349e321ba +660308668d7c32274a6aba5158df1864 66032207a797c8a3ff798bad60c7c416 660394ff2e166d7baa91d162e9133ab6 6605c86dd975b842ba3c263c866578ea 6605f3d5d0903ef7db263b5233e53f4d +660637221475d7a3894e9a2b66104b47 660690d2359dc3368405e523eb2e9968 6606bf470076976cb33bba5b3e16854d 66077ef1ba186c5b187fa2305454b862 @@ -23057,6 +25764,7 @@ 66102b17649b814b7a6f8668de47ffda 6610680ac8efa614ec318f7b041dbb74 6610a56f640d130e4ae047e2fbff30be +66124b0d7e64330d043f68d67380f793 66138ade9fcdc14e48d6c815499bc3cf 66146110cb313eb5637b9a9bb29a1410 66146c0e48601bdf5802317cb9c8de0a @@ -23074,17 +25782,23 @@ 661ec1f6054cece9432662ca5145499f 661f707504ce176bab08a98b35195f43 66206c6896fcb1d4db9237eb7c56ef91 +66212744e06004f661b5784e4cd1e435 6621bd9fa03d5e7ba5a44c21ffd46965 6621bde5a4c69f191540f6469a18d5af 66221f0d1587da95c68ce1911c4a7511 +66228f952f7c3873a9dc24b1a589d660 6623fbba15fd41c3a3af4610b85dbefd 6623fd69a4220452cb3ec9a19ec46d7e +6623fdd78ebc8650e5e4b5f6d85318c0 +6624b503fd7a916520a51626e7119e93 6626184a648bb9945748ba6913b71559 6628057e645510a432ee358a096fe9e5 6628677c36afbcaf9a151ce65b773372 6628ff366ac65a911a211111322cc332 66295f145de1fbb9aef51d08d7d807fd 6630050ba5708c40301139cb1b508891 +66305198eed63aa61b1520ae2139742e +66314411b03ca0c43d1d8d603409215a 6631ba580ecbece3cb5b2f98c4339a02 6631d2d50194147a55b65a6fdf80ca0a 6632d29fd3b0e0b2165cf3e79af61b44 @@ -23092,11 +25806,15 @@ 6635094c969510379ad930d536347122 66351c2f3942e928c69cfb317e40cc98 663702086387aa0a1854eb5cf8d62099 +6637dd6c67a86d0c9277dcccc702a964 +663814e13e2c8d5b9c3c5036caedb451 663a4d57fed04ab2ca499c80dac717ef 663b07466bc1e0682e2ab6db95734112 663cd845af82fe8cb696f52d297702a4 663d9297f5f19ace60873b10445e82e5 663ed4eb1f95144ed609e341929dcdd2 +663f48d3c1eaa6c7449575a4e94b5047 +6640b02c3d822d01b6f4e4952abe7cb3 66410e18c1f61ea117032ac5d6430a3e 66420133775509b7ca77d84484aae699 664250d0eba03e4291724c7024fc3974 @@ -23115,6 +25833,7 @@ 664e51ef7e25ba774c15688309bf7c85 664e60e464459c44478230dff1c2e18f 665007bb658aa29439682d8d2af9a4c3 +66503aa88a40d838314ebb1ff65579c5 6650684526b3c0f5a10eee0f6b790fc7 6651499eb91df180e3f81c193f4f0f72 6651788eb54fcc1c8edc8bc275074e44 @@ -23127,8 +25846,10 @@ 66544337f7e14bce761c51c1dd654e49 66546e83a376fde8df7c8254b95047ce 66558804cc47b20f5575f3d47b2349f0 +66558c4286b51dc8b7173e444e72b290 6655affdd882223649423b997710ca90 6655dbfad7b6e0b607b1a27cefb72f67 +66572380049db205cd8b711368809f66 66581dde580ba755423865fe48482478 6658b22823f2f555b3547dc92636f31c 6658d9382cc94e6f267241f315bd5de3 @@ -23153,6 +25874,8 @@ 6668c187668755db0ef18e0f2f690f12 6668e00876de451b4c4207c6737acd3a 666aecdeb02685ba13bca9fc2d94986d +666b2f3fc1c4848da3e7fdc5ff36c7de +666b490cb008425f73ad5e86cfe69f48 666c89b9ca4cb0c901a4d6f7f065cab4 666cade985d9661d8d117b8512237326 666d4fc32b48ad5ebb652d7760055e24 @@ -23162,6 +25885,7 @@ 667142b1005eb904761a9a9f38ead918 6674a702b73730cf0eb9bed67c58916e 66757eaa014a5657de7b4acb1c6687bc +6676b8ead9e254d99038dd4e2069071a 66775908368a3dd8bc1964926b56cc5f 6679da1c059a1bf4494df468e8a8b221 667b33aedf4bb7d98759f2a8a864177d @@ -23193,6 +25917,7 @@ 6699b48bfdf3d91c50b1e9b643d0cd9f 669d6f98b5963693084aa1f5e3c72bd5 669d8f442e6f24cf7b6ef3a4ae523423 +669dce34870d017b3417171548bb5d08 669e9680deb41061ec6ec2592fa6f290 669fa081bfacf893267387e08de7d2c6 66a06b9e1417e26c77f3916146f72faf @@ -23200,6 +25925,7 @@ 66a2377f2b67f9134b206c2c4ef4ccfa 66a27f9df815e245a68987145183c86d 66a447d3b4ee3605caab8e7271f453ab +66a5746e24bfcb9eedca66721c6f40b8 66a5c8c63a74dd88259c18a6f807f2ae 66a7791b4f3cbe1ea63738378ca73073 66a7f4575d76fb99e0e765e56315e1c2 @@ -23210,7 +25936,9 @@ 66ab2c57bf6c519855716e1bd31cbe4d 66ab9ca37b0221e38233fa0b0983c01b 66ad5a9714b59cf7eba87dbc670ebb1c +66aec7dce0f632ecd667d858db4c3a4d 66b0282b24dc1c1aaf42d06d6014708f +66b09c47a4da926f3799653374c71db5 66b0a5d6b86c709655d2b78ae7826074 66b0b8378c191e31b1b5343201297250 66b2a17fb45b7325e1901a531ecdac87 @@ -23232,19 +25960,23 @@ 66bd28d9075a7aed55675c8a4ba1fb94 66bd56d93072633cd7b68a8a0f765fdd 66bdcc30ab55aa789e60780bb55ffae8 +66bf3ec1ad0831f1f4d41da1f53293e9 66c13eb7b7b68b0596ed40e2766bd36c 66c1b45c49b29e376690c943b6ef7c22 66c1c196e8353adbf5474376ee2130a6 66c217c4ae6a533c0427b3cd6886a87a 66c29366b9da3819230ae7d963cd5c6f +66c541af730660b85c3db90b3ac5b68e 66c6c1328fc0372e66c13c38fe47121d 66c745f4ad589cdb83e654010e100984 66c7dc675112c0e9cd83dd2b51562c2a 66c7e02eabe081eb4bf81026d18f4767 +66c9781a3bb6e2b67481418835fb2b96 66ca0204fbbf3ed01b7bdbb82851995b 66cb9c9b4421ab0e08f352a798e4d2f7 66cbe4dd625e24d4b766ef0d75ca649b 66cbe9bceca821e05e6b8e50a4405955 +66ce487bed8c0bb95afaf601ef695f22 66d4225411ab0f4e325148fabb229bf7 66d630bc05cebde95bd0e415df831621 66d7a27dac757bd349a69755fc0e3722 @@ -23252,6 +25984,7 @@ 66d8ed87e387591cbcc571299cd26cce 66d930fa9fc856d0e6b3b2a030b71d48 66da240d05ff5a9b5e996fce1cfe82a2 +66dba45dad41e2dd685e60807f7e6927 66de8259b70940721aaef4a76f5fb3cf 66df76db5ab0c64a3f5f91e0775f71d4 66e0142bb6cc42651118d7d70e7a4636 @@ -23268,6 +26001,7 @@ 66ec2d4eedb9ab3eb0bb39dc5a96dfcb 66ecfd0e211ebac37bb6dc72a3432436 66ee4cacee05f8209e0671ebc25cad23 +66ee4f07d40b09fb54fe536dba53aa9a 66efa0faafc17a14e1cd68650cd088d9 66f030c9cc93e25a588d9234a120208c 66f18f0d51eaf545b7d74c7bcec081df @@ -23278,6 +26012,7 @@ 66f598124cc575db3e76412f57818926 66f5c4c9a5b5a58827ffcb6447ac3d67 66f5da9ce7fded703a1056daf65ef0f0 +66f784c438b31d3d5f616abd050ca046 66f7f59fbbb600cd0b5e272a73e53317 66f8eadc3a33ca75670b001f6674bc5e 66f98d0535d8333746560b3a3fcce87f @@ -23338,6 +26073,7 @@ 6736e11218cccfe695052643de9393c2 67374f49667410d8f3a41530795f78cd 6737fda83313b1dadde371a784f1396c +67383555953decb14c44fe31f5781cb5 67384a50bbd05707eacd5606ded50c48 673879a71424e123b03cd3fde0cf882a 673aa975774fc3424e2ab54c5abbbe98 @@ -23359,6 +26095,7 @@ 67465a9427a3b0dfd7e44cdf89502ffc 6747ae2d473acee47c913040e90d3fc7 67486bbe0351091240031f0bd4e95de7 +67492cc6a6e95132707362402cdc594e 674ae255e367261c47c85604e1d7882a 674b4a3d12e702f32137b50ae4c1e444 674d4c4b6a9dec7e54abb94fcfab4009 @@ -23370,8 +26107,10 @@ 6750e5bb0b956a66acc418d6db008a41 6751d32429fa5265588402c1a4f1e6d4 675242d6afce9b05aef088ad7223e01e +675313b0dea3d0291c3eb9fb827451e6 6753222290891910d418786d4b16c5c8 67535b9207e1c7766b433ed1f5d6cf91 +675440a50fe6fdd5df33449bf7aa3965 67544cc67c5c680e42d9c6bc07426f11 67545b98b229384fc193c275ea52b0b3 6754a2ee4b736a01fa42a1d4ee5baccf @@ -23409,15 +26148,20 @@ 67762b9253400e636420a4e374cdc085 677685c0eb658fdb48074b4e89bfad71 6777d90ec99189d73be8b817a3ca7803 +677818016e094e3d11551965dbb39848 677862527de3ee3a29cb3894534dacc8 677d547d58de15af49f5f366f51f12fa +677e9f2789a109e9d684a427e4d4dc90 677f6433ce74ffcd0bbbad6e4ef81de5 677faed8c25a7695912758f02b363c85 67806ba14a0a3e9201bb945ba02f0ba4 6783ed5d2f776d639ced2b85e8f52025 +6784592fffa0c4a43af9130031507ae4 67854229ff65bf6b3b616cda279a3fc3 6785595068634c9946a6304480c3b051 +6785e00628b6b1f2caa177c539a22545 67867118fd243845dcf1ddeadfc9f419 +678801cb8f25e93f49bb9b779e56d206 678875b4b8b7b95d9c72bba8c59a618e 6789c5095767791872d63b6d6be64725 678b3ea3c6e29f95d566ccce5f892cf7 @@ -23473,6 +26217,7 @@ 67c061d3c354c25bb8a70231f69a759d 67c1948d16477990be951efb035fda10 67c30ec41f4679a777800b9cef483730 +67c387548166ccdc50f004f9691d052c 67c4abf39b6781c2c2a5e2bcbfa3d070 67c4bd4a836b431b34bfc9c92be8ac99 67c4cbc32be0bd61b76d612a379d27bb @@ -23489,11 +26234,13 @@ 67d052bbf7ddf525f13c86da71113aa0 67d12342898acef37ba4cd93b0cdb916 67d23bafd877423b33dd15583f901fe7 +67d2758a57a4f28c490d1643ca33e5d5 67d2f3544f57ea2a0450b55f7b6de049 67d5d5357766da10fffcefa8266f73b3 67d60c45d8a9f76337c5ce2feea57b3b 67d6ed0c4b18c8f82fef1d00c1e4e5c8 67d895a500060664081e9215a2f8974d +67da157fba7159defff5a280396b00f2 67da2cc3772921a7e4773aed87af23e5 67db742e3d2dfd1a9f0ed83cbabf77c9 67dcb7704cc7c60fe448525380dabd93 @@ -23503,6 +26250,7 @@ 67e0e7aad4d8ed8294899f070c84a603 67e1c7a450cf9dbfabf8719dfec28860 67e53e28d32b59db4e65841a6c1c8b5e +67e63afd7f337d22d96021ad5a060f65 67e6ff6db6bda507878bbf173328d402 67e78af6d77df71324c23a91ff8b8d63 67e906970079ff5f95ae613b2afed573 @@ -23518,6 +26266,7 @@ 67f6087cff96a87878539b9ec59fd6b3 67f6d16177f0f524b6c5331b48a66bb5 67f7153bbef9dbc48c91db5a953fe425 +67fbd9d0e05746bf505c2e2d55938e6d 67fcac352b317c50d031b1c9bacbb9aa 67fe5c504cad7431145ab3f1785e5c17 67fe67d608bc6e5a70bc4c4167c4275b @@ -23550,12 +26299,14 @@ 6817c5980c0ad6218c588324c9cd51da 68188aa6c41075ba57a179be9c185e32 68190d55f6ea6020afe5be0fdee19641 +6819536d31d4bc2bae720edb41572e57 681954c88b7cb251c0211411dbca2433 681a984b0e162de77e2a7a9b9e635b13 681b442910848f90c134b7823308ed98 681b92d41a65fcae128480fa9636181a 681e6a5186b214bcbced167395b4ef19 682033bd32d95f382ad78e4cde6af770 +68210946c049ee72805d45d812b2f7a8 682173c0a49f6db73dbcf66ccfd1dd16 68221fda70d6b7aabbf7daa57bffad88 6822a9353592f45288e04d57a35aa12f @@ -23570,6 +26321,7 @@ 682bee4522c2812638f3a3020327c8ff 682cc9943564daaa499721eba56fb927 682d4d7136f8696bad9b4e6373485113 +682e3d72d4bb6a6e0f873b427b604aba 682ea19bc6abf89caaf753bfe1c064ff 682eadd6e94732728665ec181d5d2ee9 682f21bddf64c8fcfcce6de8c6a45cb9 @@ -23591,6 +26343,7 @@ 683e28feb936e352894253e175094e15 683e42abaea3dbf877902ec5342be316 68420d04aa9be9124ed5603ac85f2d18 +6843ba5c2bd8ee5e6a3e5895f44e4199 6845729f2fd392ddeee06797d2ed7b50 6846149fe24868fa3e25885ca9cb406b 68465db51faa6a5ba825a9e4374ea592 @@ -23598,13 +26351,16 @@ 6847c227564b65bf736c6ebedef48daa 684857da5b8a4c33587519341c0e0b27 6848c38185ebe64d3a3aa9cd8460954d +684a3172c5b5e80d78c58679379602a2 684b77bbecf9f676ba9cabb9b713a84a 684ba3fa8f073e3e4253c26d0f0ada00 684bb5f2b1151287cc0eb50909036878 684ca46efd79301bbce75725e1033f18 684db6c884bcfae2070ac4c1893d16ec 684de2406f3fb1e046c1e5315aa33553 +684edb33ca0144fc49eae0da60d20f0b 684f1429fbed328b9d29845f74167055 +685142c76b141e59c3b64c71e506aa69 6854b5544f9afd253c92252aa3375ca1 6854c3208a58f66ef7424604564a2988 6854d4a813e8af8045e8b83e91cb90e4 @@ -23613,9 +26369,11 @@ 6857acb1c8e143d73f452c1a64a594fa 6859dfb5fb3e8cd2041d45057cb5be3e 685c89226dfa5da6fde3deb35f5da7cf +685e4c600304f52df984ede2ef63100f 685f39c68eb697cc32d6d2eacd4fccd8 6863151ef4f7f8bd02e70ab995349826 686479b9fc9c37cbedd04c58c2ca2245 +68660b5f4eb8931dbddf579c5e245b50 686619c37260aa338853f04fa727cfe2 68671327dd9fafff08ffb0229982f39c 6869484fb2cd002e734d6274a125e584 @@ -23674,19 +26432,27 @@ 68a983d6f691f22d0b6bcd108eae1428 68a9afea650d572ccd84424aa06157b5 68ab2ab6898accba44be9020b36a9ed0 +68ad278870856616da4696ec8dad4b60 68addb9d67e8e55a7460bbaa1163fb30 68aeced531a9cadb91ac7eeeef23986a +68afe57bade6b2bdb5c9f442f60be739 +68b0cff047fc4c9c28e5234b743f83e1 68b1d34bf34981fcfd29dfbcd1803928 68b1f564ad2a298c3510e036d334ddb9 +68b22433413d257879032ded125f796c +68b22d83ee36c62ed9464efe39d3f38c 68b242ad079364756b99b6f19a31f086 68b268fecf172bd3ebf20b7d711ad139 68b4f424458017275c588fb3e108f5b6 68b6165650e762305d6588bc8875576c +68b68362a647a6cc84405956a42682ed 68b8fb238e9f1649e96992ec8259ddca 68ba413fe46ab0bc47b4f808b9d930ba +68bb120a0361e838e243d6c2c2916de0 68bba239505a30ebbd9fbaee63becf23 68bbd1748bcf38c6ace70e4578f940de 68be09c59c1943868bdb48da8eb24858 +68be1e52646ec25131dc8e7256dbecd9 68bee79681eeacbc00d94821612d25a4 68bfac986f5f2d9b94fb3e4fba6f71a2 68bffef33c52e0aeb031451526bf7401 @@ -23698,6 +26464,7 @@ 68c30942da08f2fd9bd0e56093ccbe69 68c487dfd58bfbe4f380fc124bc45260 68c5c59c0fd073e080080081f410c38e +68c9e00a836f7d981c2fe7d531aec132 68cb223042dbc5cd4a696eb209ed6d19 68cba8759e21db92facbfdc870e1fa42 68cf397ea27e9d377813dc3bff529107 @@ -23709,11 +26476,16 @@ 68d42683eb8a4fe124fbdcb8fa0f4c62 68d4ac182666ba14318bfdfdf552ff1d 68d4c9c5066af6c484caba5a3ae1b3f5 +68d54f810471008c62e32e65022b6a03 +68d5a1800bbd75edb01e7674dd811861 +68d5e5db97df3a28ff02f95070a415ef 68d60ad7ec6faa9cb314653408e5346c 68d896d9a5649498a42776fc417ce0c2 68d8bdb2e61da8aa12cdf3c7bf54bab6 +68d914204d89654f5fbe551493384c82 68d930294b08178f3d143fc17ff11394 68d9ca6f33f8edebf9bb8a2208fb3bec +68d9ed12219f2aabbee9b069b7314577 68dacb2979a735123e05241e59573faf 68db93d5ee3dda75d78697b1d49e7be8 68dc5eddf921465aa108c02a57d4b7e4 @@ -23722,6 +26494,8 @@ 68e12504f3c0b631ab0feb60b561de51 68e1cb4695a93ecc7975eac9d4e0567f 68e3c497975b784f5d98c7d11460cced +68e46c91604ffb49ae6eec44465b4b01 +68e489aa0f4011a250315ec52a6bacef 68e4b1d5d2f29ce412c667d8caae4a4a 68e5568de325176afda38ca6637e8a19 68e6652e6c0a21e7632bb35657fecaa5 @@ -23741,6 +26515,7 @@ 68f09ef8bdc6d52316be27dd82a56f18 68f17cc3682a2b804b024f3a23f33ff8 68f3b2a2d4bfa2eb156784fc5eeb1b55 +68f4f3ae24367ae8a6b0dbd4eba62ce5 68f6618fa39b27fba8ad9e13210c4e01 68f777fff640be1a999911b93fa1f9de 68fb55b385f62a5a3c27b7900662d4d8 @@ -23773,6 +26548,7 @@ 69153f0c9ef8ba4f69f8dafa298c7898 691593bd34cc2afba45f45af52f97323 691601ff58ffed233ce550c4a4e12fc1 +691668c765a189cb9af8243cb0c97151 6916904145f942eb3e6a12b6b2027278 691947ebfa6134723dbaba995a297e0d 691bc1e42ac28c31249ced51e2944136 @@ -23804,11 +26580,14 @@ 692fd0a3f6fc296218f7f57a94e62858 69306c186a6b94d024deca61a9ed54f6 6931cb0e9cc8b4bae90d47d12f2e4de4 +69332e449f20941ccd5945a1f54e46de +69334496a5ca80485a7acb9d44faaa79 6933a0bdd38172eccb0198021a097f1e 69351b4b8c0b500bfd0a83349a8f5058 693573045f3051f13c68f892a6e7171c 6935860c0290a88b6e0cf70860d008f1 6935fda7447cc397661a8dd021636bfd +693601937e1465756f3bf53820511109 69369dc518c14f5d3427d011ccc4cc02 6938aa9c590059d106570e5cc3727735 693a739d09aa7e9984e3ad496e3780ac @@ -23822,20 +26601,26 @@ 69428c2afcbe6470e3789ec5a3b419fb 6942fc929759931bf2b68351da45e5b5 6944b6298d85bf250cf02c86efcc2305 +69458825f29aee866830880bf2e4a271 +6945c4c7b6d246ae16e30da2d95ec31d 6946335a841b135a1484b8f057ac7674 694844be61d51afc6af70fdb38b94b3e 6948c7aecf5dc72cc9831672caafb6b5 +694968fd21da1f23bd0770e9c61f96f0 69498f94d3bfa5e2901e6b973b6225bd +694a0d451dafa3cc4fe1f69bae0f88aa 694b2b14e3eef8e8ea236cfe139c2e2f 694bf48a56d28898763aa5bed38e1b22 694c76b6869134e6594d276c70f73440 694ce0e1bf1b7d9bbcb12bf1bbc63227 +69502fdaed0081b75b093c248ecedd76 695056b81b578931910021c9c5955059 6951805bd57588459905ced7e95dd08f 6951d36863b27a1951b896b765778ff7 69521fec2454d4c6c16da9cc209cd746 695221c9e23a9a349a1150f4a4b30a4a 6956b38e87a8f5bb6fb7e4e6a75e405e +6956e400f7bbfdcb9951ca4d9659aa84 6957b90a812171e2281993201a106416 695aa8e7d05ac220df41580a6bff32d9 695e3536112bb72a7fa6192c3d861893 @@ -23846,6 +26631,7 @@ 69655bc0f11ed618f4159f48c64fd9e8 69656e40287954c5ae46c5003647e288 6966a04c4a143bd13addbb82f2672343 +69683f19791fc5ebe4d763298adba972 6968466f089b8a58bc51301c9d9c54b0 696c1a59db8138a585ac243730dbd6ee 696e6b74936dd64399b90e901f2ed554 @@ -23855,13 +26641,16 @@ 697167dc138ad560e2b508f8ed746b09 69717e3590ef2c9ef13b07e08647621e 6971e8ce434cc6cddd7f3b1bf161644c +6972014eca523f895735c8eb64fd2fc4 697224086eee8cd3511d3967e2705044 69725e935a3e7c9ab3370862b33f6730 697285f312b25d17f05ad8d30ea8f0bc 6973d6480eeb02baf665f9a235db850c +6973d8bc23ed22496c378b3844eb3a71 6976431788ff260356f43dee298d55ea 69764c8aaa8bb89f105b716d78181bd7 69766959fafb8982d39b13c86700db49 +6976f631b00976ce49d0909d6a749639 697712ea1ebbb26c9e4dde627fe853f6 697831a2811912b202445ca5be0efedc 69786b177f5a9c3abc04c9f2e0b4a972 @@ -23871,6 +26660,7 @@ 697dac063e6746251cc825f5b135aa5a 697f097cf674811634fc4bb6c8457041 698010a64d2b2661c0219701fe1ce0ef +698335bb3465ec6ab136341454bb17f3 69835e6efea0cf7d9d0ada001be65a84 6983908e95fef62d38923240e3fa1d17 69873fdd95f4a1b8ae2685ad6a29a452 @@ -23892,6 +26682,7 @@ 69928dbbd60a2d60abb39690a10630b7 6993e328808ecf97a504eb9d436fd995 69954de691ba22f96e32451d4b3e87b5 +6996268486578d53398d72e874daab10 699635f3de7c8959b4c427c6cb32703f 6996bd7d09ef788915c25969b6341958 69971b924423333368a0d93caeff06d8 @@ -23901,6 +26692,7 @@ 699b18914659ab9a64bba894924e70fb 699e42ab1d8428d0f0720b6f6563b0f2 699ed6b681d5653a133434c0b0cd48c9 +699ff5f070a5e15af7f20d445a996eeb 69a02c944bab219da53cc3ef67af679e 69a036c59fa2101b725fbd5cd65fe5a5 69a128fc71256fc48f9168d9fe221b32 @@ -23908,6 +26700,7 @@ 69a69ab1cddc1c02190f10b788d54d83 69a6c422cdaf3bde60b11fc815152476 69a6ce64ac7a483f490ac1b31999d0c4 +69a7dca9e48c429906a5784f21d5bddb 69a9197f28a0f60f0bc0c2fc443d7994 69abdf1b94d4e5e9521a013cf368281d 69ad9db8a9f8c9a4d76524a1eb7af79e @@ -23916,8 +26709,11 @@ 69b16900d625df740ddd1cc07206270c 69b1a583108331fd19bf89b69c10208b 69b308e06f01ec00f96848201ee47a49 +69b34907afcdffa8c8f8846203fecc2d 69b43ba137c5327d081836b62f815a57 69b5817c34c105350f11e5acb1988504 +69b7574c7308eb5f9d52a88fa033f59a +69ba3f4324d87b74bab12cd2fc48fd84 69bb3f8a96e73ee743f3926f04558c92 69bbbdf5e7cdc3ee6592671de2ce3610 69bc0d2ef916efb6cf8ea8a02d4b4576 @@ -23939,6 +26735,7 @@ 69cec365001a772a42398da78558fe97 69d04b33baaa2aee2ca0c8d04c254e8c 69d06c604319a2687048ba28a2b0d278 +69d10edd80125cce43075a0cc2b4eba7 69d11fc736c9a53dcd1c88598a88fa9e 69d16b311cfeeff167447bf7ab03ca89 69d280d6ea5ba07d8b28ec06aa63b148 @@ -23948,7 +26745,9 @@ 69d7a0286da31e885a85e62c77064c60 69d828844f960bc9a675c1b1d3b90a5e 69d8e66f4bbe5e89c8f1f9f230a9d387 +69dad9c0aa118ce03a43ce9efabea24a 69db3d300ff1fc897cff80654d3787a8 +69db5cc45234ef0b289fd50cb0914a36 69dbb71e389eedaa22f5f61ee92fc5dc 69dc2ea9ef60bef771756260283c253b 69dc762f367ccb7c783e12b7322bbc52 @@ -23957,6 +26756,7 @@ 69e22efca6d3d6d6f6720769cb383131 69e5e61f392b138b8a60a0e01ff1111f 69e65f51696d3be86c5af84042d97ba8 +69e7de9ed4ca0ebdad61b9771aa2eee5 69e8e1f1d3b3e862c6a86ba757d3f026 69e9162200680fa0126890d09446a276 69e95d6d4f14b098368ea7f635010783 @@ -23970,6 +26770,7 @@ 69f613dc54f072ca5e96ed8555c3d74e 69f64f29dac017d7a4fff5591d921736 69f69d685673df7def6a900fdb0b007d +69f9abe4f962e06f30e12845da2b1ef0 69fa6a9c45441f0d1f2facbd99df781e 69fa911fc56dd6416bff262779bfb546 69fbe8dc05378835e36e6da3e40ebef4 @@ -23982,6 +26783,7 @@ 6a004bf7221ec4dcb00f2d07ed0696a1 6a01cd6902194eba8e1ce2264e00fd7a 6a01e0a85f4d8d7e45f3a6ed24614e4e +6a025d88d3889c7e3577042072db3e39 6a0399abf9fe9f8b8b8dd83601bdb3cb 6a041e58af48d4b1629a375f09059ff1 6a04816a99842ea190d78cf90195d6c1 @@ -23991,13 +26793,18 @@ 6a0817a09796b2d4752eee6b6d1ab314 6a0822b747a78535a43401bd55ec9c4d 6a09767cbabd3984284395f692a65ed9 +6a09957caa03f144ff3de02a020b6cf8 6a09daef3823f84e8d4a8c0702cbc469 6a0a7d914b01a4de59c57a4aa9d1140a 6a0d47fe329905c5f35d2c6d27a9786d +6a0f58a4d253a52c536244e75bab9604 6a10862afc8d7704def9aa5f7ce877be 6a10d25a1d9fce702110f5c456d44b77 6a11110dc559e8a23bd5d5d2a486fec2 6a11737ad40111b4464a9a3008538dd5 +6a11c453e46ffa2172f4502a85eebf4c +6a132acbec9d6dd9f1cfe71e1b8f0348 +6a132c18aeb8554e7830421b3612988f 6a134c24e4035acac5b4107aad732421 6a167f61d3c331577e2a3f8d2626d614 6a177bff5f89b58390b092f846de974c @@ -24010,19 +26817,23 @@ 6a1c43cdc0a2af5f28240a743282d8fe 6a1e74c6a53a178b0f1082d2ef5793cb 6a1fe91b1691b53795300cd10286c915 +6a27598307a935d5b253b02acbdacc5f 6a276944f70c754de0e74fc2bb028e99 6a28482a2110fb969a037a145f9addd2 6a2ce2a6b507054ea368049c48172d33 6a2d7b282b5d13bea6f5fddcad447fa1 6a2d7cb4820aacc516cc1fcd1bb07b1c 6a2dee4c2b7666a1098c307f33dfa0d6 +6a2eeb36ee034b8d33e654b2a5389954 6a308eef936d7bccf64681380dd8d6bd 6a30f252a92357e255a63296f8c02ea0 6a31e57059f3842dec60d7ea4a501f31 +6a3357257180a218bdb695ba1183593a 6a34201e8d62446391bd1ef891099b3c 6a358c4c7cf80d0893bb037632963aa0 6a35de89c2e8f54e1a1ede05f0cff37d 6a3903c657f49a62754cc12c0e46477c +6a3b1dabe44ca94482bf62f566223f2f 6a3b46777a1a769a2c279f4ddb62f4a1 6a3c28242cb2fc5da65d0940b9050fab 6a3c291cafeff82e1d63b679f242407f @@ -24031,6 +26842,7 @@ 6a3ce0853d904a658b8cd5794570239b 6a3ec7fbb8aef2081c806813775ab399 6a3f4531ce3c516f0c1c81402812d3dc +6a3f4625ffaa402ad49578644e8bfd34 6a3fa0eefa4d42d33e813ea082a120ae 6a3faff798f73e6a618f7d78fe98ca6b 6a3fec32cdc00dd48d7e493183ed2519 @@ -24038,6 +26850,7 @@ 6a42ebd4ab0fad4d5469205c4e88af60 6a44e5efb4ec9207d0eecbb08bf73a89 6a4552b94a00dafcc3efc009602d42a0 +6a467733a42b1450c78946d1acfea374 6a4a9b5ba1867f7c9f9536e54a1fa22e 6a4c63d9a7f5285c2c10ea3c1a63c2aa 6a4ca8e90dbd7b46ccba6a911b39c258 @@ -24062,7 +26875,9 @@ 6a5b686a3d4479ba9aa64f29830e5ab2 6a5e0ab1eef1d623a15b0b235175d0a2 6a5fb4e3c340401176213708ad54786d +6a6112f312b9d8bd2da2075d937a6567 6a616e4fbc57b64d8538611a0bf0a423 +6a61710babc510940b7d58180e490ce9 6a624ccd9e0ae51727292052f2414861 6a64afaba216194e17d8d107b75bdc48 6a670c9ed095706958eba3a2f43291ce @@ -24070,6 +26885,7 @@ 6a67f4df21da98e27649c2d09d781d70 6a6849e57b723c558f6a07d24510be21 6a6867c621d7272741dbb7e73dd3ede9 +6a6b7a07c2afbff4ba17efec45edab52 6a6bdd9a9588f07beb5eaeadc0d611b4 6a6fd9fd12392f7b9b20ffcc99bf7408 6a71918f3a5fd75f7fc8a82deb9a15c7 @@ -24086,10 +26902,13 @@ 6a82a5fef0ca8d90954e044af1b90e55 6a837d867f247e6cd8e5591c79d7b2a3 6a8479335cd5e6e54315a0a293e75da5 +6a84d55a489e873dd35ee9bda4173d08 +6a8764c474b93183dcf2c37b970dd7f1 6a878e02661393f21540b5b3b44279b6 6a8a1a3a16f78294ce20a926ebe181f4 6a8aecb0dbf9717b4f2fbbff40c4799d 6a8bd0ce1f8e39c9520cd5fda3d76a18 +6a8c98c9c5ca8d39c49464382fe410ba 6a8e1c8a6cb9217e0b92b79ce1f39173 6a8fcef0d289321d6a9e65d92633eb4e 6a9001fb65f21b07d0360397b502929b @@ -24161,6 +26980,7 @@ 6ac47088491ec82ba4265a895cff8397 6ac6c748b44b363d8781704dc705d2c1 6ac80ab0a965806ceb264fd50cc81f7b +6ac8437ff12277fd09707c4758e1ef19 6ac8a61f30570324bb4348f0f88642f1 6ac8bc5def030239fc7584dedd93f396 6ac8bfa3a6d5a6bd9fe114308e413e66 @@ -24171,8 +26991,10 @@ 6acbd0d5e3c9a399edce1c382fc9e329 6acd8ee19e14499026490e61258c2272 6ace6b2b9672f137929cfeec9a63fea6 +6ad1358904a29c60a32a030aa49da120 6ad234cfae5e0bde4d9ebf8e4b145e29 6ad32849be3b52f78272a19b347f2552 +6ad5a859183f32cfa9f0ddc56ed8a79c 6ad6e3cb7804031dfe989dc6dc1f31c1 6ad776bac1add7b139402fac1dc366c7 6ad77dbcc9ad3b62c4128505ba95159a @@ -24197,6 +27019,7 @@ 6ae6f4f0f166bfa2fa4360c6331ebd4e 6ae75fb9b4df45c5c61f985e709e4130 6ae7b53bdd65e6a808034c90d7c5da12 +6ae7b7152d2f888b716b49d150d30a45 6ae7c6675fd15d925e6f3dde967397f5 6ae7e3eed8062d7a0ae96fb21b397b86 6ae8990a3783dd6e91007cb5ed232858 @@ -24204,6 +27027,7 @@ 6ae937184d0307c3339e3f48dc23ef69 6ae9b38f0c9cdade27387f957784f172 6aeb006bbf90214bc37f044810959b42 +6aeb1a18d494364a3cb63c425b809c6d 6aecdf3f8b468f195592e07cef30631e 6aed71bcd1d7dc4218a7da47aa08f4c3 6aeebfc609b3cb8d9470787fe43f65fd @@ -24217,10 +27041,12 @@ 6af43cd0668cf7e76b97112fbe38ddc3 6af4797269dd543e31d148097022c829 6af4cced14017bc71d82e19dda001a45 +6af4de15a002cc8e4f2f188ad4460183 6af5b105930dd8e238da8ace6690f077 6af6495c0a991eff0b913049f7f4050e 6af68094045ce396e402752b857b685b 6af6aadb2f71e73f05305822a22c93a4 +6af741074144674040ad0a3847583ea0 6af78b7df0bdbc3d2224d421c2a4f766 6af7facf91d029ab0a07408e420e142c 6af810d4fde7cebebfeef5450904251a @@ -24251,6 +27077,7 @@ 6b0bf198cce17552291f8c7c61e5bc86 6b0f75291eb5ac99b143b60ad828a09b 6b0fd41198697c6e882ff8f467a940c0 +6b0fd5bd2c59093e33e09b61d3cea422 6b1010174bc4f4e202e9d1cdb14e91cb 6b1039545de8b792f8de3dc7a98126dd 6b118016b4aeaf714f6f731ef39e3369 @@ -24260,14 +27087,17 @@ 6b14f84982fc9d5f277ecec65e0b4e3e 6b1587ea065b5e7505214e830e3a00c9 6b1620b3990203d01aecf82dcbf7024a +6b165a0cff9dce861087e314bfc97569 6b1681aab16dc7ace61b32aa514ee742 6b179272e475f45d1935bb0f484e79f7 6b18a2881d187fa58c1fb920f6480d5d 6b18f227a0f7e2e513baf4178ad9fdc7 6b19a4e583b8ea1dc54beee28ec4054b 6b19dd159076abf23ac2686be8e66bec +6b1ad192a01156de01417a7db3b34556 6b1b31e610419b60b043cc1ccfeb381f 6b1c77fb814d0210bb3b11dccc85f814 +6b1d8c9f1633493d5cc67dff25f9e8c3 6b1e632ffeb6720272b57d48554c90c1 6b1ef48778406e9d2056bb30b7f7e3cc 6b20c2b0731659fa5535f7c41db49f66 @@ -24296,6 +27126,7 @@ 6b3c2ae9c992991ace87e1b35b716a8b 6b3cbd5df915c7798cf5e78d37c50797 6b3eefc27543fa6045379c9a305b215e +6b3f6ed0b4ac6452c516db47cea53ed1 6b4011694081765e43407438553389c4 6b433f5988848713eb9145c97ab43e82 6b439bf9b8fc5d63bdcbc2ae3c17a0fa @@ -24305,6 +27136,7 @@ 6b451bf110a6660eaf1c73a805e2e7d8 6b4650d2d1f361c3f76afa8c178c7b68 6b47e1423664cb28818ea9cdceb7810c +6b4882a588c507a29caca82399703157 6b49c9a6e9e0ef307ed43412f4e835d4 6b4a50c0b809116c3a74ef18c2778b73 6b4c11a7cebbe7a9000ac9a5979ffcc7 @@ -24323,6 +27155,7 @@ 6b577c3f7ae9cb642a71192dd96b50ab 6b58bf4ce290a7554d65749eb4ed5336 6b594e19172dbc635b049d1f2539aaab +6b598aaf248b3bd54a847cb995e1b924 6b5ad70b61674e752782aa15fcaaa4ad 6b5bb88f3f92a42c9aa7ea6afd25908f 6b5d64b01ce718a3747db348ddc8e046 @@ -24339,12 +27172,14 @@ 6b6d58bd9e0764f483d1fd1e5a5340b9 6b6de4781d082315f38c90dc6c2233a8 6b6dfecd2efb14f89075f575525c90ee +6b6e1e3848ccc3e4d30fb0d8c6050e89 6b6eb66fdbef789077b5db61e69e36eb 6b710cf511ff60f25b73dcd712560a42 6b721432603e5ffffeb5cf6424a6c962 6b74819a794eaa975e852df65bd6df4c 6b753a2e6feea9dc4f264405d9c8fd05 6b755c4b36149a8c468706f5d7c79f51 +6b762a35994492bf1523af5c29d4e95d 6b76dc6047e83e0ea30bed251a1b25cd 6b76e2d755806dd1e02d0410835c6584 6b7ab50fd7830de0c36f799e77a92e52 @@ -24364,11 +27199,14 @@ 6b832ebd5153b056ce3decc4f9f4620d 6b839cf0130457a4dac7cc24e5039ff5 6b83aa0cd4b31f90dd35bf34480d86bd +6b83baeb1c6174e64800863db3c13dc6 6b85cf79dba03300edf03e278d6dd077 6b88e542f3c1766a949ddee931d27b98 +6b8a6bd159ffacaadfd8773896a38f50 6b8bb991367aa1cd2612fd2d2585ed92 6b8d84441411270998276c8387b12a11 6b8df5f06a47a6780a14f01addbbfa4a +6b8efaddba2183beeb7ec815baf9f9a1 6b8f0fe402c4999cf22daf7979bdfecf 6b9111b9f49826fbd0873edaf96bca5e 6b927079df87f1151006343c0a9c178c @@ -24376,21 +27214,26 @@ 6b933e25c81bc015f6bc2188f8446d7d 6b93f3be03fd9d52dd1cbc1faabc975c 6b948bcbcb52ba99cf4e29b0246fb939 +6b965e006bee41f012f6dc2257829243 6b96b6107bae6a0d85b0831267e6d1c9 6b97f71f83f042d450e0af2b38ee2c36 6b9a30079fe532a371dccd956fdfa526 6b9a3a04fc40f0ad4a0d2fd4770d8f20 6b9c3b0b55f757cdf3a70d35892b7794 +6b9cc757f59980234657d62b18d57189 6b9db7a3526ef6f32c84b7d45a819038 6b9e58a9c80a2261bb86d15178241c01 6b9ed9ce460dd8241abf38b6e14f9870 6b9f32749b8c7645d1d86a9451dd0fda 6ba13802e986c0accd9c58c439519819 6ba2688a69564590402452117e700e45 +6ba2875a476da1f0131986be7a913b7a 6ba5070812e9fc4a990fc04781ee6a74 6ba5c657530a89d4730975ebfdf7f210 6ba622f41fbced6e070ff151099c75d4 +6ba6deea8acf7e5c4517509733a73265 6ba7d3b5ec357222d55811344f8457df +6baa9491bdf8823798de406db0a37452 6bab3b3458f8f4b8b722e8ff99c58dcf 6bab66265075dc238d94860b4e2856be 6bacafb91aaf70308040d26c551db87d @@ -24406,6 +27249,7 @@ 6bbee55928265a95f9815df4032356d9 6bc1619bcfed71d764d77bdb71f09678 6bc1caf3c7f62a83ac6eb2afc50fd153 +6bc247700c4a2bc3dfc92682a13bd93b 6bc2c29d975ccbb92e54171f4391c3c6 6bc39c69b59a715fbff2bcf232de12a5 6bc3f5241bf0d2b2a29895ce123c5771 @@ -24414,6 +27258,7 @@ 6bc72ab7986b472bf24ddac073d65307 6bc8fd58be131bd5c864ec9db93515ad 6bc9206f1876db2d3f9afb5f850b3448 +6bcae90e724ddffcf7f99990e6cc4703 6bcc3bd5fb727bac90e6db4f66abe20e 6bcc546507c3dcf0e5c4df35a667a2ff 6bcc9b2c3d4d41230e6457f170e02e37 @@ -24444,6 +27289,7 @@ 6be66484ac02f1c404775a6c33131957 6be709e93fb3d26c7184d0f7829f2825 6be73251574b3e6318ba374858b13d79 +6be7599ca2b78d001bd3f2a70c9a61d2 6be797c46c3a7dca4d0b11ca9daea458 6be89877f6299a75db3ef2a5b38e45d1 6be8d45a7362a9bf00ecdc571924c4ee @@ -24467,11 +27313,13 @@ 6bf9e713fb27e24dbe124e0d8503458b 6bfc027794c9f72f417e10e4713a5aa3 6bfc32d585bd3605a596948db76828ab +6bfd1e1cfed1c46536dd58f369d7123c 6bfe8a6a64d8c3820b362291ebe05864 6c020d4c3f83f86c4e629497e872a914 6c023b923352f6618c890660356aa24c 6c037651131bfa50414ef24bd7a94e0c 6c0443ad7f73c72b566850a13efb24bc +6c048e7ee68e0f52227a70403adfa3f9 6c08e20374065f853e901a2ad0466436 6c0a021834a4c687c7e2fd3cf431d15a 6c0a8d72b3c42c76000d7dfb0dc0e537 @@ -24481,17 +27329,23 @@ 6c0c00d17f1c1ed64dc7a6154ebc0753 6c0c9305d77d2e7b05d2baeed3a6fc60 6c0d809fe6fb5b1dd6f747e687e44872 +6c0d8ef9c8c92bd652df923e17e1709d 6c1142b431d305efcc6ea8da1308d164 +6c11627aaa63ea5148b68e7ecf85277b 6c1225ab582f2f70e15de02edb59f92c 6c130ba270cb3d4c182f2986b9cf3ab1 6c138f5becff39c23040bc950a88d0dd +6c157a825feca91715ed35cf71313d92 6c171e43594a5d92e96adc40c9f01a1c 6c1b19a6a1eb11bbe53b4c98f6c7568d 6c1cd99ddb4b01a7c08077f9d5280af4 6c1e0a5c6969c08abb78d4d078ad445c 6c1f5f5a6fee22540507f0d73d64bbc4 +6c208cb4ee2bcbff57a9d995fe067527 6c247ea7a91efe16861b2a1453e8c4f4 +6c2640647eb519bd7ab5a20f07dc22b4 6c2711d05f4b20a5039e1609a97632f1 +6c2835d640f162e7c4af576cc6c10e0f 6c28aa863807f67ccc3bc3c18563ff17 6c295eaeea1b40d7a2e236bb8de4b49d 6c29e4042f33e4b08044caa12bc46227 @@ -24502,12 +27356,16 @@ 6c2d732c306d53dd222dfb4d77342943 6c2da772a8003f7f11f3b6b2dc0cd369 6c2f19d0cf81ef6f3be35242c22d4150 +6c2fd6de49045bc3f44590a2d165b3cb +6c301504f4dad0eaafddc2a7d6e9bc88 6c30b7fb38d14c60d9e8daac0c1a634e 6c329cd42cbaf846302d357f7e9ee3a6 +6c32ce812855aa6f1c563d79693ced81 6c33d84e35f77e4eb3b61ceb723d79ee 6c35e56c2c66853aa779076425ad0621 6c365a92f85e041a6f07ab560ccfb1db 6c3742ae171f1cfff59bd5c3bf27ecc6 +6c37543d82ba8c3c60cec6a3c5272271 6c395fdeff8f49dee2d9e35c1f9d1c97 6c3a281663b7f49fda636882e11c5c66 6c3aa048100b11a97a6c0dfb8933ff6f @@ -24529,8 +27387,10 @@ 6c498da3d6c56fe43f4ea6a3618a7c40 6c49ebe264f24667d03a4c66b458e63e 6c4a579ba82f9f6c01a6c87bf6908f68 +6c4a92e50810371f9ce310a5b19179c4 6c4a958b598f5defa51c51f5fa1293dc 6c4bd0d7c65373ef125fbfaf0b82b7b3 +6c4ef4990e775eb5f5a176cd473e70a5 6c4f1d82603f856a1f05c7a41b612662 6c5082687a6fe9484542769c63529e83 6c50d5933cfb83cf35bcabc95e705b59 @@ -24546,16 +27406,22 @@ 6c5a8a47b8b2e8e73958c2b4c08315d3 6c5a9c68be6005af960c8a6eb4217621 6c5aabc4359050eaa7566ca67ed17ca4 +6c5ac81ac7351f57a3c3f9b2f6bb0656 6c5b354dc3c389ac586de8fcb94a2392 +6c5f4ad91f25ceac8cb1d97b3e29ab5e 6c617e5c1445ad211d5ebe0deed22226 6c62901f34ceac49e850944c60abfcca 6c640c2dbc0535ac71e645d2dd43e718 +6c641a113019d39187cfffc176ae5a7b 6c648a98859c609df0f23f084088c7f4 +6c64ade27666b903c5ed5f7b5c98dd92 +6c64dde5a8c130cb9336d4e3de03304d 6c668ce747cec4db799b99d321686251 6c69111286d42034a2f18eaa275e7418 6c6925aa698534b879fcab37350d916e 6c6b62372144118a30f51157e4e82abe 6c6c27c7e06bc1bbc9b7bd4847d43423 +6c6cc2c65673502493445b8759d3ed42 6c6cc96da6c0882a6b2655c7bd9aaddf 6c6db2f9a8f198fb67a714108f7fcba5 6c6de5837383b6fa58efbdbf59e69a6e @@ -24574,6 +27440,7 @@ 6c7b2831f30a6f3b9f3fc1f7b11f12e7 6c802883140ba8fad2bf94699fd0eae2 6c82ada8d2fbd5c37827264d8298a69b +6c82c45ac9909650e3f71839a6e32785 6c82f6e093f57688f222cb61662c6c98 6c8399a5580bb1eda64155db4568d464 6c8495ae7f800718db598f0d0d64a012 @@ -24585,6 +27452,7 @@ 6c893a1f334d535b4bd7f79111f75bb9 6c8aaaf6cb42365699c7750d7bb851fd 6c8cab826b218e1ce10f1a3f3e01370e +6c8ccc9cbaf06bb1de75c28d0f01c9a7 6c8ded9771bedab36912de8c16854e7a 6c8e0d1fca519dcaf95a06bb0397e052 6c8e6585d9f6a2c807ff6a3c49f72a3f @@ -24595,6 +27463,7 @@ 6c950422996089a409bbcefc5634c48b 6c950ef65e80c083628d4d0b19cc17bf 6c956d7c657f03449ec0b35dac538c56 +6c95bda3fb09b140cb7d957c49cafafd 6c96ab98b191027801796cc9489e0ae6 6c98887fe66a9b66ef09a57949dfcc0e 6c98a86a0dc546c247bda66e4ba1e70a @@ -24608,7 +27477,9 @@ 6c9ee5307e0930c9c6fb720bf55b45cb 6c9f25b9522d4e7ab697d8df51153b70 6ca00fd41ad9615351a47b9161a19dbe +6ca1e7c3aba20e1f834b513ce9668dc1 6ca464a6216630d5a6407e0e49ade257 +6ca51f70733af69a7ca674f8833afcb8 6ca86c0f8c0f9365745612a494fdb21e 6ca8bffbfc53a23423f3630ce6800dd1 6ca93f483bf4315df9018ec3c32de5ff @@ -24626,6 +27497,7 @@ 6cb722bf226d03025cd89ece0be10721 6cb747f4d2307aa2377f28cff4b3c68f 6cb7d44fe9855f0aecd06e1c0f5f1f3a +6cb7fb2d2f1181d745c2f57b1aead14f 6cb9ae8a1664f705ed9d9258c96947b0 6cba0875d9f1143f67ba724ddc0f9f50 6cbc209a23896b517138943fd042c4a7 @@ -24653,6 +27525,7 @@ 6cd4a956ff5d4ea4b37728c435332670 6cd4de7d6a98d3e2e886638a67485462 6cd6247344c220522cd0009bd8967f81 +6cd654f700e2d0c4880babb2961311c1 6cd7bb83b2eeb96b4a7d329374181de9 6cd80634d97a8cb858e7d1f50de36e0f 6cd8972b15899ff2d0dce025e690a5cb @@ -24680,16 +27553,20 @@ 6ceef4fbd458d99a31082f6491d1698d 6cefc34af5bccae2284ad5ece7fbae24 6cf11005a3830172898f5b57818f7fa0 +6cf28d72c192225b353868accd713437 6cf353f03e440474f85c8b75064aea8f 6cf4f9383d193e09d37bf58e9c887ec5 6cf69f1dcb555fd24d45d8c92e6c576f +6cf6d7fbb85e9fc42e7463996e74d769 6cfa20c09f8bcc3cf3f16f2ba79e2dd5 +6cfb0db867f44ae7792574222c78c46f 6cfb3448fecfe170b0e07c218fa3b268 6cfc2b27b1b6956e8205308753173ffa 6cfd952e2dbe2d67d0b98baf053fdc83 6cfe982d9fbe14c0ea70404e73e99374 6cffdd435cce01fc4457da7523be2021 6cfffa42ff44203a497f44ccee883e6e +6d00736a74cf7e6047084f8bd1c2917b 6d023d99c894a19843146de756165c92 6d0342ffe8fcd53b5784403dd1c45516 6d0491852b1348c99c8aeed7f737e88a @@ -24699,7 +27576,11 @@ 6d08900e74035da9786d389031fc7aaf 6d0a13400f91bceffcb4ee0ce5d5b358 6d0e536e42f4cbebb5b301957bc0395d +6d10a2caa149b73d0ac051d7ec590ca9 +6d1218f39551c5f40f0759179d7b7713 +6d1283f733be5f57af75eac588d835f2 6d13172c301c39feaf83d1d9c54355c0 +6d14c53d21046bae72d80107f895d33e 6d152f9185aaa7267188145d02ea46d9 6d158e2e24a4ecba5564bb78ffd2f670 6d1655c85b94ac1b1ada1bd03471c7d2 @@ -24710,6 +27591,7 @@ 6d193203f7089b8d411fb3043cb3f412 6d1b4fddf9cbd47ffd0b5c429c7926bf 6d1bd4ef7293d195ec61735acb2e1df3 +6d1bda94ca58db3d76742cd51b7a6a13 6d1c8c7df4e04ee1f5726775b81bd34d 6d1ca0113b55286ae606110d4f7cf185 6d1dbb6712d7ef76a659d56d43d3711f @@ -24726,8 +27608,12 @@ 6d2c5045fd20f1689cc912dda8680046 6d2ca63a190e50ff6df7baf32711cba5 6d2d6f4309c21b5a5ca1be8971b0ba98 +6d2dacc2e734486e1061126ad34e9815 6d2e403c78034ba6444718626b063ed0 +6d2ecc5659d761b38afdf14fbd22a9d7 +6d2edf46092b460a8d238243dbf0873d 6d30053f0405d44071b1010d8d3d2c96 +6d304c5b161d40026877143a55b233b4 6d305d365a5739aa5885595754a0f726 6d306c1fff21ae67a83c2afc7540e018 6d307b61c62020dd5a9f57679fa074f8 @@ -24741,6 +27627,7 @@ 6d37f4a2fa064b8fd0828856a06c8797 6d3a0f41d0c3c289aaa894be4581f216 6d3a9492194a33edf3da8827711f93d2 +6d3ab910e042563e1aa25e0781433270 6d3c6298ebe90b60269313f5405339bf 6d3eb1d55fa3def926c79afc34e221e7 6d3f1a62c14b36a2bd594f413f0d9c7b @@ -24757,12 +27644,14 @@ 6d463c7157a2eb1145f92cb2cd2969b0 6d47bd32e6c42a59de10f887f4e154d7 6d480d39cc24fd4931a58589dbf6147c +6d4b104c600fd0026c9856f869099556 6d4b33b96ade747f84357689d8ef2d82 6d4d9f25c26bf96f23efe4789b59ac9c 6d4dc53eaa9f1b3264db171c6520e08a 6d4fb46c50d81d28fe6ad005d3ed7af9 6d5135ab52a651e70b69c0dd3c3c482d 6d5260490e71936ff3adb479bed5b425 +6d53b4957c0af4e7490ae3068036f1cd 6d547520df5d06eac235eac03a960b59 6d57074900f0d5f55ce18d342d08b479 6d5783b961f3fbcd0ec9af0de674b5fe @@ -24799,6 +27688,9 @@ 6d77b2510809d7d513b86a49c17e4d10 6d7858d395da46cd32c425f4737a4615 6d79c2c16c5562f8164be3aa4563bc71 +6d7ab28a41c58a20c53adf322d8bdca3 +6d7b8c6f452fa3f1a4d23181293eeb54 +6d83b05478d7237f721dd432b771dc6c 6d844b0d86631a2d8e5bc898e9d36b57 6d86a8492f95c3b491d4aba349601a64 6d87237d40fb24e33bb059fa0e4ca984 @@ -24810,8 +27702,10 @@ 6d8f6f5c61f814703ecbf42f970a9b5d 6d908df76e65a14c19a2eb03e2877578 6d919199271a1b3283f4d19c0b1239d4 +6d92ceae9c741640f89899eddfee33b0 6d92d48f4c3a62dfdf3b7f770d08da0a 6d9331bc36b5c2d61b94fe8ba64be367 +6d9376719e000183cbeb65a0a1e9d14b 6d93c745a45ef2d05a8dadfa6b0d0a61 6d94e0f956268d681362abf96cac28c8 6d955034e0a39e50e549b1ed16f87152 @@ -24825,6 +27719,7 @@ 6d9a34926c2c65caba9c4a4c88932f55 6d9a496417581ced03617d2bc2b22197 6d9a94c6b3713d702c6b8457f739262f +6d9ab951ef91df1fe4eebd66aab4a229 6d9bce27a89e366cb504eaf2215514a9 6d9d525faac15726efe7f0312fdd464e 6d9dfa048649ff8bbc6e1d6c7f0d81cc @@ -24832,14 +27727,17 @@ 6d9f1cc7c9822f773eb6968346bcb24c 6d9fc7343ad2c81c90fb8e27c196f503 6da0fda203409f697d921af49820a2da +6da1239caf79f8179e8551995b9dab71 6da1442f8d49a60e41424f7c6ab0bf23 6da2c728b45c2e8650f8754cdc3499ab 6da3866489cc43f6048408ad5fc45fae 6da3d54f7f7684834fe33d1c53aed9bf 6da412357d5b6360e3104fcfda03a2c8 +6da4148fb8d78404d766ce47d400bcfe 6da49cb966459b7637b93aea90d40a58 6da4e6ee9b21cb6527b80e5d46f26f73 6da5d3e13280ea2e4cac89d4fe66bf52 +6da64b1de0c959ac373738c8d3f37092 6da8e3b8f74cb4180fb87811f8903c86 6da937142d9ea9ee1bd33fd3c80dafcf 6da9de1c0964dd6ed315b91d922f1508 @@ -24848,6 +27746,7 @@ 6dabd3fd382180264e649e0e77d7fbf8 6dac14668981f86ba45097b6fff07f3c 6dac1f5b5d65b886bcd400f91f8caad2 +6dacd89de4f47d268fd283f3a07fcfc8 6dacfeb86aac669a8a488c21f348a839 6daddbabb49772432c908cbc897f1078 6daeddc9b55ed9472a156e257dd0c0fe @@ -24866,10 +27765,13 @@ 6dbda9432f7504b50fb2088ee034d968 6dbde825f9e5b9a239152bd3d2e668ab 6dc0c37d0a3a82e7f3f78854892289a8 +6dc233d280b3cd1dbdf9e1887da3ec89 +6dc36c0333b79d28e1972a12d19be743 6dc37f14b78fcd2a0c6a51797482317f 6dc468b01d9151b4914037e5b2a4ef77 6dc685a56120d99446e2b208d9b30f87 6dc70e0b7a629636bdb288332ef62117 +6dc7401d7a02db5ef230ece13f060afc 6dc9bf1d67177d63dce23212f7172f5f 6dcac0be368c24863085d35149f8144a 6dcb042af1f3becafaae52f4c7eab416 @@ -24886,17 +27788,20 @@ 6dd7e704d0a5f0508c959a703ba34999 6dd886b725ce754149df6b57a06655de 6dd90e27a7cb68f70306cefd602fae42 +6dd9143c691d7542daca5c0b50be953d 6dd99a536802f7b4171872632b5f384d 6dda7dce8f347158f375e75710a04c24 6ddad3e486373f33e7c765f4cf33c27a 6ddd6b2f6e020478932bb92eb193b920 6dddd7221d781f752cc696168bcacac4 +6dde0a3836cda6d1793b43121403fd4f 6dde6109edb758e38b94fd87e786dd5e 6ddf319ca399862c002c3b8a3d678799 6de0287a5aadf8dcfd6180601816d92b 6de2235cc21ad5bfff811d7cc33bdfdb 6de346506292f7399f4241b8f67a1b0a 6de355e7f5fd65368af2bbdf5da83642 +6de37756e4354d7c528608fff0c2cc67 6de9000bb8ad7e43d0cab4802982948d 6de96558c560e7a7b498ccba015113b6 6de9666a2b51aded4e11f44d0b789fe5 @@ -24905,11 +27810,13 @@ 6dec1c302ac1406490391c0e2fda2db9 6df03ddeb8f4d12922347f96a7feb9ad 6df07538175cd5b146ab4b9781bcccbd +6df1b29a4b86a83d665c157559ba9a39 6df2bbaabd77f6e8218dfc963eb0c438 6df49ea6740c5b40d70b62e5f358c8e7 6df563f70c194ae0c757f09b27cc8a4c 6df6ab5d1082483040cad79cbce540d1 6dfa337a70fa817ace4f1b4de1bd0d51 +6dfabfd2d8688693d137641a6a31cb50 6dfb78366fb41381d05cba9fa8b814aa 6dfcb92ae1156d6657be96de455fe1d0 6dfd812ebc3218f2fb473c189864577f @@ -24933,8 +27840,10 @@ 6e112018c1d629b8b29ba40bbbbc12f1 6e13ea663958fd6a20e712d8a1c815dc 6e13eb8cd0a3b2e2171abaf5e849501e +6e142a6c263767f8ce026ef0f6b5cdf2 6e152a80dba19ab8e8eac0ffcd422054 6e15ddaa0764200dc5a609fe115c5c2e +6e16b4e59887cb14da5c69b90ae45e9a 6e171d80d1d61ca871ccfa41cf4a9536 6e18403eec036fd39591b01d422c074a 6e188b06f5dea26cefb8b3536bd70541 @@ -24955,12 +27864,15 @@ 6e285abdb67e88294fe39c2c07a1209a 6e291790efa4f76dd89d53abe2d3c767 6e295679db96cbde573915b76177026a +6e29e05ab3693c0f5bc4160d0f93c271 6e29fd1c59447f29711b5696a68d639c 6e2aea24aa1adeeda8e3b8331bc9db72 6e2b7d40b068c4a53063cba4363915b5 +6e2d062e596d9a194eb9e321343596a3 6e2dfefcadf5183f280107ee3e180651 6e2e12aef0db34cf887091b5633bac32 6e2e3c5b826ec01fb05153aa18f5b97c +6e2f165c461d32b09939eae954432654 6e2f6da2c31d34ad4bafbe1b2d42c31b 6e2fe78b12840f98cfdef6dee1fc9c1e 6e3008b24b0a2648bd65031bcb2c6c73 @@ -24986,6 +27898,8 @@ 6e456700818bc91fef02af71f4257240 6e459e7e011eb33d5b828d47241d9bce 6e4bbb06ae8018869b72815e7ebf78fa +6e4c71ce7ec0e23db10f11b71432e441 +6e4cf01ce51bbe17947aecae05b83586 6e4d122b8e3adc5f3998f6ceba427499 6e4decef1f2672d76437587fa594259e 6e4e29e23d1e07dd3095f03ff5f624ee @@ -24999,6 +27913,7 @@ 6e54fbfe80d5f11eab4c5def48112042 6e55d5826ca850f2a97570674dc12d97 6e56099f88c7a776ea295944e2e2f9ad +6e5766d09cedadc18e05c1511be09f0c 6e5997eb6876b02ce9aa5e0e74659d75 6e59d3eef06c237da0006c85479e7438 6e5bbd88c608789b7802dbd3073ef03e @@ -25008,6 +27923,8 @@ 6e643c9dcdca2cf14a7b222858fd27d5 6e65f4022c5cee3d5e420348979e77f7 6e67538f4108989e0f53b6b08371a40e +6e685e7cb75f157b192e35a41793c636 +6e68a37acebf176ae80741aab8f64eeb 6e697cbc912742e1bbcfa8c7269a9bc9 6e69f97a1a4127232fc4c9fde20eb0ee 6e6a6e06fa76e176e90a3aa56ea1881e @@ -25030,7 +27947,9 @@ 6e7d7e8f77d47165738062794caafd2f 6e7e573c74884bd5550e1bde013a1d25 6e7f283ae441ff0f5562acbef754d7a8 +6e7f303fb5189234754746a773c622a4 6e7f3a53ab722699f7c7d39ccae8bb5a +6e7ff38d1dcf11e8ed32943a19b0a539 6e80b985b3f6cda4c0aa0ea210b803b5 6e815af85a34d31bf91f746d69b19e82 6e8171b162655a577a1924f2be18b7a0 @@ -25047,8 +27966,10 @@ 6e9031ccff77c9d72ce98e7c7e53a949 6e90561884e603577f5f4211ae10d06d 6e90e334d900d53f29fef6b92bcb259a +6e934c79728a7d449ff86ee141055e06 6e93968a0965a30ec02ba4a5a62d92be 6e9443acd88f6dd284d4b0ae3ccbbbf8 +6e95935a79feac40c509f9c148910569 6e979b2218753a82b95b4f0679f40504 6e985861f98ce55c9a5d0aac6ca527fc 6e9a0724f59f27a4a8221ce64245ee09 @@ -25070,7 +27991,9 @@ 6ea5f06daf992cf5571061a7ce6f8849 6ea6e7aa2664bdf96afe452eecd6b962 6ea8438a823fde80de9373315ca22162 +6ea8446b12fecf2d2a23756cf978045d 6ea93225e65bf36b67247f0ce39bd46b +6eaaa7d224dc232a979636af977cafe6 6eaacaa46c4202b732e44052e7e3f9e4 6eaf7a278a2cc824a8fd8f2a5cae0e69 6eafcd7214bf791967695f62192b5627 @@ -25080,12 +28003,15 @@ 6eb45226caf1b5a299f02afbe069e5a6 6eb4e91ce11072c3aaa03018696eee68 6eb5bd6e3368a3cc83ce71375d3fe318 +6eb5c56369bea65c24e629a2ac4ba682 6eb5c9b9380be6e373a773a596cb989d 6eb72ede7131e220b6973c01810f2d53 6eb85d1a8f23b7d41b3001433512c404 6eba274e86b9393e48b5a8d746aae19b +6ebc3140e1dc5cbca7dad035ed144c1c 6ebd09ebb2cd0b9f7af8bae546695b77 6ebdd883ad80c69d2910d12e0f6bcbd7 +6ebdf48e78cd713ae7bb37216399c80b 6ebef3aede68bd9a94fd474e9aa040b7 6ebf0e9237a5e75f935e0e2a752d4066 6ebf7cdf54839242d71a0b84488f89a4 @@ -25101,31 +28027,40 @@ 6ecb295be282ed25e5c079dcb75c32da 6ecdcb58cebb16654c0f3136efaeb8fa 6ecfe8cbdabef5ba74baf069f52b1ad8 +6ed0c47d795e2ca4b958c8bfe7c938c7 6ed18b4a3b4aa81c0d3cce77880e7eaf 6ed2144b18ca06672c8e1e080c09fb7a 6ed46278029637a966a40c4a5f8575c1 6ed5bee6f1fa1ebdeae1b977ddd2a6ba 6ed5fb384ab699e1b7ae4b1cdbc14c5c +6ed737a7f2740a5602ee3c5a2bb19151 6ed743bb8135e90cc3b7157a4bdb17f8 6ed904a7c60d842f061bb76be0a4c456 6ed96d4bf928fad2b6811ad330879d2a +6ed9c023198ea472752f2b90dcb189f6 6ed9c7691123020a0fb4b2bdc1d71d17 +6eda4d951e491320656f0856687b1c66 6edac8bea4689142c93541469bdd6c38 6edb2c310e7f6d6bf6b6f57e77b9ad9f +6ede92504e31d5acd7d043466c5e2e7d 6ee016c27dbecda811ab19724045195c 6ee257b4b8f911740007be2f5277ef26 6ee2a8aef40cba875633eafa4f1266ba 6ee3839874b827e7084bd7067b44b010 6ee40b2ca4e0041d11afbc1c0c32282d +6ee45ae37339d9e15a5042bf6c0bcea2 6ee4a769a631fec2c8c87f5d678d6345 6ee7347d07e6c200fd6f5bd5a683f198 6ee75b548682b182bbc2ab228b1c014c +6ee8d26f54974dd1b75ece125a208b64 +6ee9a95e30a3735d5f8828275f6d2f2a 6eeb2bc4f467b1a3c77170a151daac82 6eeb2f2ffd5a62b49ba3e5e261452b88 6eeb776484e7ed3bb9760f858d628076 6eeb824e54b8a88c9b2cb480980a533a 6eebcc3b95600dac2517b34294082c45 6eec03906aae0ae3ea0b05a981255ee0 +6eec36d266031a09adf69c66e9a0054f 6eedf6293039c8ae5b99f8b439ec5505 6eee166520141c7450e37ce57ab195c8 6eee52c3a9bcc4d54289ed2748217e51 @@ -25139,6 +28074,7 @@ 6ef4f6c00588421adcc1cc19c729cda0 6ef801a0124b2bc6efadfd0648ae6a62 6efc7ca1492f680b83171d6409b55dce +6efcbd62d15a5c0d35250e4a2a1671f9 6efce5d9d7372b251a7ea09641fd5534 6eff177a0e61cd3402e463c3dae511e9 6effd9c2f0ea0f2abeb3dbc3121d7793 @@ -25163,22 +28099,29 @@ 6f0f6d2cf70b877c22496e40c28c64b4 6f0f8025b3e89d33c379b020edf3bda7 6f11750f8c6ca277fe71f97d49b1819b +6f117ce567f97b190f6f5f5dde51ce57 6f1459c915c4ed6f37f3dc3038290827 6f155c390d2cf5002cafb02ac3ac59d0 +6f166511637abb36b7fdf94864da5093 +6f1b4900d4b22e1942fa7d2026d548bb 6f1bbb61960a2a7fa49884caec65b73c 6f1d9b1d14867c6cd2434f9798fcc2c1 6f2038ec42699b7acd76dcc08f518efe 6f204c6e6f5d3c7c9e17d912780f872e 6f2084c29cf1f9cc9d66fb406a0869ff 6f21c085649b355098e2991b77dc67e4 +6f2250e1070b449f21d48590a44b4dd5 6f22cd9acf5825c8bffca58463bafaa8 +6f258e56bd7e6c4e51683f4073c41292 6f264393a27d065b4f6b681697b7c206 6f2713f58ebdd405751cd898f180960b 6f278f2b46c7df5ee485b8da61057c17 6f27ea81c59356bd72b88f7094d0bc8f +6f29252f8601d341843dd398daf03f81 6f2aedca6f089c1193f4753b685e614d 6f2b6f571e3cca02f2a507f7f567661a 6f2b9f7f218485a441a0c3601533e68f +6f2c636407e4691bb4e2f49336f27a0a 6f2e25d6e5ab5b38d8a021d53d8915ef 6f2ec13badb0572c3c8168d4fb83f482 6f2ec87be1ad2e852203a487bdb826f5 @@ -25205,6 +28148,7 @@ 6f495ff47bde1610149bbe632767874e 6f49f00e4765ace0348d3140252a81df 6f4a879187fe9b776f360f3c4b9be632 +6f4c1ed5a0b60455b2167a49e4758c5b 6f4cb867fd2cc360cb99952d4fb9ae62 6f4d856bb7284ccb1734a14b12c0d25b 6f4ee309a8a9282bd90d450bce333830 @@ -25214,6 +28158,7 @@ 6f549e2b887258be54ede623524bdd0c 6f5563e6812df346685fdc1a89531e94 6f55d416fe0509c8d4dbdfc17c26d481 +6f574035b25da1e331c29cdfa1cf81b7 6f57af6ca26a865c8e3a7d8e1f60afe7 6f57d5eac5473a1d1d2dcbdd183902a2 6f58026814b4188bdca665796a8ca7f5 @@ -25227,9 +28172,11 @@ 6f5d9ba7b17e031b360f070c019c65ed 6f603b51e015a20bf00a1e1f08d2bae3 6f61981357a4c719751f3698af245367 +6f62818fadbc20c0effa73439c5bdc2e 6f63211e3a26b73d2359d27f46ff58ca 6f64487741169b1f3d699fba7ec4829f 6f68037b327fc11582d808e70b6013ef +6f68d32f914970b8ae30342864c4d9a9 6f6903113df37ba6a3987a4c2d9fc716 6f6c13f5ba88a244f64f567932724376 6f6c9dda7b24778b5bf96da4e7778b11 @@ -25243,7 +28190,9 @@ 6f739d620dca00e1465a30978a5e80ab 6f756ebd34fe55cd37b13e9b6284c8a3 6f78cb5dcd627f774c2e12416722bcfb +6f792706c7495ac337dd60912c7d9bb3 6f79e1ecd1b25404eb07ef6cd7bd335d +6f7ad6bcbdd85e15cf7bcbc95679f515 6f7b29016c49bbf9378ba06d9fa2882b 6f7b5feeb9964c4725e35197d1aa1537 6f7cdbe049500a29ca5200eed73183e0 @@ -25252,14 +28201,17 @@ 6f807e1cc0311188658c83f5ca79de72 6f80e49e6d46d8ed13cd57e62c779c94 6f81d178c3a2d2f87c3fb422927eaae3 +6f83f71a0a941a8aa5cb807ab9251a63 6f842c1c2ef7ceed2e6e16153953668f 6f852399705133e1a630e8b18b8ff043 6f85dce3996619dc4ddfa2e2759d24f1 6f85f3a21a714084e72086781c6ac9af 6f85fda1c236a1395841434f7c15f36b 6f862304c668e4f1d132e3e25d50c668 +6f8682b489057c1fc6e0da1bd39186af 6f870212a109d84d3f147ede87d605c8 6f87892710610e8585dae5431a0e079e +6f88191427eb88a6e01de9d62f067736 6f88d074675c631609117f8fba6771f5 6f891c60c7de838e12dda668c804ac38 6f8bdf5ae6fe1012cd26d36c172672b7 @@ -25281,6 +28233,8 @@ 6f9aa9adbf6e57de1cc15509f02aea10 6f9ba7251aa0367c819daf1947aa8016 6f9ca348533c0d41018464bd931012e2 +6f9cd4e03be39f4350df3e3ddfb32292 +6f9ce551251da4c75b1869700be89846 6f9d0a26895959564b0dd1af367d99b8 6f9d9aac0ef0e44b49507870bd4f04d5 6f9dcbcbf17073b32ae49b72be6d17c1 @@ -25288,6 +28242,7 @@ 6fa063dd4c98be4cd062402fa4db0153 6fa088b9a43c3dc6a92f2d9420804fa9 6fa0b800a5dc4eb89227e707286d0a77 +6fa116fd92e4b5829be3d94670b3ecb7 6fa230407961f58ef1ebd2db0b12d8a4 6fa29360930fc5141e8a3108114194b9 6fa35a1bce36ac9a7e8c366d74845d3e @@ -25302,6 +28257,7 @@ 6fa8ba9c0ff1d474bf71ef56431c775a 6faa804f00735c8049c87446bf5bc2b8 6fabddeaa7cc5f468bd2231a09a5868a +6fac5104be7a50162e3237cc0ab6d5b9 6fac69fc85008f3827f8b5cb2d1e4993 6faf4609567a17c17aeb7e7c2dc16841 6faf78de9648b90cf863abaf66a95a0d @@ -25315,6 +28271,7 @@ 6fb5389416cd4f45e2c921ae0c6e6495 6fb67c89151e110322280f86812881e7 6fb860a65a8d47ce0d0e3f9f8c0a2b84 +6fbbb04d9f10558cb16c67d08ccbc536 6fbe416caf0c60c1c1d6487eecf625a8 6fbe8f8b377b94f793fdc87a4a95597a 6fbf8168c65db758d7a46e8565b4d281 @@ -25325,11 +28282,13 @@ 6fc535c7c8d034ca66c8212241bb3850 6fc53705156434d55276f88aa60f4387 6fc59556711d44501a82d4b14a07a863 +6fc68aebfaec81c5ccc397ee3cc9d745 6fc80f4eef6574e0234dabf6e24a3df8 6fc92a6bea027576445ef81938e8dec4 6fc94d6cca9f32490eca7af885374f35 6fcac9dcbe138744d448377f1870ccbd 6fcb46d78059390d0ebf2ac8d5f8020c +6fcb7ebcdaa6c9e2b34077053acd094b 6fcbc2839dc4e23f8b17241a39e328e5 6fcd2bd560073db774501bd7dfb7199e 6fcd85ec45014d11c1d3c7606540ec2a @@ -25348,7 +28307,10 @@ 6fdccd54aed49e2c2a94cd50dfd655a5 6fdce4cf44b3428b1b779acfb7c52fa2 6fdd24c62e8500a82d634311ab9486a8 +6fddb5bec8148d85c9901d62cae1c975 +6fe0415212cc3beb6fa5d478c1f35d6e 6fe0b3288ece16ccce2f558d386f0c67 +6fe20aa9b42e20695895e1608f105abf 6fe210f7fc9068bcea3e28a141cf5aff 6fe211b9294677200c4c3d9e188d55e3 6fe2858db6ea265b2203aec30dd3c13f @@ -25360,6 +28322,7 @@ 6fe58c60b003abadc2a1bd5423dddda8 6fe75713549bf6823a8d53951fa84d8a 6fe864ff6dfdf6bd7b46fc1d57aedfed +6fe893b00cca6cdf8325ca2caef9c86c 6fe8ceac65ad8b0d8d596e6b4218d02a 6fea6fd95364b1a7539bf539c8cc1bb8 6febad129b170726cba236c670acc03c @@ -25384,12 +28347,14 @@ 6ffeab9d3ce8e719db0b39d6e146436a 6fff70d00ded4353883a3ac908ccf1f8 6fff774cbc0b3619b6c00fc019ae52ec +70008f89bad7c5ef1bc9a08996c23cba 700104cd34cac9ff93aed895691fe2d9 700230e08cd0d54563c828e1125ebd32 700267515a29503c9e3967e7e954eab6 7003379d8d46bbca02949d333aadbe02 7003d884133ab7a230fa2b539c655d44 700415fd92ecaff89a20b674cdcf2827 +700665dd775157ae4b50c5a2eb379fc2 700a09d3ec6468b6b00153d2b078829e 700aa76a278cf6e9f9be53357d68c2af 700aba2cd367f9c07d3d730f2d77b8bb @@ -25412,12 +28377,16 @@ 701b6c63aaeb84e23aa1fd7ce9d3261f 701d4ceebc77dd9dcf9bcfeaa8c3d9aa 701d9ef008ab9a36e78cc3495dd91f82 +701de78cb4abff6a1dd69157864a22da 701e3ce3b804e7e9c57c34bdb9e5b619 701ef72e0160ca9a4efe923447e5c69a 701f377f3497dbb3cdfa9496ff795cf8 +701f839dc8d4eab864eb100feadce350 70200f7efeb934ba6262ab35bf1085dc 7020b89aa01fbba117304b8031e9652a +7023c7d990b5f518513b80867e4c31a9 7025416053faf567dc725ae97cb838fd +702673d1b2ce8127f371247280d4a899 70268e529442a8eab9723962ec899df8 7027fb97a1a17c9e996b8884f0b2a93d 7028329d008bc67b4d05fda69286c563 @@ -25452,6 +28421,7 @@ 703fda1ae7717a7d1dee5cf9fa5d7fa3 703fe424276f544b4612b33068b106c3 7040021ed38457baa359178fd76fe920 +7042a93c12a900aa0c765024b633bd50 70450be9535f5ec4d8ab0a913ab6b358 7045396789edb33a54b64de2c7b2a520 704614cafa5bb263657e2150b0733f5d @@ -25460,10 +28430,12 @@ 704a8d2c484c5f306e2a586e334e812c 704ba30354eb53d5f2dca0dad8ddf6cd 704d1fc5c314866aaecc6518f4404897 +704e277f70cb1790ec01b9e16598905f 70513ac80fa04ccaa7ae0b5169a8d688 70513e02f93f9f495a6e7b0e58773978 7051e976c80478bfed584668a9b19548 7057deb526f2ee6329a2c9d705cd3c7f +705911e740d3695e2a11a9ca06429a0c 705941aec673e91431d272f6608a84e4 705aad971e9597aeb544f0202412627c 705ac0ad060ecc0d5ddbe4c170c48509 @@ -25473,15 +28445,18 @@ 7060cdc128c6ef7495b5b20e93228431 7061b33b469ce83cc1710f423d2e9ef1 70636f49a2964319101ddb5ddc5cdafb +7063f85f9dd7eec1adaf75f549c87d7e 7067344d461a4d6c8ce5ba082c8f074d 706761f1b4de9859a9a04767a33fa14f 7067e455f7d2ea6835991b08670b9bc4 7068146e73b3c49d37505e0ea77ff9f4 +70682436c4c5760a1c839727e43674ca 7069df960b531d65344001c693439d09 7069f5f9489e93eb353281c99f0a05ee 706c597ee2103585d6326b79fbc4d3bc 706d66e8bc0d850b8df04efe5c9eb707 706e244a45a4b0600b946c9aac61648b +706fd5c2b72a3367bd535f3924e6bce0 706fefff0c95abde36afaa8b1eead700 7072ad2830b796baf734acd1db243f6f 7074fefcab11a4f866ade0cb44ce654d @@ -25499,15 +28474,20 @@ 707dfdce14c970d578ade8e2cdca2216 707f30eb67f60c7433200b3abe1c3297 707f9390b28681b68cf479d827d19af5 +707f9e33fae98c2a8770481e4f933ac8 70811a463aa14ac77edaafeae411c859 708211472d4555f7284efca3c027ccb4 7084a82f0b0ac0a31aa3d568f858e2fa +7086a0701dba02cf18ddfcbbc21b606a 70870454dd9134026e2de497f447a91a 708751036798191c77ad9513700ff0ab 7089ba0e833c11fd1e3d323a8dd3bfa1 708a8398ebd2586c600754c4b998d1cf +708c612c6788fda0cb90319c07a5ab9d 708d97e840f30190e2aed2c3ebd2cfdc +708edcf2b32f3c3128424adb8bdd6711 708f4905dfd8e8ce941a7e3ffb710ae5 +708f98f1e8316cf717fb5c66207fee82 7090e60276b744c64306c460c7dc53b5 709148ff8d1b33b2ef5f203c841cb127 709227dd2f4a438d60756be60724e216 @@ -25520,12 +28500,18 @@ 70970ef2c90f6ade7a062bad79321fd1 709727c2f023c756340eccccf712396d 70972dffc3a7bc37893d6cbbb056a80b +7097a09f4522d1776c8197306e0b80bf 7098c5846b869994a87ee31744c9584f 7099a174f4724670025ea3337a3e2b16 709a1367722002d93f702f8692082037 +709a67c1b7d45885f83b1e54870d447b +709ab41be7c05f3cb40c20861f6c5454 709bf18787b6f19cab6135d3e83997a4 +709c78e4b5ee214e3fcc87b02212e556 709daf1e0ae96bf32a89e13a4382ea6b 709dbb611ae20561a24dc22d7cd2ea70 +709dbbbc8223005d2488393181dc8dec +709dbfcd4e3761dbed54bb70124c0884 709fba765d524b7335f085fc92156cdd 709ff6f5d7ffcc7a05ba58d56ca584fa 70a1fb59a0abdc6c950e60014036d42e @@ -25546,6 +28532,7 @@ 70b26ff703264031513d9021a77d5721 70b3c3d69433a9c3a2aa8d2b7f1701dc 70b439e2ab8e1d65ccb71627319d0de3 +70b63d063e03a613f07442cf08c50755 70b6ec7c726c17c15f83c4869befecbb 70b965b9e0cebf519e3c1b665543860d 70bbf2e4ef73cf9a4845d377976583e8 @@ -25554,10 +28541,12 @@ 70c026e6ed8adab262ee8dad4741650b 70c0cb858712bb97f8cb79f28a45975d 70c42f784f77f2013a39a825381d346f +70c45582be39557091c70f9758db4e5f 70c62a999d32b5e132e9eace511d9a76 70c77f897378a1c0d6dca67cadcb6b45 70c79aed0c1c1f079d1418d58e472713 70c8df87379579e8a86ebf98915d1e73 +70ca7b56b09d65fb6d81c41eea41e5d8 70cd3c7784ed6c63084740451b3354f0 70cda0ec549992322848971095f99a52 70cdfdce881159f4bc101602fde9b547 @@ -25574,8 +28563,10 @@ 70d9aacbe3cd3a7c5e6022ad2da541a4 70d9d98892311eb101aa1bc10e56eab7 70da5c68c8e04a9d1b3f45b86ad1a016 +70da94cd60bd4154a62323734f37dad2 70dab77265f0c683fee45ee22bcff9a5 70dc9b6b5f7b11a8e92cba57a470240b +70dd26104e4f8d6d1468e99acbbd53d1 70ddf260affdae11ce44677c07c1fbc4 70ddf34b47ee650c627f512bdc767715 70de180a45f8a93c47ab4ae59b15cb3a @@ -25583,6 +28574,7 @@ 70dff34eb2cacda75b2433731c93d47f 70e04ec10f308d71b75a7aec03d1f058 70e1c291b400d0458cf5794374b261b8 +70e3a44f2b81e080116d2a168f5842b4 70e4c2263167fe4667d117e4f6109ed9 70e60f7c623bbbd8400dc106edf15164 70e7de2331a28b10f294a60caa4c3448 @@ -25591,10 +28583,15 @@ 70ea5d586add402d4f69ba1b63a38f94 70eabd87a9324f25862866fe063d0a58 70ebbfcd19a4ec41fdfdcfb2057fdb32 +70ede5d699a376d2d012759d3494185c 70f0213947aaaff89cdf8baf32b6bd40 70f0bc7f0d09f9cd2bd6b36a242196bc 70f1602ccc9327792de4c6117fa95a32 +70f239ac4c1c8ba0c7763052333c0401 70f288725dcd0520642bd2786b821068 +70f34303b1b0a2cbde1465823180cd4e +70f5ae85949c9e1e6969e0f7773f5f7d +70f5f4945379c8f99e87f10bc1443a82 70f6d39b2595d8050cf2a9c2a59f3c88 70f863a2f736cef1ef4b25c1b65db95d 70f8c381b84ec5c22c5eb18ef2e7562d @@ -25605,10 +28602,12 @@ 70fc578c1089b8b094cf234e2652b216 70fde0b461fd979e928d17e413e46e1b 70ffeefb7deafd8e96628396be1692bc +71003664c556bd4143c935aaba97101a 71011fde4873d26f8828e6d4681f38e5 71035eafda2adea1e33bc22325505892 7103daf5b2d40982b2a189061264199d 71049484bb275a1366fc95f9e6988892 +710563d8f566a140d44a1dc4feab2786 7105cda114f00ca57742b006c28ed2c0 7106355da395eae03bced30e04743b05 71080e5f0a951dd28a2fa3f48eb7429c @@ -25624,6 +28623,7 @@ 71151f5ec40f58ba9bb19fa1f8b7fa82 7115402da881dc0dce9dc804812c92c0 7116004270ec21b0be46db855c1c7f3d +71168949c943dbcc4b47acdc740aebbf 71179c5e116842021a3a5825e7c1d270 711ba8136fd9cd7d2e1c47d49475db49 711d4cc2d6f51b1c02cd22df9bdbde17 @@ -25638,6 +28638,7 @@ 71253352244cd5442ec9bb74bddfca24 71254f144fdab152f1f4f8ab6eb18265 7125e2885f5d8bf0ba0ecc849424b250 +7125ef27d16c168668bf932b3b561f14 7127568c22c4b61516d74eef2d104233 7127b309d3f2217f43db3776e7971cbd 712a3f9f94a2d6d8f296ecf427a80ba7 @@ -25652,6 +28653,7 @@ 71341f4b993113c6f84aa83f4419ea30 7135070e7ce33d52920dfd6d8b10b9b1 713548235746e06498f7b258d4d4a02f +71363cf501a89713297f1197f02a5a06 7136c21170c20aed21220f3d7dbadf52 713961ed7b62099ee54e5d8fd3639bf6 713b9cc28cce42012a8d0ae302e9f4c9 @@ -25663,10 +28665,12 @@ 7140987d09f9ced5bafd0faa26eb8570 71425886d5fe44e61c7a3a078b796bab 7144fc1e8d0625e122328f1e29e00b94 +7145f1cab2eee860b9dd31128eb2726c 714896c3fd4610aa99f49d8909fa7dcb 71490a1692dae0577d0e4878cd3cbbdb 714947f73a54c4385268f9e9db4ca55a 714aa85c26d52d15aafce90b45293393 +714c04bd1fd3016a922c266e0b224368 714c92b0a4f4df50f863064cfffc2482 714d4dabfb5be2264c76b60245fae551 714dae84bdcc2bc7d5063a72fd267cc2 @@ -25675,20 +28679,31 @@ 7151aa2035d8dffe075f41f144d0db00 71531e5b26e95a152dfbfb8acfe5aa24 715434b54b25841426fcdf57193aea79 +71550019f28d54d79108eaa1eb398e5c +7155db290ac3a3ab5f5580b6f6a5fb97 +715696f54cd4501257d680912ac7b4c1 71570b33ca71c205c7e63dd80ac42566 +7157c42ec839c0775cfa1ae7878b95b4 71580a67d65212edd4f85c3748b771de +715865ad7308ec6f6503509ecc8347c2 71587fb4377b11fae5bf26043b65c178 7159dc52bab0c7ac81fba96b3bc0109f +715c29bb042236779c4157f639238ad1 +715d18ffb20eac6ccb4b843f52a9dae1 715f0b0c40b783538e9dc79ff8062cff 716148fce28e158301bb7e1231dccc7b +71627f358fc30e4659b85d828a9e41f1 716281269e0da0f18f9edf0d5a2e3374 71639047f2eaf112580349c27defd6f4 7164563a783329fd823e54dd9162c81b +7164af1621be04be4451e67aa0ef6de7 71657a0dc9b1f8e7534e88680d8c1bf1 +71678db6ac8c70f2a9afd04bf00dfaa1 716a8d2addac40455e1fee9110a15a36 716d175bcc8059b952726354e6a89780 716d60bcd312df8c0e9819b9876154a1 716d968b59038a90ca42eb5ac4a90ab4 +716ec2c1f0d0d0eeceed3cf0e95d4653 716ff5d0608d5e6f65a72f26515c18d7 717529454e8b4db7f52e72befe989e8f 71757e38cc60efb13e48c1a9d4262dab @@ -25712,7 +28727,9 @@ 718d76d0a0aff0f5bd31c89b9b450055 719396ad57cd92819d02f5c6ce2d42df 7193b4c990cd0a595faec7180a77d49f +7193f1da396ca5b7aee3316fc6c486d8 719468658068cf4fe1b8c4312c7dd4d8 +7194ae4b578e90b43516e00d97488990 7195a5c529f5f19c6496aa88900f8947 71992fe0cd8f0087a9c1c184b8822bf3 7199cdc8a77415389e421c0491b57067 @@ -25723,9 +28740,11 @@ 719ceb68536f6200f4cbeb3b89d86b57 719d4ddd91774551d4041d0a348b9551 719df82bbaa486042444c3da55215c56 +719e10af2e42227933fae80da11cd53d 719e9624e234e991b0f4ca6def98e5e5 719f2394b578bd201404ffae91a814d0 71a1a6f917bfc12045f4c00c1516c7d7 +71a21db8e094b2be67dd809a02c8a149 71a559e5656a0a164e589956859376d9 71a5cf3cddada8f35fc87eddfdb17e67 71a8aa93f30910cf1db0608f8cfa39d9 @@ -25737,8 +28756,10 @@ 71aecc53b6890b1897360d467987e81b 71aefc38f2495398c7f1f9de36471c2b 71af623b9e5b8280b7a95384d246fa5e +71b05dd15d657da1117c3069b98eadd0 71b0adbc6aac8098d807d55493edd964 71b1116f230ea42046fb7f5115a13949 +71b338140234774febaf3122d62a3df2 71b3619797f77c792ad50af04164c111 71b581f2094799dc623210fbc0c05f9a 71b6073b891a6cfaf973c7cdc72f52f2 @@ -25746,12 +28767,16 @@ 71bbcc4abcc6ae1d93a7a833bebc471c 71bbf46d84e70f7e946e2afc144fc701 71bbf63d103b167fb302705fd29f4880 +71bc0ac4fcba062987eede0e017cda68 71bc455a0627b31d3770a01bf448e635 71bff25246e7afd14e9f67b4c74373de 71c0c7d2efc84e88d36708f8935ede93 +71c344c9e84c1656c45f0c9a8a4210ad 71c4b4399c336d7b19771ae8c4d8281e +71c5a6b1eacfecaa4d0ecdaee4c8feff 71c9eec3ed19a02514f42e160b09e5c5 71ca6a2b26444880fdf903f59117c6d6 +71cbddd5ef092e5140c7568b79183832 71cd71b82c219adf67dec1c71963ba50 71ceb864564e0067ab716e9531e452f2 71cf083d4cdf617e64761bbfd3b460e9 @@ -25763,6 +28788,7 @@ 71d5a67d718553b81590a6415a2d74c1 71d5df8ac5c4da8daf5be3eed6e63b6a 71d63205538ba8f485fb29024fece305 +71d692b27988e669966252f523319d1d 71d892aeaad97670bd09961035b0b97e 71d8e23593f632b505e430c72e4feb19 71dc484c39f6f217efaafb3aaaf1d7e8 @@ -25776,8 +28802,10 @@ 71e436fe5bfe338b68bc3ad35107d73f 71e5636bd122d8835258e7c0857deab1 71e7c240c1b62673c0a7fe289445cd75 +71e80d9419604921e2a54c135394ba93 71e86b1f7d7761dc1f0a5785e3338017 71e8c2a9a897f4684e5a5a30f44be029 +71e8e934214f556bf437b421862f65ab 71e9810c8b14412404958ed5babbaf8d 71e9ba7cbeadf07bf553dc70c04a8a51 71ec841d96d835f0980c78bfdad1c63f @@ -25787,6 +28815,7 @@ 71f08e2f92fd2817c7e73b255a5d8b32 71f221330bde8ad942c41d5c812cb1a9 71f2e6eda8628061f38ed9b5363e4085 +71f379a2f2638f93c4c2d01203721db1 71f37d66cbb17372adedfb172ff8f7da 71f4978cc2e697678c4d8465b65842e7 71f6a43d2864aab38954d07873b99629 @@ -25796,7 +28825,9 @@ 71f9a584502855bd1e08b34827705d37 71f9d85772b4c9d3e382d8b7ff496eb4 71fa5c79c17002e70705d7ba5a6f33f4 +71fcd2da747752a10d0c0d6cd6cdbf37 71fdab28bbaa97d38271099788bd68e7 +71ff9aeb61c76fdafc4adc676d51eb66 71ffe134e612b600f058e8bf78bf79d7 72058267b04aa8ee382051674efb2c03 7207e887fc3bf0f2576d8824e69592d3 @@ -25809,6 +28840,7 @@ 720c0139e74dc2de830a2dc0535adfd5 720ca45c16736219205137be237cd349 720e0d545038ea2829901b4d44505b74 +7212e73103863a50cfe0c55ef09903d5 7217f68d851a51417642ce2fcd0437bb 721aa453a6a2f3a22752b0be1bfc34ae 721c3d75bc6e7eda26203d8698a5e6ed @@ -25833,7 +28865,9 @@ 7233d381900936e92b66b52aa7336fcd 7234e0826737360e571b032dbcfdee30 7236eaf169ad6e888f9714746770080f +7237300dfb6570b3007d82147d20e2f0 723766b3a0b4214d570f40d003e8dee3 +7239029d2cbba42791efa5d3d88d8346 723c9815e63441d80bcc9a41753d379f 723cc1d5c1016ef29be4c86f97c7c753 723d68b9b8590e2d8b667d8e7678e636 @@ -25846,6 +28880,7 @@ 7242577551df67e6a3b9e76c0a599600 724299f6d1509cc9453a8a44118ae387 7242f168a061add6fc00ac1dad6288bb +72435306933bbdf4758c71e9df415528 724440064f3407a39a23d89c90f851e7 724469fbb83c62c5ab7d4a135c4a1f3d 7247d62f558f9ddb3f4dd65849d583d6 @@ -25853,11 +28888,13 @@ 7249187c126ebcc70f6eafbcd151c3c5 724cd145af4e0dffda2cd3f9951bd24b 724e625a7c2ec23928355d600f65e567 +724f64d09873dcb068ad29b88a9f2474 72500ef0b832d582be9bfc030cc4aea8 7250856c2c3c97535d798cf612682bb1 7250a2d23324aa79aaf9aa50f5e8b007 72516fcfa7d2fd009d20c65b5c5fb9e8 72549e78cc3272047ec138a497f295b5 +7254d28099cc249e5f10ca638e959867 72550b8c08f9841c683d50722f7de465 7255657c7f5c17490c6a557c14a53001 725594aa20ed944610437f95b839efc6 @@ -25871,12 +28908,14 @@ 725ebb1e0073aacc8351ff8759cce795 7260464defc63bcc63e0c29619e6df82 72606e28b26d0f2edb23641199d5ec11 +7263835eafddd1901577de5a2f7958c5 7264cb40d391feb41fd9c26955c949a1 7265449b54bae1e3aa0ff10b3f291e21 7265bbdc22ebcfa3b83f03d1bdab8f1f 72660bfef365973f5bf81346d4b232e9 726663fe880d0c649db0e57e6142d3c0 7267d918a8fbfc981f4dc359ee9143d8 +7268059f896f5486cbb7a5001117709c 726833155386c2a148d908e53ff89115 72687ee1eaef2cf32f965b297eecd226 726a6070a9e2de9c127c099b9234ce66 @@ -25892,16 +28931,20 @@ 727687edbd01ed952c58db75dd732a09 727988817c973c69480535dc896e6599 727a22289c6c0dbc42947dc8bdae5046 +727a6498f2e8b33cf4e5e02dddf4c8cd 727bd4de12a689ff2e3c3ba8a66015ca 727c5f8f0d969a88d47588a447b14944 +727d511af65b44348c422ec78782b06a 727e7fe3448a7a75c1de83c4e7459976 727f26141e113e8a76b844e22dfed126 727f960338c66acc79bee16261455829 7280f097db5b3b17d2f2e05677130a0f 7282979b28569cf2e97a73cf7e244c84 +72830afb3ee51af52a7ab22859c26520 7287c05f181cb6c26a8bc2ebe972ec1a 728824babd06f52e48b87604056f6639 72884502e9eff6d152a0788e16682f9e +7288524342930ddb74e08a45005b152e 72886d41120d92390309e739805a9efd 72890ccec85f551944b01ff081493915 7289b978101b058eb3c19e0a53fb2203 @@ -25928,6 +28971,7 @@ 7299dfefa310f9534a9f094c082d98d8 729aeff05953e73a0aa8e55f43b1b714 729bb25c4d59ca3232c6fbcf6f85d342 +729bcbab40c67bf17cf79745e73da0e1 729c5aaf43577bf64fc13c61514f3338 729f0cf1b2b7a57330993a3b0e6f7d95 72a1ddc114ee9b48207ae74d65a8672c @@ -25936,6 +28980,7 @@ 72a4dcf177cdc0a548d04734ae1617fc 72a6aa44bdc8ae542db32af40052c39f 72a72a8c351a753c1c88612754f3161e +72a796197a3a90f9f85a784dd6853021 72a7f5c6b9ff389e88c7bdae906ad969 72aa1a2cae9a77f881e161897c8a06d7 72ab8a4b84ef8d8b8dfe11f831a975b6 @@ -25947,6 +28992,7 @@ 72b126f0f1e83cf88ba1cc2c793f0c60 72b1df503ee2a8956970a5f03bce97e4 72b20b4affaa5ed5743c2c0fc7238e8e +72b36482b3eb24ef816941c1b88f79bc 72b5157c09a7de11f630017bae2e41b3 72b5d7a5a1081603a58b8af96679670a 72b8802e89bb1c2a75fd565ed1a32f29 @@ -25959,6 +29005,7 @@ 72c05c89a5c64b2db5f503eba6cd78c2 72c31b56f045f171bc957fd13b02f845 72c36e466cd72bb1b7237a2ff83ae23b +72c3fe2ffbb39a5b2d68abbeeb8bbb89 72c42f10be0cd4683520407457b932c3 72c43659a9efe1843840a97dad388ad8 72c7565d910534bb3357206a9282eefb @@ -25980,8 +29027,11 @@ 72dc041a3661e912d87867cece103521 72de0c595ecd8a6d00bf22ee2220d048 72e14f9dd3fcaf2f11e00c91e755b55b +72e20ccee143982d370d636b07d9865d 72e3188db1f00747889f249daa890495 72e342c82901096aca7fa49894e7374e +72e3f89f735b29a9214d149e2e95a147 +72e48c72df569c620ce2aaad6069e205 72e5027c97c04838dfd4b590e2ec0eac 72e5360a8ec09995ca3c852e28d20eb6 72e70d8ea51bc30d46f547365a9b5849 @@ -25993,6 +29043,8 @@ 72edc1df5f811c0a9942c4e59ad08ddd 72ef3a84e5e9107bd6e6b4874175bd47 72f3049c7688dc1bef2bd4f2894a2538 +72f45e2126789024a4e06e3e960e5e86 +72f60f76c21dc187e56c833140029ed3 72f619fcec150751be340cfba09fda9a 72f6908caafa1a4d6b4e051982123ac9 72f747e47120ea0dbdcfeb9e936bd459 @@ -26030,6 +29082,7 @@ 7318bb2bdfe7abe8321591abca9fab00 731c1bf3680cb8840f1ee15d9abfb234 731cd994e2136ef6da88321956a4ee04 +731dcd16c9c7f4445748c64225f5c316 731e7ac19b42c702967204f60d5a7a63 731f26429b353f2ec487a3043842e05b 731f50f4b8e7adcf70bdebdc6be79dc0 @@ -26049,6 +29102,7 @@ 732c15c6e40fc63c72eecd6d0151a3c0 732cce3aa1cde7a210a8db3a35657ed6 732d0cf02896d1ce71edf08e8d81c9ec +732e53ff6f07ac41bf9506b138cc8d80 732ee95c29838b301cba55077ae8648c 732fbb7576e25cdf5bda483c2a9927d2 7332c3ee4515cd7f7e8e7cb4c9a471ed @@ -26063,6 +29117,7 @@ 733d91cb67872dd577a1f7dd15ff487e 733e9e72be0274ad651442cd3ef3756b 733f782649cd0f4ceb376b549906edee +7340339379951d7996d8ef32f75e23e3 7342e00ce8e78658bf0675bea21e717e 7342fac38b3f917637abbbaa9a30648e 734316ced82ec8b9c73087eed6d719e8 @@ -26072,7 +29127,9 @@ 73472321db207616c0cfa49561207d70 734a1e3b88602cd7f5fc604dd9195eda 734a9ce4726176d9a3d228792af2a144 +734c93890a0ae04023fefb98777ef0ec 734dde6fd79bd8a577962e4f620d1e48 +734def15e88aff13466e53b7745d46b3 734edf3427a50a4a21de80636c043a77 7350dd68921576ea29d134460908793e 73516ca9aa5c729a0b84c5b1cc096842 @@ -26092,11 +29149,13 @@ 7361e372ca679264d0d7c637b678f551 73621e462ddb3deb864a17f8f192185d 73635285b052e8c38caba5e006279070 +736424590d32c6348ce06878cd25e7e3 7364b2433c039d7e4bae2682b19808e7 7369a35e42989263e06cdf6afaed9d4e 7369e446d7b6f0ae04080d8040777c0b 736a07863d203fb1d9127df1af5ba24a 736b737d42af557bce0b1040c5846eb1 +736c42b7283dabfb0c325c01e3881f70 736f3500cafe0bab4d06219b3667ddab 736f40f23a23515b93e820499e694d65 736f95f4fe409d74b8aa1f8b1b12f76c @@ -26107,13 +29166,16 @@ 73745a54d4a424feb797fab8de627851 7375432e36a630e7cb2910a46e0f093d 737654896ac1eb126b2562ca6adcd0f3 +73765de59b9c831397c77548879e0cdb 7376e1d1bd38c98268c3844f0828a561 737731cb83d7e343da952e6672e11fd1 7378914d6e3d2c1e8ca16eda6f33daac +73794e71c3cf0cd98e86d04ea71aa4e6 737e663a3fcfd9ba751055e80a3280c8 737f2a1c4ae76f4e7326a6a972be481c 737ff97f5631b406a08d765d7355cf0b 73800d7d8e2a86deec0e3e764b095baf +738254cc1df89feef30e2cc4318cac60 7383e0e501b513991ce21d82e37c008c 73850859bfd341e80c5182a26b1ee6be 7385421fbf5cb41ecbd8cd5e87a80e19 @@ -26162,6 +29224,8 @@ 73b5e2d52e1e932a8c217669fbff925e 73b633b067dd8af0b7cbbfefac274d4b 73b6c52535b038f60ffd6b9eecb86d7b +73b6c6ccf28c04e1328e349397d127f4 +73b84396c6a5dc706ec4b1f5ef690156 73b8d6e0f62845ad0dbea287c3cc3493 73bac7930ba4e521013a2b4af474b6b4 73bfbea0c672eea996097c874f1808e9 @@ -26193,7 +29257,11 @@ 73e06d3d4207106c3fc881b1c834122b 73e07b17a824af5a8044248fcfdb271a 73e093de874037c3582f45eac9f58ef5 +73e0b6f4ecb8b91e5a19c12716c610bf 73e0f73a54c221c80e5ca09e2c66af74 +73e221ab58a2776fab23ad303f57a8f2 +73e268eff4aa868c8c925ae29a39d1c1 +73e3301e6b4398d846377494a7d1dd60 73e3b89b0e57c5a255bf8fce5c427b43 73e54edf0c9de4fcdb396393e793af8c 73e5fe373b905655633680f0f9fbda97 @@ -26209,10 +29277,15 @@ 73f140d8de649c20fd56992b8df5e020 73f220c074fa8603d0ccaa4299ed8933 73f27f8ae7de64e7067d86f1aed6adae +73f291fd51808850236d7c96392947e2 +73f3c77ee962ad71dd13c6c894d57de7 73f46f1ab2769034536ac8a001499272 73f5f78af94efd557aa15a5453bb8886 73f6c0e2c3eae7d75d8f838f6428b938 +73f807afb6dbee13ed2d0e79bb0ba253 73f857f2bdb7172196956fba216673fc +73f9366ad4f29b2113a6151964219208 +73faac1a0a3fbd3d8614f1f2937efd84 73fb45efb727d01bed90d817a8671a32 73fc418ebac9d06d37998d3ca11bd9ff 73fc523908a5f110b34ca01a29c45cfe @@ -26224,13 +29297,16 @@ 73ffe2144e5025b16ff89f1ac6e3d8fd 74020221ba2b50de7ce42de1d82f3840 74025f5321d3f2b8860ada325a2bb6b7 +74038fd3ab8d94e1fc09a91ca738df00 7403a28c4be18ff829c8659ad7baffaf 7403dfb6902906f26735f4a5b1e14350 7404b94c35c506bc7d2c2512750dd7b4 +74053086568d6ac6de72ca0bc654b034 7405be2aefb8c21f46af61ee37df010e 74080da430c01b98213fe4ef3a963438 740899bd5f0aca7305476f88d0c08a7e 740a88a95464581f049f5f3338bf2eb9 +740ba4ae0e9cb19f5921be029c7d8d28 741004a2e4691a8114760e90134e0606 7410734c59b85af83d0261ea6f97d11c 7411b8c5c4e77467eca34627196495b4 @@ -26245,13 +29321,18 @@ 74170a801f5e1f97b5f3e09b191545d3 7417c3943b3836aec1ba0d06c4af2d53 7417ef19f57e6449654e9371352142fa +74191b03ee4245dfbce52bb20be224ca 741aa85ebb8bac2c72cbe1ab2ebb1a47 741b60a21a773ff6ba1a7eb3d2d71fec 741c69a6993a2e46aefed85abe09e0c3 +741d6d88c4d3a106eceb7e5ace0c9d0b 741db754968f26b5bd0dacf7fa98f700 +741e4687ad78cb24d13f7651bf4100da 74205614b5645047b0df2d48d3b6e463 74219b088ec2890a32eefd5175b1ae0a 74234b37489c7af6e5346bd3eb61b6c2 +742371ec23b5b40362b5fe14dd7b1c12 +7423959c886adaa9b33a5a327de395cb 742513c8f5c4be0ea6d74da1cc8b190c 74264d27eda8de94f64d99d9af5cd02a 7426a62ee8d3fd58fa30a2cc9d5ee7dd @@ -26263,6 +29344,7 @@ 7430358dd0889acb845d37cc2c97c52e 7432c67d3f2aa24dc3dcd4e776d6d516 74334594e45feb8ab00143375bf40165 +74344a314fe38d6d44181e8ce6348a75 7434abb2bfb02fba9615135a4f5a7ca7 74353b44e6e5b9a2e8e0ef6d6850c608 7436d630dcc3ed42db0e62983f859ed4 @@ -26284,9 +29366,11 @@ 744ba0c389c58dc64a3f83ef913b32d4 744cfd8783ab687c82992b010f286edf 744d1e58da075394edfcaf2c6f851170 +744e43fff39c37e2c6b632bbf7773828 744f09e753851155f1fcde169b12c2c0 744f1aa858838b157771e0d6906c0763 74508ee819e92408c97c92a17348a17b +7450f02659032ace4cde9fb9ae9679af 7451b0324ae648f9cf76d0bad16ac2a9 7451e45c86d260c09f1bb7c7887f80fd 745271ac1c1bcae87e707bd32fcbe302 @@ -26294,6 +29378,7 @@ 7453207e96a73f45a19fa89134bad069 74535b2af000aaa6dc2de085a21ec7b5 7459e9572301cad87e35ebceea164d46 +745a42b7871d04dcf1f6ee760244f7fb 745a9fb37a0c109f3a2e711fcdc0739d 745bb539e57b2875b6cb90c85a97900a 745c169769267f380f978aaf762766a0 @@ -26303,9 +29388,11 @@ 746024be667aa5b4d58d2a04bb4af2f9 74624555cf0d8dbabc87caefc93a7752 7462681ab608839f960d660a23c823be +7462750453934303132cd62ead51865b 74627957863e5f1755b4b288f7923786 7464e06ce416d644c207f10d307264d2 7465a8db135c59d70d7940d60ebda82f +74674f66ab04446bda75f30a8f318ce8 7467ada3459d126e92f9e2d57e1075e5 74698a9dae27a9b95f40a280c0e5ef0f 746a07ac3ddaea77e2425033d731133e @@ -26327,6 +29414,7 @@ 74782ecbb7dfacc4dd88533a6be54c56 747858b927312d90464ec99a1d8771f0 747866dc4a2ea0b63afd7c30d35415d2 +747a33f7ce50c52f66830832e35ea898 747a3c31901378b757b93667c54bc197 747baff0e4d6145cfc40696b2e5646bf 747ea4ee66192ad882f6d46359fe28f5 @@ -26340,6 +29428,7 @@ 7487eeb7ab2391ded39e8a87c78af86f 748b6eee3fe64368933bd53aa74c7ab1 748c2c155f988c5cf204b5e807f59ad9 +748d7e21a2002c1a595538299f59519d 748d8de4a8048782dcf9f2cc8f7eb817 748ed5d0287c1edfb69b9e36fc58a3f6 749017d939e1a6c4487b5fe66ab58982 @@ -26360,7 +29449,9 @@ 74a3257bf080920e94614f2bddf6dc9e 74a51e2c08838bf786ff0a4a1b631a5f 74a57c76ecb2119b16e1ededeb976994 +74a5ff5e923c8d6946fb35073b0a1fcc 74a6149cfe776c091b7e6480f687b550 +74a693abd288014c40f8f0c575136952 74a6d778a41dc2c8875cf681866fe4df 74a7258e6b5f14341346c2a55282d291 74a73f82c63ac2a9f226104e0ee2cc44 @@ -26368,7 +29459,11 @@ 74aa254095e5374cd7fdd48f6d975f1d 74aa335a3621a424a91ac70c4617c80d 74aa4ef525cb513af3666e79ff5ddc35 +74aad2b3d29506b1e46c9b04ecf1cace +74abaf9d0e59b9fb478576a5c140df25 74adfd0897a6aa6a632774c2fed1d761 +74afd66a36d545e6723e507e2bea203c +74b1ee20f7a8a5b86a03af43029f1045 74b216776a185b60b889c138bfcdd8ce 74b3b45527c06379deb4c527fca24062 74b411bdb589730bb0dc55f62dd00795 @@ -26381,14 +29476,18 @@ 74bd4cc3fc1e68193112f905805f3059 74c087ac78640c919782870ae10c4184 74c0eaec18664d62e1ea109d23b4e906 +74c0fb2da3f546e36ccf99ee393111f7 74c16628284982c6dcbf25e49e2525ea 74c1e464a293a74bbea5a01824df560c 74c26c90b055be06c18e905a08921a10 74c2b954b3f25c81d828570e230ae80b +74c512ccdfe4e7712169fa55bcafbe4f 74c7945a12ebff2287f92422d56110c8 74c7b7b0f0ef58e5d34c6d58a374e37b +74c817dae2f8cb0d611a68fcc77da0dc 74c8c88193ad4ce575e15926599074a5 74cd47388ef43b799c895ae422edbbd6 +74cd585f76c995f0c29e1da861bd38d7 74cd904c8b8c0546af153bb38ab7a202 74cf24a925dbacbac5aa02288b90b907 74cf502b083f05e15040a4e1956efcd6 @@ -26410,6 +29509,7 @@ 74e03aa8d5c83ef850204cdea304eada 74e0d89d4efac68ac0866df945465112 74e118f76612c372d01b6e2c3dcec774 +74e1801ecce7f2f3ee44e1675c5303b4 74e2a05f031c48beeab84f743e01fac4 74e383acdb930228f9a9a1705b7412d1 74e3c4c8b52bcf2faf7b3f7b902d1f34 @@ -26417,21 +29517,29 @@ 74e439812268e634e5b36669c2095dda 74e56bb977bb649235e94865d093ac0e 74e6083f8d4fc71842bebcaa185af863 +74e671f339cb620d589ba2cf510041ef +74e92af5c65fce8dd56baad55e944141 74ea0eaf64a5c9faff33bdc0f30af287 74eb232e75b6507b0e1296e1e3b936c2 74ee1ae433693eb7e8e1bbb3f5be1f9c 74efcb4a0d188cf1d16d9b68d5c4a1d4 74f01339f864596746f6568306dba7d8 74f02efaae8165e225653248a6372120 +74f137968cb5a4b80a3c6cb6db3c3194 74f18374515f699559876f76aaf0f0d4 74f3e01e1dc87635d093ceea9853cf7e +74f415ae3aac69c04d42729f92526f56 74f49e10d3ad44e0d4f69f5b7cb50d41 74f5d9ea9a051349b7a856e2a380168b 74f6bb9d0a48a0bb7198e61e20c717e2 +74f70ed34dbd61ff55ea75b6b8b2f219 74f7f489c15494eddf736e8b360c1d76 74fd7e962734b7d662115d8decac03d9 74fe58ec9aef5dc9f70c550897b33c00 74fea71a45a55a9c86e0801e47bde7b5 +74fedb120f1e200aa0e9835b5f336079 +74ff76ad899cd28b40f7a074edeac7dd +75002ea58c5d343d120593c18d0676c2 7500a349828fa323e5341dde55f93502 75012f282acf75b92923dbe0ee2e3b11 750188bb2b5acb75aec33dcd44da2e03 @@ -26439,6 +29547,7 @@ 7501f7bee27212c6cdc20eacdae53612 75039a365e1e3a1d0d47214818671e56 7503ac5557dc643516810bfb87232741 +75058a59c10f20447861338bc66ac1e1 7509fff59eb32f2ff770cc95ff605052 750a70e327e769a9dc31686a9073cb6b 750bcdd78a6932341a9704de42010e3c @@ -26450,6 +29559,7 @@ 750f729c8e2a6a6473ae91237f29af25 751164187f6f0d850f4e5af4168fdb5d 7514345ff4f7746f7fef1c158c58a888 +7514839dc7d3284d171eadd605329755 75151762895f5afbb598f406d5de78ea 75152ec42b2d09d7ed8c0c6e6b5a316a 751685187432e011a09f02935aa2dcdb @@ -26462,6 +29572,7 @@ 751f31d4152c3472d275cc5acaa24bbc 752082decb3cccaaa659a7ee014af3d5 7520b6b22c042cdcafae14c5ea41e5ed +75211d757a975c0d367e98c6b174ff78 75223b15ec0bbde4410ecad4e756f196 7523401bc9a1e4ea7670e207823b725a 75239b41ed665246a4d7dd4950f3087e @@ -26489,6 +29600,8 @@ 753be9a49aa90addae0f9fffe0c61dc5 753c0f63ec338d5d24ab4fde86690d2e 753f257f25a015b7f771e448c6ff6c0f +753fc466b696ccefc41dc1bfb0cbe84d +7541098e0833443fed763ca8e6ab181a 75427a8de2c3207430ccb38a9aa732a3 754314fc5fb0e5226b86188383184d2e 7546b37843b35b66fb08044f9b95fc0b @@ -26497,11 +29610,13 @@ 754a621259b75c461ccc9a8706bb56af 754b0855fa53a7bf7f3a3affbd2a3d8e 754d6dae553b24488458c92a9af5732c +75503a0772579d4f6b6096b3a89c49a2 7553a7fa946c52504ff53dcb85de8d62 7553d2f74b8fc6744608de354c9fcbb4 755404bef5ae044ffd724b84d6a35ef9 75552b80ab6ca4b8427270114b721d66 7555cec24a9418d88a176c34dc395185 +75588acfea930cdc936e412512b2de59 75595cc283bcc77f7f6a4b9b4bac191c 755aed8fc1c7d62ffccb772ca006ab42 755b9ff3a8b5b791e83541482a825c9c @@ -26517,9 +29632,13 @@ 756141351c01ca7c52c800073f7c691a 75638eb1b63e92dffed2e3afe4bae33d 7564680e8b3c07b21f1ba1a4455aac21 +7564dc26d2f5b6004274c7acd5e7b631 +756545c9861e7a46a86f2dc990d49c94 75657eae2727d6cf4dc34497389d74d4 +75661a870498a189eea4ada3b82ce51a 756680734afcc311edcf454a07dabd90 756729c9a3e9fb7e6c9c4aa4b0f96485 +7567821d3f860a34a1018c088a9a7316 75685b6b17418623c2d4bc20bb97b979 75685b8a938a55d4f2fd197f425e9f21 756860ec198201b3a3d649df4786ddab @@ -26546,6 +29665,7 @@ 7577696a33a283979a5d4d5b79f30393 7578900067d96e462f3e2f3d9389ff6e 7578adef1fcc639955cd226aaee26a57 +7578fbdbee325c7d6fc68a41ca4e590e 7579905272331e84a2f5585123c43c52 7579d50b78567b59ea761179afa7d3c0 757a65d5efaaa42468f02df51fdfc9a6 @@ -26556,8 +29676,10 @@ 7580b7cdc55a88b053bcb197522472c3 758123c957d314164c7ce45ec02f8c2d 7582f9503461d95fdaa09688f6237cc2 +75848fb143c2a3dac228dfb04c0a1bb7 75862842c95b9f534bb90b45d71ed95a 758768cb48f9bda524975af57d00e6c8 +75881647b9f683967c70f187522cce28 7588c6be2ab8ff03240947905b7d1c06 7589ebeb336ed8ae95c26a69e51ceab5 758a6c02637e7c2e89b4051b104b32ae @@ -26571,7 +29693,9 @@ 7598dd97b0cae154b3d859fd280386ed 7599fac5cb87c6e26dee41e5ae515add 759ac6bcc7c5cba5ed4e9dae0491fec0 +759b1cd4d2bf3eeddf4e54badcd363ea 759bb304b06c98aeff4a1f196b40c56a +759d465b045b177f8fd2667aa205d508 759e78513fefb6a335b942fa63ff25eb 759ecacaf76e264b76988fe29e73b067 75a061a5ccbc08fb7adc343ac9d1ae85 @@ -26636,13 +29760,16 @@ 75ce772c3619d44df32f1862f9e1b2cd 75cfa2a79a3d332842989c4e253e67ac 75d03066c0d25b470ee4168d2dc2f049 +75d09f07ecc8f8992b9948eefb2dc816 75d116a48b8660ea61d838d4c991436a 75d1be6d874e7f1220a9e1cb27a39b9d +75d2fe15ca25e816dc2f734b9b0cea4e 75d5f129a46378a474958e14e07c4dfb 75d6716f5303804103d7548158d1784c 75d7ec5211a938f0a072f6ce0b4684b6 75d847c133501f39e4a4b6599b590e30 75d8d94bbd03f5d752ea0123315e3d45 +75d96646c7e5bad615f284421223a02a 75d9efe63916e065dbdb64bc6f231668 75dc1a2150f3bb30362beeb82597bb52 75dcd5638785b6bdeceedd59c956416a @@ -26657,9 +29784,11 @@ 75e5ddeaa9df6209a19916df7b458769 75e63b052374ae25f58cbd73a8465f79 75e738cb926786cd233fd13f59cc570b +75e7476d453a4502f93d725b77670f17 75e7f4739a27c6e5d2bb8f9e46db9a39 75e86eaf7ff9d7e2431b967c149c5bff 75e86faaaf9233a42640824a9617697f +75e8b8b65db55a1bad9c0f6598acd5e3 75ea88592f7586bbbc2778164e6c6d98 75eae2100b15db737369ed4168cecdfd 75ec5bcc7162dcbc9b6f9dc04dbe494a @@ -26686,6 +29815,7 @@ 76009342ae8f996c20498f8a78453291 7600b994de3d055645f9397bd6e5e023 7601153a4b73cdd4aee9991a32644967 +76015827732699bc433e66799201d7c0 76031fb5ffdd3cf03bd28a9461a3d428 76034039934bc9609cc7e823a04ab88c 7607394e421df6e48bebfb127c072ac6 @@ -26728,10 +29858,12 @@ 76365401ec0a14cfe5d430167e60f793 763696ee1beaa32cd87d51434cbedb14 76375adda45189f80e6b5e1fde16df07 +763cc1efd676e4727c1cd6bb873c85e7 763edbae067e371ec9ee728af557be50 76434dcd345cbe99fc1c03b93ee1c277 7644cd75e6a7ce6840049950a750cb16 76451c5e0156643431767fe64113f16b +764743a04d76c0e0d0d268b23a8d67ef 764a33ffb8f6bda4d5d50c68213f1fd9 764b91ad44767e67b5582c6cebcdd84d 764bbee44c40b4b377c245e40846ec1b @@ -26740,11 +29872,14 @@ 764f18fa1c26e6368ccbe276d7040aa3 764f5901b9db7cdcc7d5932b6d8c25b0 765368d75d8e89a971e52949193507af +76537e9ebd9ecad69534cd8919856157 7653aebbadbf23423f59a5997229f012 7653c6b4f3eba914b04e969a0589b927 +765474bdde47a63866f233d1d485d674 7655637472af77820e05bd83d0d872c3 76556ec2d83afa22f0caa65d7714a839 76563229842904c36a612dea8f42753e +7656b34cac69a2682cf7d1c1f0428fbf 7659e478620fa04a6d8a55559d2899c0 7659f5dd277732db2226727790c1de92 765b6acca3dac7f2356dc7aebe6c0975 @@ -26757,12 +29892,14 @@ 76614ed89fea342e110da5974fea47fa 766238dc39940cfff4105f2c6cc48b73 76629718fef62c9f3460e2ee323526a8 +7662af45091ba9e5fa5d7af7bb4dec04 76630233fa3aa42ea46fe83ea32f6a6d 7663838ed1f33994892d4d41079aed2c 76638822d2c4b1d5860e1081467ef8dc 76649163019ca45264f7fbdc7ccfadbe 766505e7b08068bc5f62317b74c8bd41 7666c7c68e986e2ecaa651b215337530 +7668d7263ba27518d39dbbd295d3542c 7668e487efce447dc84aac24e0dfb616 76697b8ab0155ce1b74635ca5950f149 766b2e79a4adf32cc3c5d6fda95ce9c3 @@ -26771,6 +29908,7 @@ 766f9e54d5ae91dc583423360a441033 767012c299b1fce299baeaf466a632b8 7670391d2e6ae709c3de65221566cb35 +76705ee633afff348d2a97e4870cc831 7671807f57c4800ac822da2be6d9d08a 7671a3ab2381a854543f8225ecfb3773 767251ec8529ec97398fb30a9e9b4b0b @@ -26788,6 +29926,7 @@ 76815e64e14401342b1e852d09a4cb1b 7682f00a267748468fcdca40f16668bf 768328413075628d8b02697e91f2c294 +76843b7789b2699fa62e06d86e345b97 7684eb521411dd37c508e18f04e06a1a 76853a4dfb2156687f54b47574b6d2d0 7685b53ff4cbd20d3933f055c6db2421 @@ -26796,10 +29935,12 @@ 7686f61dcd48553bdc5299e229ffc273 768899e1c070ba8564cc45d595acf897 7688d3f20883558924a8a5de01cab584 +76890b40f2574cc5798f835a114ec39e 768abe1f43fe2c55f67f1142d2e36783 768af472e623ccb160d0388ae99f928c 768bfa07fe85a3b1c7f3b4d1879829f0 768c86c293e0228c4e9b0a9b4e7609e1 +768ca3267b6ea7f7a06d0b889159d581 768dc8863736bb679c9a35700fe3014b 768df7cfb75a3f8f6daf003944bcb5fd 768e0884b6f005d957268386cd19365a @@ -26811,12 +29952,17 @@ 769105930d701e93c5c19efc03ad84c7 7691d09bc774da47b6ce19df7d0db59c 7693c5f25cd4f9556397061f2a2b09cb +769401268d03a3d634a9234eede2fa5c 7695790b05e4250102672cf12803c31f +7696719382e3945b63aa598bae0c1f45 7696da11dd801261d5d9c1118735a14c 769793cf60614ed827114eae8486978b 7698f1174afe97b87fcc7642b54d65c1 769907303ba1e0fe4c635df229b7268a +769a582b05318157c12e459e61f78844 769c93fef22d7012bcfe7af18219ccba +769d96fdc24d1be46b5228191a1548a9 +769f31b3b82118abaa3007ced0206c7f 76a0a218486a26d486aca6e5e450b081 76a2cf20ae22842cac67c2b84f692380 76a32bccee22b96b8e05143f3935f4fa @@ -26832,8 +29978,10 @@ 76ad5f26225698759130f0f6c0e24a77 76ad9bef19347cec3ef2dc3e110e5143 76ae2572699935f45bc3b80a042d53a4 +76af097faa5a313764fbf7793636fb7e 76b3573ab83c1c182e2c665bf97b4e1a 76b4cf96cf96ede42de839f3791488b2 +76b5088350568828ac643a6600e3ddd6 76b662e878923ea42ce74715dcf5a0d7 76b89820dc7952e7f29e56ac01f48eed 76b8b716627d6fe227e91fdc12c360a9 @@ -26846,6 +29994,7 @@ 76c06f86fff707b797ab705943f4198d 76c1b9a08eb7545c7c5bb20629405872 76c279f72b97be96109acea635db0a27 +76c34720d81be58dfea0ff2a32a76744 76c35f83c7eefd25e2613d618042a45c 76c3c6d16277589de0d707d45e4b793d 76c4abd03df3beea0c24f8b420036b18 @@ -26855,6 +30004,7 @@ 76ca5fc8aa44ed7290e8b3a6f498615b 76caae2134246be94d94610661e1db68 76cb57fb8eead7941032781012228088 +76cd9019e0b37ad6deac985a4cfff147 76cda79f9541d33eca3f3309343c4244 76cdacaae25015bbe5abc9cbd43a088c 76ce2909146e98dda90a78bc299e70b1 @@ -26878,6 +30028,7 @@ 76e3ac7dd1d6799f678189645f45bc63 76e3bdb1bd438051b5c056b2a37ad0b9 76e4d311d362a6230e8b0c9e5b0afdbf +76e5c1d4ec5a8e7ea3cd59fcd4ced2fa 76e92715bc6377df686d4160cd7e0e45 76ea08f5afc8a51e5a9ac665fb94e912 76eb6d6d9320b69769e1c4e9fb2fc919 @@ -26886,6 +30037,7 @@ 76eecb0951eefd733f5069eca7ba9d4d 76ef6e644c7774dbae1e44541948d82a 76efd1fd4965378a43b49c44111d7517 +76f0593a51220dc5f5d32e929c9d569e 76f10cbe2d8aa06fcee033f4f65ce651 76f1a068de3cbd433dae7146775b6986 76f1a46ffad3caf1dde6e26b1c1c3ac2 @@ -26901,11 +30053,16 @@ 77004bd5ac645c634919104f12f3462d 770083cd5f2bcc26389660994066fa88 770290157cd2374b2eb72b5929159b53 +7702b1892a76ba9635ada2ed99621b99 7707580826abc9ad8434f375d3c64216 +7707e5c33b95272d2aa2b2205d2c8cc8 77090bd1f6939aeff93b51f948445d63 +7709d26e19c7d0b28ac06a9cd083ed71 770a094113aef2132e9c63aa0d42fd2e 770a70fcdbd0f75753d48de3700a5432 +770a7deba1c90ef29c74f1fc4cf0d61f 770b7a9e7eb98ae9c543b142cfd8c689 +770d7037d17c5f9fdbdc7954bd2675a6 770dbd8494cfdbfe7f5f78c00bd2b1c0 770f76b682f2e28e36324c643fac7037 7710054c0952c134de1c5cfc466f8040 @@ -26924,6 +30081,7 @@ 771ae664f7ea1e884761717aabaefe9d 771c5c6c5b57698639882a02aaf4060a 771d30ad5eb63ba303bd8b47abb673b7 +771dfd7d5c470b55b0da5d7ac3b693fc 771e92b40696986b90d1fb35bd3b46b9 771e9ed3cdcf27e816825a007c00877c 771ef84bcbbefb37d2675e2b2551a827 @@ -26931,6 +30089,8 @@ 77224f77f543da57d452643bf2a02521 77226a7d2293447fffb54b052073c2b7 77230595b9d4b322d0c4ad42ada9cbe9 +77239eeb1673faf675f5de98e7278727 +7727001d0ccc856345c410dc3e676931 77271ed69da14988f56ca238bce073f5 7728618c190e5a640b8ab13e5a88ddf5 7728bd7f4f530b9ee80049302e983dbd @@ -26951,14 +30111,18 @@ 77322fece31e1c0b2170dfddc71ed2bd 773250f1bfc439fddb9ee4a8f00cc44a 773264bc519445daaa92f7a0c871d000 +7732ad8c2a902f6514ab1bf0e4a1fe0e 7732d6962c0b9cdccd389d6e840a5dba 7733112961d338d3c2b3b34b249b6c54 77346d7992de3a34ba4f0f6b78bef2e2 +7736a0a95e058e66a27212e47fcc3e1e +7737661afa37977c1747164bec071b7d 773767eafb6cb369d5df2e1cd5580c35 773a8196a84a459f7238d8e0fe91f6ea 773b9ea96c2777a86895bafbe5f2975d 773c1924ba24ca13864d0387bf4bc81a 773c9376acebbe989b65171071ba7e81 +773c9f893e584c4233beafd378e39e53 773f433d7ce0dcde71061392d0f7eac5 773fc5b389b47878732ec8e9d84a9315 774147ce68525da917463e153b46ed25 @@ -26972,6 +30136,7 @@ 774c8cd0c4ac9b1c7fb559e867486376 774d2a5ad949bf178f5c7e60f4b881ae 774d9c42c7593d2775cbc4c77036a712 +774e9f0f22e9e47072d4f02de2eafc3f 774f0f52b0c0f60955fb86ba842df3fe 774f2ded0e126546c215258d2d49c2dc 77500f41d6e216b4985c151cc140c03a @@ -27000,6 +30165,7 @@ 7767bc9c652b1049e0e46b7bd9d42d59 7768a32007279e2387090c589197c0be 7768c8a8a238d261bf96047050d86fef +776930e8ccb353999035ea400f1a5d00 776d0287c4a3e429fdc15ecb83af26de 776d36fdfa6f43d3b00d79d319d4f3b6 776e695c111abff342199392d10ab3ac @@ -27024,11 +30190,13 @@ 777ba41d8e23f80fcdb57f42dbdc2529 777cb032bf5a044d37de8b34447855c3 777e061c57a6c24372dfad2b8ad52dee +777eedd760a7a435ce027c57f30d7f3d 777f4dda571fa4ea067372939114adf9 777fef630a080d54ccf77b278bb014e9 77800d32575d922fe3174561636fe8f8 7782963631230a66e1ead7ca76ed0bf1 7782e41382ad913d475485f23556b6df +778345b916110a53e2b34e789ad3f4ac 7783b92958d732ae2f919c1c80010b66 7784c843a6b3acc0cb2545eb0da6e474 77859d8a35c43866ea5d81d1a19f0266 @@ -27037,6 +30205,7 @@ 7789147af1d549cff0ccf98530005f8f 77892af404fef357f6d8878e347d4727 7789609e3d9d6955e3384d77ae815ae5 +778a1a060ffa3827dae7ebeb6d1b9f04 778a4206c65c60b96c7bf4558f41e3bc 778b0d8e331e37f3f4e0d1cd4f5d4e7f 778bed418ac6026bc849edeb43409464 @@ -27050,7 +30219,9 @@ 7794ac476fbd4f93949707347cbcefda 779732893f44dccc0b0b690a16b4b89b 77987bb87c061f55596c2e1ce1361fad +779c7c3dd3a9cb5b1d4038d193601163 779c9fa0d2d95ea1505bbe258d7290bb +779cb8f0ab0c0bfead50768f964726d1 779ee912ca8d4c148174ee9c990d58e9 77a0eb4741fa034ceceea7a89676d43e 77a36ff89f19e5c117e17e8952d536a5 @@ -27058,14 +30229,18 @@ 77a64962849888d261c5fa0a9836d429 77a6cbb4d82698381353de0fc616c1a3 77a7168faa5fdd3cb2ab45711918c5a5 +77a750518c11fb5dcef8ef2781dc2c86 77a861f95c0959f451ecd1e0991ae3f7 77a987560007eb20a13622bb2873a031 77a9e1612cd750b41fa61757d4d68877 77aa01040d0b22cecece20ccca3c226b 77aa6bf816fe4bf157377e2dcfbd4073 +77ab3909ff000c34841dd3e68506f4d7 +77ac31cb0f7299491531d2d7de241074 77ad148883917b85cd7346acf8652141 77ad3cc47f319a3bd8140cc72c82f10e 77ae51dd66be6eb8683592ccc596284f +77aeeda538b38fc7343b058575ee9603 77b034c9bb87f441649722c8075fc077 77b128e5cd17b363a7991db22b26d673 77b231949ba4904d7d23f4a6cd2c8dd1 @@ -27081,15 +30256,18 @@ 77b9805f015145585243d754968d9052 77ba6d7cb88747df0b640db3b929cc78 77baff734a0d838a3fac0f9b9d738cea +77bb1b371cf0018565b5cf2907b51780 77bc4b354310e95366576cc317775f79 77bd0cfa9deecfb90dcbbb3b9b76434a 77bf802536fc3679a4b8bf0ed4d2db7b 77c23d441864ea25bd27c78759871429 77c27b12068e578a347ea7be4cafc5e9 77c2aae4f52fa0fd3a3ec472d9e2f2f8 +77c458cde457d15e4486ab102e407ce0 77c4613f332055ea7cde114237ca1b33 77c52f354b2202a8f94c5b2a03788801 77c673e2d2c36e4e54cc02406d1ae3ae +77c67d554684e47ef21676a01017ebbc 77c7a56602be97d9c6090a39415c1562 77c7c347f3bac2bd21ff471bb8e66b96 77c896267b1174ee5e9b201167d8ab74 @@ -27116,6 +30294,7 @@ 77e822b8495472ccc3d78a6aa96db11a 77e98299b4402f467fae5da747821ca8 77e9bfc85482f66956f87c5009ab1c0b +77ea43d4c1035122c29d4f4fcc08654f 77eb35d48ac46f8b359740bed4bc1ef6 77ec2a2613a13b96aad36469eada6642 77ecf85647962b102490822ee8d4e069 @@ -27137,16 +30316,20 @@ 77faf6e758182c8dc18be7bdd1359971 77fb4e91f977a000b417cc5a44f99680 77fbf66c9cffe86625b6c50c53756acf +77fdc9f7c77ba2311c4f3d2cae6d54af 77fee2fd1a000fa4186186bf989e026e +7800ad2d7f8650131f4da8ce00b55d59 7800e7a5dfac70041678695a3aa5831d 7801579bdee0f8ed243ec22b48c8c991 78015d2b51dbc17d4d696f89585f6d6e 78019a7e356738eb6e4722be932346b2 7802015af808d35dd473e18dd15152ac 7804029bbbaa57d94111034707ba5307 +78048a2e6181cb2bc4214734fbca237a 7804adc5aec8ba88f45d92486eb6fb98 7805845520fead33e6abe5a7563cda65 7805986fab6c7f4137febd105079e668 +7807fce080607789fff40cc87ce9e3af 7808662175d47e184382a36a20269865 780b5f20cccddd0a6d4b5fa54f649e8f 780d1eb461415bbf30520179f459a2e4 @@ -27162,6 +30345,7 @@ 7813204f188eb6899d1634824c0814ff 7813454108d5aa6af2a0a3683cee9058 78137ddcac84db12d14a7acbdd0ad3d5 +78139f87f56087502566e2c7df2b82e4 7814202bbbb01913511f9a8343d6b797 7814443780a6a9423e17d5cc4b8ea6c3 7814abeea0ed796c6c9a7921e9e583ac @@ -27176,6 +30360,7 @@ 781d65e987001643304f7e684f883b79 781db07c11c6461fb96e8cf9fdff003f 781e7efa433f9e5348ecb080d749fb46 +7822c38e998d2a8469947ea899cbf8b5 7823351a0010db45d357816d90b3e096 78242cf915413e16026771c7ad937090 7826620ae4f4d797da7d5e5b06ffc50e @@ -27192,6 +30377,7 @@ 782cd8c2754b778ace4856cd85e3f711 782f70c80e5f626d8de0dfb412f143a5 783354fbdd57ffb2a746ab263778b1e6 +78341c34439629e805358d83ad42a556 78366cad4903755ddce9548e7243ace6 7836dccb458eb54550a4d1526a9fd9f5 7839c8170c6d9b25fc60e7bcd10ae558 @@ -27204,6 +30390,7 @@ 783e76b0f6b49a0337c1ef765e239d98 78417b6b569524bbce94fdfcdd57aaaa 7841b5e62275d1570402fe32efba33b8 +78425f31f98b1e7e1afd8dcdd255e67f 78428d802993938ad78a9c4b226b8f15 784294e2aa48b75df41908bffc5dfff8 7842988595273a83e2a065b63de5bd46 @@ -27212,10 +30399,15 @@ 7846b48cbd3ee6f300f7d52430636b1a 7847759b14cfc2545e295ad5b4fd248e 7847d20db0bceb94f93f0e87ba96fdc4 +78495b80cf52ee52880585b264af3d3c +784d6380fce89e3b9cac32b0f970b452 784d8ccca165e797f2fc82741a73655f 784e2491a48af24cda9b2a00006231b8 784e9bfecb110f4286af23a4ad9ab216 784ed53fa39f1b8b234fbd5f125af206 +784f47fb0e104dcda91c6ef92ecf053d +784fc585e6c6ca456cd69f21102374c0 +7850bbe1d755a5f651791beab965e727 78517d982ee511293bb9e5593f7da641 7854aff7d68d4a5aac52edbd496cfd8f 7855ababe4ee7a53f8806835236a7b77 @@ -27241,6 +30433,8 @@ 786c7e6fd5fa1ab6621af1afbfd80d1c 786caacabff28986f89ffac766411172 786d79987c01946470f9b27ed4f8c70c +786dc842c44806a3c06cec5a256018bb +786e3791cf0b5e70a5b925bdb2090b56 786e3ab912d8b936d2419eb881d676c7 786fa72138d2445e73e69558a23eb485 786fa7d62c99d8e098f43eae734048cd @@ -27255,6 +30449,7 @@ 7878c503a99452126b34a9678dfe5d83 787ac146317cfd0e1e928adc392b6804 787b4b9d54a7a102ecf601484543e8a1 +787d1a34c151dcf5040adc821fec84be 787d99f892f9233a3b20767c485cfae3 787ddf1019f1a2727ca0997c74c65f07 787ea12098c85031791f98608b9b2c6d @@ -27287,9 +30482,12 @@ 7891d8524ddf09b39c3a9fcebed6e547 7892ec8ae855cfdffe02d08f6d892dc1 78938a2f96ad676ae0b8539335e12c7c +78940cb92b331cb4d9ef4cc3bd7ea237 789555366690949ad659f4446e15281c +7895f8f442fc7f8e55d3bd59d363d793 7896578870ae75025390f0c11511d78f 789827f295bd65efad90e20b0ee68917 +7898cbb29b37bacf53e8352bf65c9b28 7899db101b66732940d374617decc50c 789a15f55d5c2b97b1ba91bfd896ec29 789cf5f6ed9908f013f7a730982db529 @@ -27301,7 +30499,9 @@ 78a49188bd626eed7b68222d785ab7cf 78a523969ce53bd58e6e82a0541a1b1b 78a55dbf6e1acaa155d26842812772ee +78a603eb2dd3dd74443b6c3b1bb072f9 78a659b6df16e3658dcead92475f5120 +78a6a87c9cbc6860b190e598ab664aef 78a6eb631ae47b4204b368f5f3f07aa0 78aa575cd9fe47a113af8a90d7be7bb9 78aaa26f678b155aaa198fdf871f085f @@ -27322,6 +30522,9 @@ 78bfa648b4639e653500a074a610d277 78bffe753c1f08b5343c5beca08c44c4 78c0267d786d1567a58ce4111a1a5bb3 +78c219b88975ce5c58db0a3523734215 +78c2eec369b64a999588fb9586142483 +78c32e40640983060643cfd91f4c397a 78c59507d5ad81ea5ee07f1951f813ba 78c7c5866e70153cca255926573694c0 78c8733bd3ad944c4120a777652ddb7d @@ -27332,6 +30535,7 @@ 78cb8dab1d10f90d93f3710ffac94291 78cc75eb174705c1cb14eef9a891c9da 78ce5ad040e06c58cde4de011db7552a +78d09c594ab48672b652b302c97d9c80 78d0b9a11e0c9fa3bfa7b9eafb0b80bd 78d0d5cd20724e53574769a28b2aef93 78d13e0db18b186972a728efb8e60bf5 @@ -27341,10 +30545,12 @@ 78d34f5b6ebaeeec3233f12cf78ce47b 78d35f691cf7cd2bfac3a28d02e0ea09 78d375e6c1d2c1a383847fe39d73af10 +78d482140b7e3b224a3c3954b90b05f1 78d737c8ec70ded91442770af85cece7 78d74a35036ef9976c57b31f7c2819d9 78d8218acda65afe66e8e065286b5ee9 78d8e630cd8567056cc8838166980929 +78dad5bd65150145b48974d3ceb39a52 78dcebb1d8c10fc40fd72715e462e06d 78dd71baec50bd2bdb6150c7b53a5ac9 78dde448e653e6302809233ec0cb19d6 @@ -27353,6 +30559,7 @@ 78df1b8baa163264050566d18d9ef121 78df6d59b68519e1ec40fc5852f08b8c 78dfbfced373358f7b4f536a85a13d04 +78e0523797b257f4b29aca8c815b55c0 78e09ed4e0c3e3aac389f9deedc33669 78e158543fffc826472797986e88db55 78e216828ce758827b96facc5b9c2419 @@ -27360,6 +30567,7 @@ 78e30137b2326e5f91150384337ff244 78e40d5b0f3dda46ee7e9785a6970c83 78e455e450bd2861258e7d597e444fa5 +78e7b7bcd6deb9f3b4e3f4d7c687310a 78e8f6dd2628697057150e1cffeb5171 78e90cdc064d70aa1809fd16bb4e9cdb 78ea05a60010cc035af37a280637f134 @@ -27367,12 +30575,14 @@ 78ed5b250f96bb826275b3b16bc3fa95 78ee1bf4e43182c7b49ef0d2b329e63d 78f1a315e81b0b81aa14133e409fd942 +78f23418c47b5e2d81f213931f676546 78f29daa158bf0cf6e899ff5553653a2 78f319e595d8cdc8f901aadc2ce0c08e 78f4b67957faa1a45f3d3a2686d9d77f 78f648b3f2da9663ea99318220b92631 78f697cb9528de4007407b584de27b8d 78f6d313b33098cb63adbffd942c2692 +78f74337bd97fb2ba5080a5958d6151c 78f749dbb9635b61d95fd77c654f09e1 78f767455ca53debd589c48e58bae4d9 78f95e508519afb054b8f7a8c0af24f3 @@ -27380,13 +30590,16 @@ 78fb2a08083bf61b45136bf561c134e0 78fca5c2d1eb265388365b13536d5f84 78fd4c7837ebb2d45ba6badcdbce2622 +78fdc037cdc69a8b340ec586c31fe040 78ff368f3c36395217d6ea01ddf2d25a 7902738cb2a6f3cb3d2b64307e5b0011 7902b1a168d69ed03091c041610c7c06 7902e56f9a0fa0e0891aaf8e4490cf03 790348bda5b59e26466f7f9f20a36445 790538b6974bfd0a6d564b909a92ef45 +7905a9fb244cc540c642b54557e86ede 7906495a15f82da59bfa79e1536e4457 +79065b94adc84d8c23d4d3d5611286c0 7907cda1b69197c45be03108d05f2b63 790894b629021b273e033a32499cad0a 790b72790dd5d508a42139b622912edc @@ -27399,12 +30612,19 @@ 7912706d0c3c6a6b0e68a387c4b52542 7913cb3eb256222c5b9a142b7f15b8b5 7913cd130e18265104f42fe4d4b9c0ba +79143047ecdc1d9ad1598bf173b6f7c1 79146eb45115d71f4778678e5cd03263 +791653121a94f45a948e5991002ce775 7917d4fa7e763db2689abc98acf28efa +79198faa98f79a6d36018efa97442503 +79199e25b1c5a400921ef6bf52aeff92 791a50ad6c8d218208a74f21e3be8fcf +791b2cd1ad43be4e45d905c48c72fbd7 +791c3f7336370fb275c23c11fac74177 791cc9e6d2fdd56c4db23c848f547b1e 791cd49f7160b0fbafd5e676b5aa4f64 791d0d5b81539610d4b4fcd594e0fcd7 +791d5cd5c61238c3522fd03022aa0446 791e1fd7e44160d4c76ef3fdbf3a1329 791ff52835a2881eec06b11343cf0b21 792048a14a704532bca033f1ffd0cbb0 @@ -27418,15 +30638,20 @@ 792a38c756291254c57999b6e7e285a9 792a60f0b882e3e44f408acd886a9d3e 792a96d3ecbd48586966d85e48eea600 +792b153019d5995f1321aa704cc939a2 792c17c76ae828bb6702c616cefa05dc 792cb3259029d881b14170112bbb04b9 792cd9c93c9866ca567d42e6fd12a7e0 792cdf2009d91529e363ca13b195ac22 792d98a677157e98e8c080469bec417e +792dd46c1bd8242a732466d08d001cf3 +792f321b4959d36f1312f21a3f507e90 793003df0fa1a8802576ba755c36a98d 7930623f70c285c27eced62cf1ece718 79326d73f2b3b214cf74eda564e861a2 7932881255e53f2d97fadf8a679bc436 +79330ccf3684dfbd252393dd28026ee8 +793731fa80fab84c0c8d98bf8b63d992 79379cae614178aec5686622e08cead9 7938434854e6deb1423ba4cfbe2857ab 7938c5b3b66339dcd790362eded8c632 @@ -27434,18 +30659,22 @@ 7939ca40e5f9f0ef8b4efba20121989d 793a336ec08a6fb33e5e6d712cbe967a 793a488ab6f319eb5bd6333def2bcc0e +793a4e7cdb33fb64d3bb2869f43c1753 793b7bce3e93f8e3623eaa0986a5097c 793c5384284fc4be7036e4d87061848e 793da4c34a36a951f582e2ea61ae2553 793e8ebd602b1e725b00e381e1c585fa 793f88c92760e52583d3fe884cad46d8 793f8ce4fd2fbbeb14f60f3e27ccb17a +793fe5fdd622853b2fd4c01745e58089 +79429be25b8a5d1e30e4cc1af1748c9b 7942d3107945a73c384dad5bea211654 7943bc4a287ba4507e5aa0bc7798ecaa 794511171b28faa25fcadb7f9068e987 7945f6f64d6f0e8f52cb422ce0e6e966 7946080466aa7bc217076d14e934bd73 79464279f478709560261350f9523cc0 +7947139ab472d4129a0fea47d8425cac 7947531927e8992f03a8ec29b18917ff 7948c3f29f005062bc94b31c5c90399a 7949a20ca1c1a79ffd1d2ac8b49f8144 @@ -27459,12 +30688,14 @@ 7958541558abe625338c4b1dce9cec80 7959e6df9d373e280df48c484da1effc 795ac12936e05d08588583d4ff7436c0 +796072afe2e9eba22311e4a571ddc577 7960a52e102346676fff5e1cc4496e17 79626ebe023c4cef277b7ab8fef2b44a 796491e43f8aff2fff0790dce552875b 7965215460aa67d237f72f0c471ed908 7965d2d47f32329b6bd1c6d84e4603ff 79662646e9b8a7c6c9fa7a2a35883f63 +796981fc0f57a5b0c77f1c8cf28e1767 796eba8665eaf6d753d2fb0c58dc2f7c 796f8bd8555d2b46dd4a28008c7176e9 796fe2b7215921c9ee02b4f279331a53 @@ -27480,6 +30711,7 @@ 797b684ba66fe3a42361bbe90b79d4f8 797c9689978c907168782fbf89158766 797f6a0875b673e603e4dd867ab71233 +79802954dda383f76ac844f4f3b102ed 7981087e629805464fc0040cb9a48c60 79816cb0fbc8301b7d10d7f87e996323 7981948ca1bc271cbe2d506453381ac4 @@ -27499,6 +30731,7 @@ 7991853f020ebdca42d4acf8a3cc1721 79933e97a568811149beda08c6992bab 79941d9494aabc0cac79f17c27936fec +799438cf281c3a8eac13953a35365e3d 79982b35df1834ba003d463b4de60a69 7998832a321e24c9be118c333f4113a7 799940916e52418aeb24d8d6c871da7f @@ -27530,9 +30763,12 @@ 79b7d0599b9f49a4f995c235be123cbc 79b7e6e3dbebf30f5ff1b7610f33f7b9 79b82a38713ff33010b1d19780e2b2a0 +79b89805d0b545b6d91d6be71336658b +79b89991201bb9b370eedf5da4c7a51e 79b8de7e1268430f75bf4e24a9830a0f 79be487850dd3847acd02b450b2c5fdc 79bf9d4d1867995e86c26121ad922f83 +79bfcf5745642e0f4566bf575dfaef78 79c0395061562e083eee6dd78a8bb2b3 79c0a8edd6245bcd33f1c90008a56d0d 79c0dca8c447b4a05f84d797e5b2790e @@ -27565,6 +30801,7 @@ 79da32158539de71b0ad19843509c270 79da5c23e6a98075706e5d784e521348 79db5cae0f0c6996c9451d0df65018b5 +79dc4729a4edfcb70d5694015eb71df0 79dca60c45db6d2ada2d1356076f17e3 79ddd46712bf5f8c87b79db9c23c8670 79df27edc8416cea8329d062cb7be46d @@ -27583,6 +30820,8 @@ 79ee162c6849fe512833ae10893aec5f 79ee97e9685aacdc0b879f3f413fbe35 79ee9d39961a70f6bd8637487797b468 +79efadad5b43a16bde39ef737c9ced1e +79f044fc77447e847a46bc6899b02adb 79f3585c62972095e04eca36da01f5a8 79f475feb2a98845cba93a7cad958823 79f4953557798fbe2e5caebfa7b85571 @@ -27591,6 +30830,7 @@ 79f7a06bac6b499132c19caefd5b9718 79f825f7dd03e29242c9189f454af1e5 79f8a41600be68ffe89fa83b5075e602 +79f9255b8479650447779106e69ac4b2 79fa6ecb56c7599fec398d55c50c8ee2 79fb4bddcd4d5ed1b58b93712cc77af2 79fbbc22e665960207b2ca0464bdcb2f @@ -27604,15 +30844,19 @@ 79fede624cf03f96bec23bba7f676149 79ffad0d06b1044587297400b2d6fbd1 79ffaf8082e825b497d39fba6314f02b +7a000fbba03af0e7fddbe961ee28d415 7a004af390ce64b63708dfa65afe6e20 7a00643fb00c3d20ae4d4d37c88e1dd7 7a00d83d51c910292d3b97c753534b7e +7a010d6343bc674ae676012c5e24dfd8 7a0195e63af4c6637721097584a19773 7a029e72dce9d5772809d9b9b76eb854 7a02a152a071e2ffdaae84c86c52b90b +7a0405f811201147312e517031cec68e 7a047d89c889154be8dbfc794f163f12 7a07235e7cff1c4a248209638bff4d82 7a090dd90ea8e60cbcd9090647a3b024 +7a093b453ed34f818ae362ab46f5a4c6 7a0944eed5981d97378a2449bd87bb17 7a094a17dc374d06f822e101511af3b1 7a0c91856e1e0dead7e2977df4fd86e9 @@ -27630,6 +30874,7 @@ 7a1e1cbd69d4070f9ba914e3582d3ee9 7a1f6ff59963f5e7116da1f411d0a74b 7a1f70e7d7c98374e6f5e50d6d12c4fa +7a1ffa910db88c6726a5bb0b1d4fefc3 7a22805d92d5cc7c02e85998d25ff458 7a22b2dbdf1f5e177a1adafb3e559f64 7a22c867fd1d5412f69f5f98e64c1936 @@ -27654,11 +30899,15 @@ 7a361bb6c9294d602ed5fcdc8d6f5a54 7a36d81e2c8f7b96de864a8bec1ae8f9 7a37064d5b914ad4b72793a3fadf06e0 +7a374d4b641d7af071d2bbc4b87e8959 7a3841223bad21b9541677109ae50114 7a393a97efbd32cb13707a9b32cbcb3d +7a3979fc2753e3c6208c07173ca75e2a +7a3a5d271f0efadaf76513fb5335536e 7a3acafd3eedd1e0f2ab0782ff62368e 7a3be4ce4d3ac3ef4f50fa8d37c40d02 7a3c814ba7a62a054a1f69c6e1fa1af4 +7a3cdf2f347de610eb9c189c618aae93 7a3e1c0807ea6c4399ef18430caf66d2 7a3e7e046ecefe38c9e68cbc64b4e833 7a40f9a40ce14e855dd10a0646bb7c48 @@ -27673,6 +30922,7 @@ 7a45ed533a7a565ecd7cda2ed1557873 7a45f297a70a14d867c3d9eb310c4b41 7a467a76cf1ff1297115becaeeb1c589 +7a472a42ef1abd0cff843a9cc181b471 7a4869418a33d13d65f198338a25727d 7a48cf7cac8790f6d4866ae9cec8eaa6 7a4971a3005a07d4ada01c42ab52ce81 @@ -27700,11 +30950,15 @@ 7a5ffdfafc23325153586b30be1238d7 7a601df2a234b097ac3b072b9feae040 7a629b8cb73ba10d4f9fe7ef05b85652 +7a664e2440333fbcabc866b3e3923b65 +7a66d07d66b264e47586616292bba527 7a6800560b8f8c4449e5aea9c427ef1d 7a68e39822d803be2b1b3d26766551a1 7a69987631992d40c039bb9fd71b96b2 7a6a2a58deb3b2625dd5a27639970d26 +7a6cc06b0a0421111cef1a0dc4df1233 7a6d065cd53c6a419e4373400c368d37 +7a706ca954a882067147599f298e700a 7a711621dac81ab207f89a771347a9e6 7a71c197310d9a33218f93b7ed305822 7a720f93c16eedfc776315ddf5b825a7 @@ -27741,6 +30995,7 @@ 7a914c3e8acdc4fb1fca289d9d831ed8 7a9164a21bba9867f4fec396eaa8f481 7a91d052e60d9c05d76dc263be57fd54 +7a9332dce5dffd6309ea9c061ec28cf6 7a9399fe903acd773d0e51e22993ae0a 7a93d230d293239f19fa90be8b28784d 7a955d5f88bf074a12b14b4274b6ac41 @@ -27754,9 +31009,12 @@ 7aa1f84ef334fb484347b5bed4f84ec5 7aa45d9d7c325b8dc1545762eadc1074 7aa491075903c739890aa9a3f35b4901 +7aa5253b8806bcfdf756efb33961d8ed +7aa5e8dc8b711bf86b28a35efc762682 7aa60b738933b29e7adbb89475de863c 7aa69a0c0e83c859e7e799acc26a545c 7aa6a820754ae75a15b6750cd57e778a +7aa95e804fb9ae2f219d0e0f36dc364d 7aaa0980c95ff610b8674f2dd52182e1 7aab93dde979037827384b33ab311bdb 7aabad2470955c493f8e23931412ce81 @@ -27769,12 +31027,17 @@ 7abbcd109677aea0078e3a839b701a20 7abca3f5e7219532aca6ba989662c01c 7abdf500cbf0a92fa587302e3e3c0dc8 +7abe5eb77449ab78f8780e693a579bd0 7abedcdc07bf0416c81b254bb206025a +7abee7c8b6dbb816f42afbd9a615fbbb 7ac071d80c5d733e5fd02215777ca92b 7ac2a041b34f9f3db7fb7bebdfb1d47f 7ac3a0092206d487d186f997d6e3f2f6 7ac3e6a92877ad59d5baf53de27a1ace 7ac3ff9faf65b2edc3fafd27d71a8732 +7ac4c8961cd157646484e2a188e31676 +7ac5e1a9dac011f62cdc51d0e85ed115 +7ac6777551a4240beb0392d1241cc950 7ac7a5d181c77bb914074950b3ffb56b 7ac7d575e5ab463090d3f66c002cd66c 7acbb5e9b5183fa3d3152545f353c09a @@ -27801,6 +31064,7 @@ 7ae599919ac891211dd3274648dea0e8 7ae6d98046774cb18b2ebd232a145a72 7ae7151c0674ed0e55ff9fc657e7f588 +7ae771e1e789cba22a034b16daffa4bc 7ae8287895c8c8213f317768e6b60fd8 7ae8a46c1ae80a7e94030af67706341b 7ae927f372dbd30bfca0c74fc9a65634 @@ -27813,6 +31077,7 @@ 7aebdb1b6128ce93eed9a089929f9bec 7aeca1437ef8a123329019c0df0d15f8 7aed2b672938c1a4308b235be468da6d +7aed9c276f938f54a63e7e0655c649ff 7aedb633e16da32729cc24c3aad12d27 7aeebb22769a63dea80368fb1563c123 7aeebbfc451404cd31da4ccab5eeb951 @@ -27820,8 +31085,11 @@ 7af224912f88855bf1b8ba18fbf9dfcb 7af389416b52660fd5c825d0f9fe670f 7af3cb643b72f45870ac32a53bd3450f +7af4fe15cabbc3c5bb65ea6efee87d9d 7af7dcb71f74734be0ea396a2c436000 7af89290ee47cdf99d145aa4405a147b +7af8e49cba8d2a7ea9fe5160aa9d43cb +7afcf41ec87c7f6a4dc92c825973b54d 7afd50ba03ba3ff3e574554e15f25874 7affaead8e98a6da6d0c85c5142692fb 7b0140b840ba6107bf1ffb314c9eae61 @@ -27829,7 +31097,10 @@ 7b03b578854f6bedf80864c770ae5f06 7b05f3e6e9785cbe01c653dfb28e21e8 7b062da8fd54c145d543f36056b0095c +7b07f52bdabda0638cb86530184c1f32 +7b07f96553023629332591df4e452cdc 7b097737166e18fa941adaace7f3d86f +7b0bd358e837a27b5abafd49a1566ebe 7b0c892896c3f7354788408e8a2a455d 7b0d03a6242fa31a6af47ce5f76362ee 7b11116f9799777113a8346f23f15898 @@ -27851,11 +31122,14 @@ 7b22a4ec1466e66e4d89fa49b80f9960 7b22cf7f16f9e434f11b6a673acd193d 7b23ed1d7585e7989fe3d399a8661300 +7b2a71b71cc477358c4cc14a1b073b9e +7b2d0101f1c509f3444c505a97904d01 7b2e5e54b68402f1326ab02281c3fa92 7b2ec85cfbc51a06785b4c5669d6b433 7b309fad7ccd301c55f2ef4914d435c4 7b32f2d8035c00b6edcced99a87ef1f3 7b3588f0d983994e25688b44b795bf26 +7b35d3fee4f9c58b09d791625735e22d 7b37edb1175cf50b808f3b6b8acf4722 7b381eae21fe48e3749363a3a7907f27 7b390f74b79b6f7ac21d32ca4563f1bc @@ -27871,12 +31145,15 @@ 7b429043f2415a0b44731f5641504b4d 7b4408b5fe3d2cc41fbd5e2f6b3a2c26 7b442b1334b98ea3e5f41168b4ff558c +7b4aad15677c5ae4d838db456648b3d0 7b4ac92d4b514cdbc50690b10fb7eee9 +7b4add29d3bd042d242ca70480c88ad8 7b4bbcfdc3755f28f9229329db17a64d 7b4fb2cd15395af5ff2ab984c5a8c376 7b4ff592be71ea0a94584f3b4586986a 7b50b2e497efde2153b8bd0fdb2c9dd2 7b528a38e65934f2a68e4a06fe4ecab4 +7b56a8eb087d6e09a0051b10fb662f64 7b587f5b676e0d0918d985a75f5285ef 7b5b7028cee9178f7d00f3c4a5490ae3 7b5cce2a43ff02e1da704c784a89d73c @@ -27898,6 +31175,7 @@ 7b6af02cbafe0f9c74985360afa7f8b5 7b6b338dbe5bd2e2107929f6fcc8a808 7b6e6934f3d62b3537261d8f317d0dfe +7b6ec03eb38d28e5e1b7d29d8b0c8e63 7b6edfecfc8f93978429fab46785e0d3 7b71cbbd72e74c19ac03c781392e3f08 7b71fa6e7fd1e6c321d94920e900c3e5 @@ -27954,9 +31232,14 @@ 7b988001d23df851f47d2c6cabd9184b 7b993ea3c8a58348daeb125b2e050a32 7b99b23d805faa9ef0d9fefa6c279ee8 +7b9a1630d7bf5ff8fd7fca6c66a0298a +7b9a2522d1be1817efd71c36f1a3b16a +7b9a70178f4f1b472f099b356df92f9e +7b9a7e3efa44e89b29b8fb6714f2973c 7b9b005821f45c550111049a162e58f5 7b9c397d88ccde181987309a310e5b02 7b9c3ceb28947e6feefb1c7fb6381567 +7b9c5321143a513a34f97f51fc59fb6b 7b9c5a3785a042553b795ab1747048b0 7b9c965f70072c2e34f4cd10fa8cc870 7b9cc6ee47ef0d8a4f629c0fecdc8e24 @@ -27965,6 +31248,7 @@ 7ba1de266086cdd9baaa5c8b1bedd1f0 7ba22a88dc5ce6a9db4507ea5e9b4397 7ba28a6465643b9262e97cbe00a1f1c5 +7ba39e2def621da5a083de8e9c772828 7ba41b54dd2065d1dffa52d8fb786731 7ba55fa28b4b8ad8effe6f640b1a5f78 7ba578aa32fc5c6ea247eba75eedfe3c @@ -27974,12 +31258,14 @@ 7ba871d7091d7a7d4afde47fe1cbb3d1 7ba8e0a2db5406716d9a4ac1e5aa0b21 7ba9608396e4049789c798ff0ff8f637 +7baa1334b0f104426d51db8df1738b89 7baa1392e03609803bbea9e5659d1f16 7baa6d9dc521db9b5631b265ea6b7046 7baacd9e63c7b6c9247ed4ae3dd0e5bc 7bab7f3cdbb0cf76c2122308f5c43abc 7bace45e0b7d8b7baad0a8d65ac3bb72 7bae76821b9a7596db3b6a3b05095e62 +7baf73dd5c0d981015b717a270fc1cd0 7bafd06a74b4ad7ad2cbb6af25078cc1 7bafd06d0683260752ecdeb94670bcea 7bb045d509491fea428e61711944cb5e @@ -27995,6 +31281,7 @@ 7bb60272f4524f9648ff4333352d1a3a 7bb74e8a31fc42f2ced83f0a5fe1b87a 7bb7b320d0d44a6648ab0dff34df6469 +7bb7ed26306844cf7c71faf4b6a08e70 7bb85511d657005c7568353ba9538f56 7bb9831a4363fe3f86ee54b070857038 7bba27097dbe3338a630085a00ea839e @@ -28027,6 +31314,7 @@ 7bd1e9e4495ba4a4c19d3243614513f6 7bd21b193bf2efa103aef06120ebabf2 7bd2a7c61b3d948f2a0331aa35b6dff6 +7bd3747821cdc489dbcb49ecf1d79422 7bd39abebbc4f5a676dcf0f73838a64b 7bd411791f4ca18eccc24dc32b1d4578 7bd482b0232298dbb03b85f2b9becc8d @@ -28058,11 +31346,13 @@ 7beda83cd9f60c29309413de97febf2c 7bedf8e57470243462296fcebd40944d 7bf0151cdd7cab73fa668de92ec9e9c5 +7bf12cea49c63e19019bdcdb0961a5d6 7bf1d413f644852b88394ed014a55e1c 7bf491f9e1c779cd94f0e329b784047b 7bf5de8ae57f7e158b17cf8eb24b47ea 7bf8057233bf066d60f6c2967fb9159e 7bf9544ef8edf2e4f3802f100aad81e7 +7bf99bff1b2c11319a7c3d6729f47fd5 7bfa4fcb9600173768b0558e0fa37825 7bfbcf04dc85e89e0389dad7b9b13094 7bfe072992413425f3bffe156cf3423e @@ -28076,18 +31366,22 @@ 7c036e3cc6952abb92b51e71f2584d47 7c04114b0f245c8068a26b938035214d 7c04e0f26314183e3797cd340ec00fea +7c0561e967ae988d9fefcee3b40dd1c7 7c05b3869ba8f9e990ae3ea4ccfb7ef8 7c060d9671b362ee1ebe3af3918f24f3 7c06b15ec83048e9c75959461c70eced 7c06c61c6de78af7be148edfd5943e83 +7c08cc290ec81df8dae02bca573bd98f 7c0972c5bea361b16db8f60e6e3330f1 7c0a025f5c1f2407a9cfd7796b4ea07a 7c0c63d1f3147ad29ac5384f54acd4ab 7c0c84f0a78b11c35a29ec24a5b8e877 7c0ced6a19da6720b32ec5bbb3753ea8 +7c0d112177432cc363eb2691135d80d5 7c0dfc5cb499c165d38d88117bfe4d2b 7c0e97093c459948dcceb2a9bfa14fed 7c0eae7363218b411c35c1fc05e4c893 +7c0eb2f624ef487bf97109d8f2537ccc 7c0fb8673eeb3af431ef8b6c0d2de686 7c117e7f592496e55accdc82ba5bba4e 7c12dc8d3378ce11f29e2e4dba454218 @@ -28111,15 +31405,19 @@ 7c1f465cd71296d72ddb6379922dfb64 7c2004ecac7364540b93297722915718 7c22a8df35c1f990c9624375ce777657 +7c23f39971ae8cdf39bdcf4ddc637e6d 7c24acb5e3baba618abfbdde9600c566 7c26050a6f24560d21b476208ad203e9 7c261ea97fa4cfa230ca835d1e8eeb8d 7c264a78d37cc881c4ef8444a5fa55b0 7c275ba67b5da741b5174736e3f0c812 7c2779f4a34a158bbb4f6a1bb21fd032 +7c27894263890fae139cab4d2c1cbe53 7c27de2b68f6398350c7d527b9c27735 +7c2945e0c6860ee941c4e25428b56fb7 7c297b6a7df6239590f9ee5f8a71d643 7c2c3d69010499ab56b2af4564737440 +7c2c8eb86c95227156b1025d0ef60f34 7c2d77114b66a15b9dcf7f74411ab2e5 7c2de1840b831c202299a43b89dd69d8 7c2e93aab1f292b0ba2c8383393ca2ec @@ -28147,10 +31445,13 @@ 7c429060dd03337ea204395a661a35e7 7c434614c093b5616542d02b38a24a1f 7c4550174044ee51063c779668e4ff7a +7c45987d97f99d3633b24e9f59f35d80 +7c46798455e6b98ba6f0cec2d98d1eb2 7c485d2b5ba5db2e2b9d8af4b0910d15 7c487ea71379518516c5a6e0aaf693e3 7c4886f129e5bc16c064f62ac4b9f839 7c48bf07ed473d2cc72e1c26854f97b8 +7c48f4f8978ec673bea842b1a3c56558 7c4f47de1b74ee580ac11d3573bb0a7d 7c4fad76b8919f008d6d2958e902781f 7c500be85309ad3d7bf7033d7409d003 @@ -28169,6 +31470,7 @@ 7c62f947f7fed4e6d4a78d26fab68b8a 7c642c8932205835e4944ba86861e0ff 7c6432951d9287ffaa6cb0be0a896cb7 +7c656ba8b7f30d0d9535672783eb1398 7c662c0887ef4a241004c5c5cd5fecaf 7c682a1cfd5f68e33d50a68201b9fbfc 7c683ef25406fe3694cde0167e22c076 @@ -28192,6 +31494,7 @@ 7c7712af68236a7b484b2f41c4623f71 7c77fc49ca66d1e0fa032b9ead453c1e 7c78890671dd4da0991df72559b12e7f +7c7a4299617ee52f7dd2a018532fcba2 7c7b38b7f361ef51683a941e3ac74d2d 7c7c3c60f3c1897bc794b203e6c07935 7c7cd679a4489a3d01f4f64152dcaffd @@ -28224,15 +31527,18 @@ 7c954040c972085262e74d7329f90de7 7c95e1c4ecbb919f241ad3570fa68c18 7c96170b5faa35eef103bff95326270a +7c9780004a6205db2cc1fb1a773966e4 7c9a697ab478757f927d8eeaf8f25a4d 7c9cb39f3faf22441b8d44c8dbf8193a 7ca06f05713165d281f57445c6a35896 +7ca0f71e996e33fc258cb4e75ca6b5c0 7ca10446462c124e01e57b2679f1fdb8 7ca2c00d52d7dc9473d7713047fd4598 7ca496c4a3bc4f12e5470628cadac3cd 7ca68ba4048fc05fd1e9e031a2c54c54 7ca6b0af93757a202cf7a2d00dc8569f 7ca7f5abc28e00f2c1c3f7ecde4b85cf +7ca8e365729dbc1a26751e3e738927a1 7ca929c64c3bba0a7e75a019a151056a 7cab085bace31474a39a2050a4e74309 7cabfe9028a3c22ba123d0e785ee66f9 @@ -28260,9 +31566,11 @@ 7cc36ad1a259b0dc376d2eaa1d4f37a9 7cc5c0f4d0e3099145f60e4909a8ed42 7cc63070822208b7b9e1899244aa2736 +7cc645a5e6fc60ced107876f64e5ddff 7cc6df86adf835a0a4c3f313363e59f5 7cc6e45c91c27141c61ce99fb9a78327 7cc7a336329294b663c58518e8684ab4 +7cc7ffae1ffa9bd317d3d5ca218f38eb 7cc880b9f245efcc3cd6825c189d4560 7cc904d7dba52b02251ea35404e422bf 7cca11cc7ae6fa77b3c34c80a393307f @@ -28272,6 +31580,7 @@ 7cd0e32e9de5e82b72d165f57111e41f 7cd42668019915bf8bce361314bcc4b8 7cd45f83296be90371b68a25be8d11e4 +7cd5efd00260dcb2b4d1197993d43b07 7cd5fa32fb9d9db83b9070df9b53cf66 7cd643c3967a3a7e98df49e35a5cba12 7cd70903020f35146613843d289af376 @@ -28282,21 +31591,25 @@ 7cda93d3461f4b08d45f7a8b81d5e9c7 7cdb12d87a4c237284f8a8fb58b7a0cb 7cdb9e8cec2c3421e46462957fa64142 +7cddb807f65b7e96e492950ecd4cea10 7cdf210427bad6e5e23331005fea49f0 7ce069d751f259b2d965b148f11f253f 7ce0f3125e078a16b97e8fbbc954bb2c +7ce10986f1ea3fe2005c638e36290c46 7ce25770cf735f7df22447f021765bbe 7ce27fd803cb9d552f74d939777782f2 7ce2916aca2b2ca3f7d8ddae7f196072 7ce29ba3cf587f07bee4a24a05e21f6a 7ce35ed02846eccce84427996ea78a9d 7ce60e7c52ecbe34fd64317ff106813c +7ce610bb878f87f48a041b665817d7b8 7ce6471e93032adfda3645fceec2a3a5 7ce6518c97e1fe7446bbebca9cab2798 7ce6e58cd8f464d8a9e1eeed208c68ab 7ce79ac68d821097c585598d55545826 7ce8dcf826f5226505119a99cbe40616 7ce99d1a2655d91215b6e610303fbe12 +7ce9ddce31a02edfe204ef04dd2a5089 7cea22d990c99db98ab3557e55d15a96 7cea304541f21678df76a9f17cccfc0c 7cec408cdc58ff9ea36d731074fe7603 @@ -28304,13 +31617,18 @@ 7cf0fc5679d337c87efde6beb4674c37 7cf2cfa8db6470a8d8549a7b5be8f179 7cf332718da28b4114e84616199044c5 +7cf40bbb4b5f44be9dce70ca3f13be6e +7cf55ea7a3c57b25d8a4a89ede2a3645 7cf58eb4b46cfd6ab02aa1af9c62d7ea +7cf5a0437e83582a679c7cb38a5ad0f5 7cf6b058285bce677d23a765626657fe +7cf77c91712ddfc5e7d9d2ddd312f7b7 7cf7cdc7d475b804dd4d9ec3e6725323 7cf81c42a019a4a47e472569e4b2af21 7cf8a7d3b55e1814ccbe24caa9b8bb29 7cfb49870d7cbba68a27a8641d1c899b 7cfb4af7fd2db80f2b53ba2b6f8ffe01 +7cfdf745eac122831d371a3c84640538 7cfe7987386bf11298c60c2c99e53f0a 7cfeed2cb2775b9bed1a5568eed0b118 7cff6f9d2e0a9ab87872d3192dd8c804 @@ -28350,6 +31668,7 @@ 7d1b4e572e788aea62a8ea555c168847 7d1c0846e48d75ce3977c600f088a7c3 7d1c18e0fbdf0710c7e748aab7f7bcaf +7d1cf55aa2f13f9bc61676d5b7a8eb75 7d1d22cdb2bb4323f2b5d9c462147d03 7d1f2bd339acc624f66b3b07527ad481 7d1f3dc9df2def5a58dc5a29fbe45a3c @@ -28364,6 +31683,7 @@ 7d2ce3dfd79478a3e655f96f34109be5 7d2ee3f82cb1245b17656943d62a91e2 7d3149c2ef7963b2c4dcd41e380fe8a0 +7d31a79aa9d0a7238da155476a9d16bd 7d31e412094d5346221198fb6c0f8d52 7d32097ab162d644f6adf2caaa9ae1bc 7d33b8f388e909b7621aff8f5102c79f @@ -28386,6 +31706,7 @@ 7d463f435408c4be4b14f842beb8ed76 7d46a579dc564565cf031f3d792be1dd 7d475835844d9c196f778cb2a99d51fd +7d47ea089e1625ccae328296b60ea81f 7d48a7ec29dcc907eac40fbe7a88d85c 7d48ebee480912b9a96aecc250da11a8 7d4922c272faebb154a5b70251c6793d @@ -28403,6 +31724,7 @@ 7d51cd1c6eb9ae43966e9826d535310f 7d51f41c5a9d703267b7e4ec79861f2c 7d5423e667de849c6dbc512715c01cec +7d54464f99a3eed899ad3f4dd0fa382c 7d54f8dc212e121350720e82e9b0eb81 7d55d31dd71bcf0bfe0eb8bd65990981 7d56f357556f23c561fa0cdcf0e8e6e3 @@ -28424,12 +31746,15 @@ 7d648b4317b58dfc273ee69c6627677f 7d6669f9d9a859cb2641ff9d44ea3e96 7d6702711567e0c3755204bcaf0c3830 +7d69117f04da1250b24868f09bcc2bf8 +7d69898c1c2bd0547acfce430f7dc91b 7d6a8ad9f8bd703bc0e478b2803deeba 7d6b150e85032c507ba8acb063a865b1 7d6bf54ce106e7fd6737606210da25f6 7d6c84df2e402ba79832234d42cbfcab 7d6cd6b8f2a1a5ef128d2f90ac2abfab 7d6d9cdd6749134112b785ec1e86279a +7d6eb27b93e932bf46c2f6f478b7ad3c 7d6f32e195b1015951c57b84733b2230 7d6fa3fc3bf6b65992fb58f69475b7f7 7d70633ef0cfc8cbfbb6ac4b2e924796 @@ -28453,7 +31778,9 @@ 7d8516388bbcf6c843e0a9ec7a21a787 7d8621a17b3958ea744122ad5e28ce44 7d863d972f9e5b3f09f3ddad4dba8a11 +7d891ceb8ed02014f7750a5033c90431 7d89494402442054b5b805d4af80404d +7d89e801cf7c362b7da5020e6c62f16d 7d8aa47326c963be8fd592a65e5b26ce 7d8acd079b6578e89e051eafe016f7a8 7d8b133d1b7b1b8eaaa7f2cc0132fdc9 @@ -28482,10 +31809,13 @@ 7d9e18d15a902ee207ac72bc1487cb05 7d9f1d858e07414447b68acb966606ed 7d9fb20846597b261c56feaa5c8a87af +7da45ef662cb356207261a4ffc227081 7da4f2a2d87efe1e9dad8c3a60d5af8c 7da68c7874670717ac72e71d139209e2 7da786c3809c8e8bb93f5eef1ab5e926 7da7da1b05bf5e9045c62823f764f392 +7da842a6fc541dc48027b30ac686c228 +7da8aaf0892ade551a24fe4135a779cf 7da9b5a515cf03b88cd36b23b4e499ca 7dab65e5fb8a2afc2b6a538ee8fbead8 7dacc48bb30403d98f3a56f0848a04d3 @@ -28518,6 +31848,8 @@ 7dc1d442105839a87202877702db7bc3 7dc29d849aa4b38a98cd15d4691d6457 7dc31b277c1e86814d17e0b613b30def +7dc55a89b076a7343ab2cee920948fb9 +7dc69d68249d5edac1fe6da121758187 7dc6a2b4b7425a97947ac6491a4a5f6a 7dca15622f93a6ae5df32e87dab546c4 7dcbd89cd4413e4619f7969536acc025 @@ -28528,6 +31860,7 @@ 7dd0b30e4a9e6ef27312c5778ef42383 7dd177f363113bff54be0aa88054e1f7 7dd1bec365e1adeea7ab29cf190f74ee +7dd4176a56627731e986c8ff92d74cc4 7dd505f8d009b604cc251f29b05942a3 7dd5bd725d7c33445a142874f690f3b2 7dd74a6f16a8bb252fa37f5c85de6e02 @@ -28536,6 +31869,7 @@ 7dd985d08da4d86c8bc7e05e0148c665 7dd9f8398b13c73deb1d2df260cb6755 7dda2c0388b80b450ea93b1926407c1a +7dda3c1d09a21589d6564db45996db1b 7ddab776498c33abf98dfa069499674c 7ddb0bb6187e0e3ceadeef1b51191cbe 7ddb6306488d9bbc6c3f7bb8f4e48668 @@ -28548,7 +31882,9 @@ 7ddd00725d2934615a81a0c1db5932f6 7ddd8ed803905d958d2bcc6c4533a6d5 7dddf4c2299dfe0cd3b0a048abbd26fa +7ddeb70b31261daa947eed890be96f8b 7ddeb951789296cf118875c137961448 +7ddf9c75de11b4758d70e12b2f9bdc1d 7de1f8f71cda51550798a4410e4a16f8 7de208067d522cd94ff70ea7bed36691 7de419fdb5788d46df45ff679979e1eb @@ -28562,6 +31898,7 @@ 7de7d9bea68b8cb3b881dd555460a59f 7de7f2d1e482e4c36b984729e87f973b 7de846887c3c70951d03332f8c374be3 +7de84a8be1a8f313435d9094eeffbc08 7de8d65c2cdfb5d7dbd90f9d6e65a96a 7de98d411044c1865c8097c44d311898 7dea0c0d79955cca0196421045013923 @@ -28577,9 +31914,11 @@ 7df116299e45c242ccb4db6689a9b54c 7df1354c7dd3a52a649686aad6c93927 7df172a254ace73c57bf9bd2d5881214 +7df347f7cbcb790a88d46436a256ff70 7df3ebffb72daddaa2011675eb60df23 7df4c434bba020b1914f120b7e9fca20 7df5de076acbd57eb34245f12847695e +7df62d9e68a4547b687517997e78c0aa 7df64878ff70a2a0f434d2b6c64b3eb1 7df67f582374218a5d86e90686afe41f 7df8445189cb8e6833140cc492154d47 @@ -28594,6 +31933,7 @@ 7e029c6a7b2d37afb11d8044a832955b 7e02f413e97669fb7e347aa14a60667b 7e035ed5d5529d4bbdbca268f1b8450b +7e050c2b41cb5a89728327d634a600a1 7e057eda77be78fb84f3415deaddd797 7e0634436fa59929e08889b028ec415f 7e066c263bd9654784f3dab76a02d26b @@ -28624,15 +31964,20 @@ 7e1c53ce23cd9f32d269300968f16515 7e1ca8eca3d90342e91d0a5ef40cb50b 7e1d7e5c05f293fbbcbc8a3fd320b732 +7e1e9a61ffb33279244a5dacfc1f8eda 7e209b87063973b5b0c8c635bcf055f8 7e215c8bcf59343732803d25c16a928c 7e263e706c1d5e14ef8f11f78ee34a02 7e270232c1c5e3cf11d9899d0d61df57 +7e2745e565dfeddb756fb4485c1a5ca6 7e27e38b72cc31a32dba8089865ff4e6 7e293f18449886a0d35a7fbfd41d2e9b 7e297dfdab2247c50d4c8669319ce18f 7e299d6c8c0952c846684195ad27662c +7e2abf5af5eeda997ac25306479a72b9 7e2af4d07270c954f10bdd6228215e38 +7e2c5ab27b13c833bc8fdb1b6c49428c +7e2f456899d4de9dbd074daaa5cd1905 7e2f52a2872573fdb56a8c80441e24de 7e2f69c4ff2235692e6e5fe9cf08dba4 7e30a4226f50fff94d46493f9badc7a5 @@ -28641,9 +31986,12 @@ 7e324f5acd07527c0fde3d503347bf07 7e3527bc6171fb9e7d7b94433406f34a 7e36506d18d563659904a123857fa285 +7e3679977bb031b10d4ab69e74236183 7e36a094e7f0bee3757ebf262ce09b8e +7e378ee09f1951d43560fa044af13d85 7e395e5c4770030a890f06c5a2d644c4 7e3a3260daa1be5445452ca6c1d67a06 +7e3b254b847eba6e25debff95d584dd1 7e3c90085c795352597945b88366e2a8 7e3fd3e257ec8d9510163b7b3ab37aac 7e403de505e7b523804addcd869f9fba @@ -28659,6 +32007,7 @@ 7e4c5c5e9c5bb442b48079b36c141921 7e4c76b54145ca17eec7b345ac072140 7e4e1855a3eb7d8c6cfe24bf4fe7b51f +7e4f6a83cfd1a19a16c938f4fb070f0f 7e5008af79901eb1441ee564c7f42230 7e511345dd2cdd7737089f4bf7bcbcb0 7e5119c004ea79acf99a7bd3fe36ef23 @@ -28673,6 +32022,7 @@ 7e5663986d8380eb4d2842b5821ca645 7e57a2c83c76aac808eb9ca926fc9e46 7e58e970e02b63cc2f8149224377995b +7e59089d50d7e3cc9e37d36282f93e75 7e59598f053544af806c495415d0f25f 7e5984f8662299731197dadf924eafab 7e59d2471ff1149dc66fce111ee696b2 @@ -28700,9 +32050,11 @@ 7e713862c587a85cb7eb472070f3e7b2 7e72f089f89705f425ae5c153a9f276e 7e72fd328d79c8415ce5c6615aa72dbb +7e741b0877f04bbb431540cd765f861f 7e741d1115e4194fb18d793dc9391b65 7e74c34e28e020e8f5a12e30512f16b6 7e76e47ded44958469d61a0a1c820c95 +7e7748e27f7365f7dc15680fbaa9fc56 7e79803f29f3323d506d23c2abe2c95d 7e7a5281a82e699337991c4e3dfaeb84 7e7d25932c21ba85c1b4bf80c7b942f6 @@ -28718,10 +32070,12 @@ 7e882a1643aac48068224f2de0ba1ec1 7e88797d67fbe4d196203e6893f8ccc9 7e89905781d6a9f043513ae6fde23c51 +7e8a543c6d4c15f6f56a3b687a1c786b 7e8c406a65a5833895e486cea920266e 7e8dcd0c445eae474e6f40a1fcfe0683 7e8e40ea512bba24c50ca00efdab9cc9 7e8e525548eeb57cbad9e61def94f622 +7e8f7f5fedf4e90e67658ad0b88f3864 7e90ef609b41eccee765905339807be4 7e926b291522487074d0f32197cb9a4f 7e928236febe9f2f8af192c042d941df @@ -28738,6 +32092,7 @@ 7e98a1d4d7dc18c49b553afee2e9b8ff 7e98ee02383e04dc686f30de93afbd46 7e99c8bc63c5bf2a2f3cfbe03d4d5c69 +7e99d79119362309e7c28dcb29f95ed6 7e9a3609fe8a68c88286a625af81a942 7e9a6bdb8bc149d5a616a340bc5ca0d7 7e9a7dd29e11257ae1b2c0601c14e479 @@ -28747,6 +32102,7 @@ 7e9dcd2e118a6533690f2c85192c1956 7e9fbc33831bb9dffe38d2533674bd44 7ea0a35467b94e4ae7ef1c72df880513 +7ea2cda1eb8df8c60d0685839c7a7238 7ea47f928dcefa21348c25e7e53dcee7 7ea58e0a8a9ffded9f864a3ad6c46abb 7ea74768e8d487f678b012d297bbe07b @@ -28770,9 +32126,13 @@ 7eb58ab48c78b204dcec1ddaeed86543 7eb65564cbb403363032cd91753ec78a 7eb7166e568408f75d4ebd999881ecbb +7eb897c25f68b1a6f90aa2150f7f31f6 +7eb8c7a02ea46469779dc88a09c55ad2 +7ebb8ef432f46cd46ae46e73ac3880a1 7ebba146a5da471a0e41ddf0cea7e034 7ebbcd23e4c169394d64d6f868f86836 7ebc339b6a39293471e4b9bd10e87c62 +7ebcd7891bac3939720b13cece5aa751 7ec04474140affe4f8d9b957b92ed25f 7ec0630d1acc231665813c24be93f682 7ec07e5e47a8b524ec939103e2f8d1b1 @@ -28780,6 +32140,7 @@ 7ec23e2337cbeb697ff023ff299170fb 7ec2e9abd9c3c54fbc3fb16d29125ddb 7ec3a23fc6099e84e5adb0b0521c14da +7ec5671674df1cbd128eabe4c0301786 7ec61b4e98da0531914ba09104ae9ee9 7ec8c4413c8ded4ba6549dfba60c5ee6 7ec97036b59fd20f7a25ad5cb432cfd1 @@ -28793,6 +32154,7 @@ 7ecd641c288c539ff5e585699db5cb94 7ecda0160cb59af3f9c7ad4c2b1b0853 7ececf263d624454d077f345cf8667f0 +7ecf15ac49a0cf67b26eb268c83f93a1 7ecf740ae7e653b368aec4af0ffe6bfe 7ed06acbfd5018d1b53159ac69244b42 7ed2c4059ac582804b0a1587ac6f2c06 @@ -28809,6 +32171,7 @@ 7edc462ac1cc484dd4eb9464aa89eb4f 7ede16faa0ec228c4dd2cd4f7a91a534 7edf474202e25d9b112a6b96951da316 +7ee082e94ac4e273ca049be50c967613 7ee1bc37b3ee673cffd539f7afc3f8c8 7ee3a70b1bfb698511261387a6390907 7ee40d33732992a86e352874d74fae6f @@ -28823,6 +32186,7 @@ 7eed6e5676d94f3036b8e95958857fc6 7eee62f49b725bceb2f398b0b70ffa33 7ef06f46918b59b51f1918aae701a159 +7ef0dd59db94201c2e015bd68aaef7eb 7ef22df04a46c368591044abed30dc84 7ef2eead9669efb6360552398388b4ce 7ef5841eb5301152c12226118ede1406 @@ -28839,9 +32203,11 @@ 7f02745e23cab68d541999a3569799b9 7f02e2899b3c91b7f8c7e79b0c732fbb 7f036b9339556eff73d6d107de2ecb24 +7f03d732c825c1a9598c15c6795b8d9b 7f0448e52822992594828759cbedb60a 7f05e5602b4429c6074f73b42e4853df 7f0710612aa339547dd6354f750d5226 +7f08dac49d528b0f387ff685e7119ef7 7f092bb782e336d2c68efa46d2804945 7f09f4e093868971632310b904dce074 7f0b5b0ef9427aba94e0cf352967c779 @@ -28863,8 +32229,10 @@ 7f211e173f10bd3a017352864f4c6080 7f2275ce4e52ec9aede171488a4cf32f 7f23b1ccbb4c84588eb439c3599dbbe2 +7f243be2553371b36e9015cecf49fadd 7f2471347222b46a2d7696175ccc0bc3 7f254530791ceb326854d76ac8c49c1e +7f28114288696be46cfafb4e8d9630ea 7f28b1b162157fe95bc0cf3a97641e62 7f2aa694a9bc451655e9097526463281 7f2ab04055efb12bf9e74d38e3d169b9 @@ -28878,6 +32246,7 @@ 7f364aa7a3d5b8967b377d4fc6a348c9 7f36e5d3ac2a40d614752715ed02dc23 7f372ddff28b7d71200607fa68dfef59 +7f37e5b98d6efdb32efc77318799b20d 7f382c3f5546c41af0238e67b4b83575 7f393658816a60f523549585d7652c91 7f39aa28a7ea19abdf5ef37b7eb35bec @@ -28901,19 +32270,23 @@ 7f4980ce389b119714d5f950b9ca4ef9 7f4bd6994308225799bc200d3f2baf37 7f4bd76498bf16b80849760d4076e483 +7f4d8af54b9da511eccb5749eb56474c 7f4e487d4b9aa9a1719c9143769e775e 7f4e8b760e5929cb0d277115160d07c3 7f52e2680bbaff762b6345ec28b52196 7f52fb8f96b78df53b01009ca27e7a4a 7f53743d4c7bb1d64ca70ed344bd2603 +7f546a86ed613fc7729f5cb3db21784c 7f547db4be505c939899cb9442ef6ea1 7f5523ce9fbb0e2ea819bd46d58d6ea5 7f55f752b540af29119e9e947d84dba2 7f5627c8c31609a3cb00af34f2df8c29 +7f573f1fe25173798304f4996d9b22dd 7f58855b59ce48464c7ffd1eeebcedca 7f5a034e1cb0ee910f62e7ca0ac153df 7f5a857341cc8eaa2a9e6ec4d6f03dfb 7f5bdb3d3f923be256f39e78760c08af +7f5d68437136aff5faa52e50326f1ac0 7f5e23d6b423286d5c2e5036d903569d 7f5e460467ae3b000770357ba3ca3813 7f5e48107e91613a352f561a0a03849d @@ -28938,6 +32311,8 @@ 7f76fa40c15319a57166676985a84531 7f78b7608a63fa3bb824bd318c5b288b 7f794c8e185011418924a0753e60e42b +7f7a40648b16d50d391d399466d0cf2c +7f7a4fb39278e098d22ee8a3b340c889 7f7ad84aa903b91bbbe7bc70821f9035 7f7b6bb7cf38344704855f1d71cb751c 7f7bb5c2cc5e2cad313d19be3acf56d3 @@ -28949,6 +32324,7 @@ 7f7f47ea78abacd3b54a7d9477bcdf42 7f7f88fdcd9c4b7ace723df9caed35e5 7f81f53282ee5939f4e90d4ae6898bdd +7f83593460fadfbe756650a406f180b5 7f8362e97f76751c6f22447039f9261a 7f83dd79375b017c760b34362d71e5fd 7f84f74ba24fe7461bc2e1d4fe5d1bd1 @@ -28963,6 +32339,7 @@ 7f8d7877f9d34c4b446a0b76989f6d7d 7f8eafc748f99eeab5b19b9b347ca9dd 7f8ec7012d84f997ae4cdff6136f012d +7f901ccee243897aeffe2f2115ce72a5 7f90ebd9342bac5d785085ef19dbcf49 7f915fa9d41a8eb089fa38c70a9ff141 7f921676930653929cd074a0e1fe489d @@ -28991,12 +32368,15 @@ 7fad185d2517a99b1d7e7837d8913826 7faec14b3829b80326a52ad92e50cb94 7faef7dcbc425722e0f121f819d9953f +7faf0de179038859ed94f44b16298337 7fafb6e5ee66069ce4f817f04e48dde3 7fafd1a9ecd781fb9b927bfbae805b63 7fb194616d7463e6cd2bfe918d99370e 7fb3241dc87157df3a313394c4ccb2a4 7fb3ddda51df501540fca7ac22ba4181 +7fb42939bd13656f3e5d3d303bc5456d 7fb4367461fd7459a0eeeeab25210111 +7fb5c2335fd831efb49e3d93adcce404 7fb646f8aab8e99e447a2852451bc579 7fb72e3ca1d740ac80cdd3463aacaebb 7fb7c13d090b897159c06700987f1620 @@ -29029,6 +32409,7 @@ 7fd3d64e4f6bcba312b7d617fa845e3b 7fd427e289a74878d355b4a85ab6b5c6 7fd5f00c883408bdf3a0fc9ec9e688ad +7fd652133a00e4b11f1ae20bcaf03f14 7fd72ba23910cd9790dbdfd7bf36d862 7fd779e9b060bc25a2da88bc57d464eb 7fd8df9ed9a635b65b0a4b148f0b1703 @@ -29043,6 +32424,7 @@ 7fddd775eedeefc9fccd444dc813ae6e 7fde123967cf7e708bd2cb2a4e5cbbb7 7fde29dadc7dc27b177149d199efba6a +7fde5995fdbf49915ed8966b59544cdd 7fded1e73df7a7e8f21c7a70ac1043e5 7fdfc28eea63fb58b8dc481b2a109288 7fe09d100e1d9933c82f78a33763338b @@ -29052,9 +32434,12 @@ 7fe54ab997e9216bb3b1f2fcf6173056 7fe562b676ff133e9c7fe179a825bab4 7fe5e1d80f481db506bcb9c94d0ff1fe +7fe5f87604413e014c43da8906b79546 7fe79b7b43ff64c9d68564efe4efc288 7fea19a2557ed753a90929999c2997ec +7fec2dea9de49f8c493e63067594e63b 7fec93f76087d8084f0ad7901d775f78 +7fecf5acee06cbe9e833be889a0a1cc3 7fedd1806ebe1364957ece815a1ec0a4 7fee6f349ed92583f52ec0cd75575e26 7fefd432334cd74f2b54146ccbfc3012 @@ -29064,7 +32449,10 @@ 7ff8b19e11a713cc67e28bc8db5f148d 7ffb376290cc2fadad89a98d2cfde256 7ffd611a62b54fadb3dae952fa81bb59 +7ffd742beb452a65507a0d6571cb4638 7ffe4481a4ad1a27fdd5a8f801d4efe7 +7ffeff57b6ebcf8d2c731f3b7d759407 +80001e83b76a027e3f46280937e3820d 8001124227c6af8e0200c9e61aedca90 8002d3e081c44116f345a0cb415fbdf8 8004cbff78666b12090efda2ea5b05ac @@ -29074,6 +32462,7 @@ 80081e99722f26e6e0e33c04bfc92262 800933a191b67f1859016ff2af376fdb 80095ba0f6a1dd0f4227060965a39153 +8009f3161e2a1b0f94eea557fcf66fcb 800a33bc8211633e3d3e211135e6a5c1 800adec578704f7765fe70689273d16e 800c810daddf420c6a44da46742db02c @@ -29087,13 +32476,16 @@ 8015f00d13087b42c97d8501c216fbfd 8016a7085d16b547db1b1526f97f907a 801716a4dea2ed1b10d5877c717fa898 +80171e9e772ee5a7f7ec9e4fe183ecd9 801887f7c94da94cd497e5504a61c5c9 +8018c2475a59b7cb31d8db9ed97f6540 801c0acfd2730ed967f6218b5f21c8f2 801e758608bdc95206156fb1b9f998a6 801fb7ee8d4f3f8ed37544d8438fde55 801fcc517f0323c915b7cd0e0c474675 80204c43e48e3634e7d25c4bc1c96208 802063f291d8fcd78a1218588ac2026f +8021a9d8eb25b0a2248db6a31b5a8959 80220c2dd88ae3237c984ec1a26ae3fa 80260467f4f593b0d30693d1d8a80fb0 80262e78750d20341279525ed06741ca @@ -29140,6 +32532,7 @@ 804dfa9c5a9af483f00622438612fb0c 804fddd0bd8e1a82548a52d67e3e310d 80518c73fa54eb1288c5dc540ee7fd6b +805423e64eb5ab19cf5c0e98ec162765 80560da5eb084b79a1a326b46be3013b 8057c6a210db187afd254bbe35879438 8057f0dd1a66a43df1199477c5521fb1 @@ -29149,17 +32542,20 @@ 805ab3c0db4036df51ea7e8017f93d59 805cd1fa1e874e070bb73e6613e49c79 805ea751e7c29d6222a90171e0455ac8 +805f444dcd95d3d4ab1272a8bbefc0e2 805f6a49f2d2b0219282a7d7a8ee3655 805f7d04c98dd1075356db99d8f7d430 8060d5f119453840a11b1be2806fc86e 8061a1df47839e059e4a581ed747d779 8061d2824b0650d7a32dedb06a23b302 806332b347a672b9e22e024b92354acb +806392663e50e1c9ebfdc1be8b5e6a22 806436a4b2126229c389c47b8fe3b191 8064b33dd15995c3521e5fd53b719c78 8065796d242c92a8e027419a3392a027 80666d2399d61dc9e462f1188af760a6 80667159b217465675a86fadd420e8bb +8066b5d6e21e1c934de87392558a319d 80672e069a756f3022540372e5ec01e0 8067da87e7e8bccd6038a23e8a387a93 80687c9defd73daf842747e215126da8 @@ -29168,6 +32564,7 @@ 806a302fb17b445193103e5c061e429b 806dd637ea1bb04ac603d8501ecddc8e 806ebc06fa9439342007ad05d27cd77c +806fbe992732e43697f78af79c92df35 80700d8a31b7b445ba0d5b912e4faffa 8070196f6b7a0ec7e3f1b144769cb3e4 80706506c99fb6f35bac702f4fafd647 @@ -29178,11 +32575,13 @@ 8071bb894fb5b27340793607deadb38f 807268c6ed79f1c9f9d51b12a4920397 8073e1f6b24682959d1f2765420e71c7 +807522608ffae21abc699da252fbfbc0 80752b6ca88ce119608b24e57c3251c7 8076a0e0b45f14c834ce1edf48bef455 80776f78fb791c4d23946a2ff446e163 807858d6052f27143ad94dd4e23b7b03 8078c0ccccfa68904634da86e688b526 +807ba0ee97aab1687d2f82fbfcd192e3 807c40cf8aff9afe4011f9f7c2fc4335 807c477fa0f4a350d52d91a90a3764dc 807c92cff297ae3254d38f9de3048393 @@ -29208,7 +32607,9 @@ 808bc9b9aa5c539e483b53a1c7bb02f1 808be26c0a5efb1ad27cfe0eab743981 808c7854a38e49a78aeefa0205f6a012 +808d6f96422a9e38cb156c09fc36fd33 808e2ba8dfff961d0c435e36eb2c52c1 +8091020e6fea5bd0efa6b93a9764b441 8091b4de096042155fea37c6a93e8e92 8091fe8e65d8c6f946fde4438895d8a6 80944e267b46ecd88f40bf0a13d49f49 @@ -29225,7 +32626,9 @@ 809dffa3f4cbdc52f37cddb0ce9ac15e 809e26a41270f8c9b7f7b0602619bb6f 809f21a913774f48bad8f4ddf613c3c8 +809f7b0dcbe95d518bba2ec340a36bf2 80a0026402c8a001839f4f419b927c3d +80a137850dc54e18d5e13a777102b1c1 80a17e54721826002907f6d645899684 80a3d5441e9d6d2f878716082412a7b6 80a52f51fde8d17acf0781ab2b623108 @@ -29253,6 +32656,7 @@ 80b86b2438d41327435761a559a979af 80b916d5b1a9d2156e8dedf6e77ac77b 80b93a295bcb044e4b9c0671c309933f +80b96cb489be97755efecdf2a7f4bc1d 80b9e7eda0ac67eb5618520fb2d14d8c 80be88445069c1db1091d5be944a6fb0 80bef68cf14296cf02fe380dfc823d01 @@ -29266,6 +32670,7 @@ 80ca083b96b41ed5219e552239be1158 80ca3694a9cd1260245bbae93d8d22fb 80ca9ff6acc5779a5c9992cf00a49922 +80cd2b5e3fd587c1b2833582cc30e623 80d35979301e9e3014d57c99796fa481 80d4b76ecf92d3525e8497a5e28cd524 80d5b76a3848d8665d9e333016834c76 @@ -29275,6 +32680,7 @@ 80dd919128c7f6fe00009f0a4b1fed0d 80dda07d78c54c52e9766b83ebaa5036 80e071040b122f6a28016ee67bb2f088 +80e47a10c96ec67f422fa9b28b451be3 80e4cbde28611ff4696222b0fb7b198b 80e62c35a0a16de5adb4a54b57dbc84f 80e6375d85c678bbcbae72bf1f2a5a4b @@ -29288,6 +32694,7 @@ 80eba0ad3cafa219344b9e60d11d7335 80ebeb440addfe5ecfcb69951e577abe 80ecee6f8d1cc5808ab37dbcedfc3b82 +80edf21d98eb6a5bcedaa4e0ff6b8d9d 80ee11fc8f4201a5f985d7f007131b38 80efc83d2e73ddf6a59d12f12604a6df 80f487368634ca358ae180230e2655b2 @@ -29296,16 +32703,20 @@ 80f7b5a4f34bfec121cef5972775ab8f 80f7db73a2142d3ce3928b0c3efedd6d 80f82e58200ecc0021733a0e2b437389 +80f89ceab00e7a258c052517fdfc0f75 80f8c0f70c00570b9412189438dc9a30 80fa242542da2426ede716f2344326c5 +80fc433372c62560a600c5424497afa5 80fd282011e1f1f27bb9d0893f0f44d6 80fe937892637423c12e03992e788bcc +80feaa690bb74858d1b2879ae62eff7d 80ff295d637360578ed3098692555de8 80ffb0a78c5c9e21448132f0cb3d6dfe 81002f4bc1db9b19e45044eab0fc8ca4 8100c9a74700239cc09a87bd0628e129 8102645d4e6e5a3ee68bfd74f6bec7f9 81032402feb4c0492bf440da7ddec6c6 +8103ad87670904b8dd968ca78bd2dc82 810586e3b0dcf0146c3a86c4f2d859db 8108b360c510c7bd0e39c754211d1077 81095138367282061e376e419271dc8e @@ -29313,6 +32724,7 @@ 810a41c23b5c4e94ce997609f03740f9 810b87eda65bb41a2c60ce37932cf12b 810e45d633f021cff90a0cb58ab2cd1b +810e4a8f447af0efa4d4cd829e0a6e71 810eca859e29ac7d471e54c1dedbcf04 810f3d0d0653ec14c29d971e92a5168f 811088e1fa246092efbde903f5436bce @@ -29328,6 +32740,7 @@ 8117dd281cf613d3941ef27da5b6cde7 8118bd037ea03e6966471687206da527 811967b67f2048ba02b1fb069c72e3e7 +811c2c6849af1b739ea57a834b8c9ac9 811d2529add9fb633795e84ba8785934 8120c82033492396d3504666eb3590de 81231f4e34bcd6fcd69a1ccf9610b993 @@ -29338,22 +32751,31 @@ 81264026ecb2056145fa7d037ef0bb7a 81271480dceaccfe822ad47149c45995 8127613d3895b3eeef1a576d7d8f76c9 +812767528fbf761f1065e1fc9f06bbe4 +8127957ea66b835b98a75c9eb304a7e1 812802b04021324f011cdd0b77827cb5 812a39007380376a4badb7cc8137ebf3 +812ab99dda4b9ea58a13fdffa4a635d0 812c5ab8c3916b8a3943883a853bbdae +812c70fdf85ee06cd5cb32001eead759 812ccfa6ec942fc28cd083a78a2ebdc5 +812cf5f4c8b04285f59e2c526ff20e23 812df0bf21637cc222f1a66498c710aa 812fd5e635b178b794de7e29bc0e799b 8131642c4043d6ce84713e6c61db2e84 +8131eaea51d89e6f2530110458513cd4 8132d5f80492fb66fd2fa7463d4babcc 81341305549b4b4886a7fd9df68a4e94 8134b06e914354ad8af23a4902a1ebd9 8134e52adfd2b79407fc9901ef83ac34 +813566e30d837b3bd05e5354e08dfcac 81358ef57b292fc3c8337939cce8bf9e 81364ea67ee13b2eddacf5447a0626c4 8136d2afee51d6e7dbba6b99e6101db1 81370374f04e3de48e59e0e7f0f0a297 813785a9a90fb319a631fca698c12384 +8137fb7eba55746a5cd413df0c017c63 +8138f4b5f4211dc5959497b808685698 8139625c62b793fbb73112c4cb07b1f8 8139c1bd03a7c00c62f0ed3ce5e8cd62 8139fdb499987ad1e47e6829166a9fa4 @@ -29363,17 +32785,21 @@ 813d52d31ba09073e5ec18076ca9511f 813ec2f77467f925007bf108ffa6dad8 814082e3494d833081c69529f206b7a3 +81409f6c070a2084e9fdcfd2366155cd 8140ed83d1638be2eaf2a06b09962242 81412196fad4dd6ffef4768dfd83d4f3 +814224eb189b3dbd8376bc3d61a7413d 81424ab2ee3907152f9cc3333843711a 81439594652bcfae0141cd90e02c4cba 81440e7701c078b890546c5696c592e8 81447c611c9d4ff34e8f80749f19d642 814576bc8340c11f7bb12a0271f632f9 +8148f80f2d04ddcfffc2861deec9b4ba 814a8120a219ff6729ee4a248a5e195d 814ae009a2699826745a07e1006d075b 814b50013538d8ea5de8c40c78a4e749 814b604dc153bfede548725b246368bd +814c35fcfdd1794172e744caa875bbf8 814d4e24c9959a5b6aa5e3b7619513aa 814dcfe22c85423604b492fbcee784fd 814f4c5e5d8be73616c76e8361335952 @@ -29391,6 +32817,7 @@ 8159d54e44ba8888287b35191ab74774 815a5d4c4d43595dbc506903f3ce5203 815a7e4a0f46ec1ffd8f87db757bfe81 +815b58dc3170eac45f4733b520fe4cea 815d20d50f273c10e5331ef4bf5abd40 815da90d1d45dbfde242e857f9335cc7 815e484f448a18abd437e20508584700 @@ -29408,6 +32835,7 @@ 8169f80244df9e0bdf4affb8976760d1 816ac37fa8f6d938e9d41f209a0f2217 816c3e4b1748dfffeb8387c3c38c5653 +816ce82d30da4505f54c23eedbdb29e8 816d5242066702d5ade063ff244a994e 817107c8334024e5eb7af9c47e03361d 81729494bdf829c8e82d003f804ad1a2 @@ -29433,12 +32861,15 @@ 8189d39e4660df09fbb04c0660661bd9 8189f2f40626339176e2f2bea6360261 818bba1e61c4cf538c2dd2ddd590a551 +818d58b4e0fe26933804f3bd83d8763c 818f0d073d87adf2362224676071066a +818fc73083c21fc83707025d0b758eea 81902ae22e8ade62b011a493b910719d 81922926acf00d7fe90fba48dec17766 8193328fa715e04858efd899eaf6d847 8193df93a298556262d45c6b50524ef4 8193f89da83d1a403a3fad023a5251cd +819449332bbb9080f60b1b1dd321d9f3 8195d7f53dfd25d5c698561faa5a1f89 8195e02e75eaacbe6567b07243cafc7f 8195f51b7e7a69ebf70321cbefcc11e0 @@ -29462,6 +32893,7 @@ 81ab6536d2d692a86f05b64b095e94c9 81ab7329f7846e2a1073aa67557a7cbe 81ac8ce8fe804eea944c8aa293b830bd +81ad5d78827d1aabcbbe5e942e226d81 81aecad5c6822e5f91b988373e778954 81af23316fe71904a19be7044826eb9a 81b0032835de15bffc089b4a92077ea9 @@ -29474,11 +32906,14 @@ 81b78a61482eff5c1d8006d093f9e357 81beb8908f5e870f07ecdc6191cdad58 81bec247515eb0820569ddda3cb7edd6 +81bf85a75560fd12300ac5be2be03eea 81bfb2f5bdc61037669ed25e8415b775 81c01c20a7f127abdaca99340807b340 81c054ab72257f598ac77ef4014d4677 +81c07609cecc88565cfaee58dad14af7 81c159336da96d27e0f0039d36ea7733 81c1711f7d447007b5b069f0e32f789f +81c25c8c427d21f31cc123e414f612e1 81c2618fa5d8710d4a321fe1da9b9691 81c26e8fb560ffb12fc50345573a60e3 81c2870086830ddd4abb499ac0a6fd00 @@ -29501,6 +32936,8 @@ 81d70569ed6b35bf1fcb65e6ba2a7903 81d816ec0e15fcc0502aacbd16c1da67 81d824bd2b773c7efb205738aad852be +81d851253dc653dcad2481c448b6f910 +81d85d731ab29c9f44a39cb56919a1b1 81d864e27233ae0a9840e8fd93e5b1b3 81d8b0702d68a26f29034f56162d2afe 81dd2be68d0de0d392bfb9425287efd1 @@ -29511,11 +32948,13 @@ 81e3c7920a3a68bc050907a0749834ac 81e4d060a307790aa2e35abe9aad0495 81e64d49b161145c622b4f1b7c9a34db +81e6fe65baa1eb36984e2fa2df2429a5 81e80de208f9a695f8f088fd1f9d9aed 81e8f6b8a7023ed964ced50b39be185c 81e8fc97078d940854911f301a46519c 81e9ea953d78d0e60b58781a2a0bc742 81eb0609b2386fca330d3f1e95bcc0a9 +81eb156dffdf8f806297da4eb2bd3bae 81ec7616d3ff230a69c37b2f910e547a 81ed2084916370a400a616e53b54e49e 81edc020572a6b9117866bbbe7150bdc @@ -29535,6 +32974,7 @@ 81f80c77307da5da7cc74089e4742cc2 81fa3c2fd813e0155e3f86d7fd7e323b 81fad47c334aeac99fd501edc6052634 +81fc7cd48ac767b83b70d1f12b883e1d 81fcdb8cabdeb330dec4fe3ea2c6a380 81fd18745e8d26b6c39492d05be993e1 81fd6b0506fea230ec1dfaecc721d782 @@ -29542,7 +32982,9 @@ 81ff36968a7477ef5de20fdc9cf44960 8200d487385c4b0e007df553ef177225 82015a6dee9167d4b6a4ea632fb71885 +82031f7043f1903337bc878c1505dd31 82056c17324ed6fd85c01b0fd9adc54e +8208c319e888803487afde04c7c7eae8 8208ca4398eeb573ca48b31ca45e0b55 820a1b42bbca1a1c3dfe79e23e219b37 820a9baa8962e0d210fcf2a2f124df95 @@ -29565,6 +33007,7 @@ 82183884d167b3badcd6433d9d8911ec 82183b66572bb99a93d9249c6526ac78 82188706ae4ae926f3a0732ad9ba2dad +82192865261d5232d80fbcf14959faf2 8219e8cc8f84251022adf1235737d43e 821ad8e97cd322ad2aef0d2a900bf802 821bf257a6f39ed92dd54d0c711f02be @@ -29584,6 +33027,7 @@ 82235088eaca410af92799ff52864641 82241bdcd43b7ff8766b8103bf839f1a 82242198b54b6e05c31b6bc28853ee4f +822513333e2a012e50aa133ae08e957d 8225e2b1d932a60814c9af6ffad677a4 8226fe6a34e214a919e589a049fc69d5 82283c18a62fbb91bd9600405ec0741f @@ -29598,14 +33042,19 @@ 822faf9392fd41cb0fa791ea951ed04c 823003f7f66ea5d3de284af952a8665b 823334e23d11ca49b12c2a2a23268d74 +8233ce5b11a662a3bc223d749f6c6ae3 8235ccd805e9bdfbcdec7c07659f7ccc 823716b63a7f9b93d128eb6d57a80017 8238121e4adbf3cbe811c327b3fd1aeb 82382979242e5ae7552ae2896a4b741f 8239fd26826f767ea216986dc6f07274 823ce596085ad9fcc0303ce4114d0574 +823dc60e4ff6a49ab34447419ff6154e 823eef9ed3138bf4758e0cac90587874 8240973dba3a3527a130e85a7b3e6c11 +82413954ceabce46051a9cdcb7cfd0c4 +82415807e6d18c5aa86cb1c1b34dddc7 +824309b5aabf2e700aa90a2f19c47b49 824500f3f21f7475077d6b89f2902e01 8247d72923e896b19602d80b4fac1b15 8248ccff63acc8acfd2a8543588854fb @@ -29631,6 +33080,7 @@ 8261e729b7ac58c40dc74cf463f2323f 82621811de0b0ff6e0ce3a2ee6c19f6e 8262f073790a413ae7ac2e641fc59de8 +8263634dd445686ee7487f43a97ddeda 82639c8dbd1e85ef03b63c8bf9fc18b2 82650a27a13b0c0e302df763f589f5ca 8266047be12b9ddef97eabd3eecb858d @@ -29641,6 +33091,7 @@ 826dea4971a547877e3827fb3d7f2c4d 826f4ee664e8e755702f8c81c9e278bf 826f5296e27d787f4a92a102cd044d9f +826ff7e0eba52cab797ce7ea16433bf9 8272bb65b0e54854f5f7f88726684fa9 82737d45bc225ca33a7d31537e8af8b6 8274ef499cc6940bd85feae096049945 @@ -29654,8 +33105,11 @@ 827de5f08e8f6b93a396aa883e137460 827e1b06711b69e87abe88c2488fd608 827f3aa024cf44471a16f97ca795fa65 +82806fd9a19572f0b457204c85695ece 82816f2a719d83d1689fce8ad0886f37 +828453a9ab4a26c7885dac4dcd4ac102 82859396cfaf139c85e557ba8e4363e3 +8285d42efcbc04c996701419dc1cd6c6 8285e8e78ea2cf60d8132669fc7666d2 8287f2423a8775e956667f17021733ff 828953c755fa9a3fe16f8ecc0a31120f @@ -29666,6 +33120,7 @@ 828eba880a0aa272df88bf5a509cc1d6 828ff72d777eaad88671f8fb04a5b117 8290d04118372306810a1f5489c60934 +829134463e14ef405aa9bbc7626e3dea 8291bb98ded85380c68fdebd9c9cea58 8291f98902958a95f7f0b0575578a10d 8292cd86dfaaf107684523d706310eb7 @@ -29676,6 +33131,7 @@ 829aacd812ef6b9fd4e64bfb3a3a587f 829d3ebc2a627fbc301a352c1f18ee74 829de676d7fe45f894ac53c30c61eaa4 +829ea0dc40d46fddbadb9c9863dd9925 829feada1b3794e355c7eaa3b0f84fe6 82a1560db79fead12add97321c55828f 82a1e8331f2e46a680b1a2167a4688df @@ -29709,6 +33165,7 @@ 82c02395eaea970f78891979390c157f 82c13e158b00321cafab5014e7e01c6a 82c18ca6001b78d031d36ce836a14906 +82c46cf62efd7480e774182fae467855 82c4825f07a87bc3af5302fdefc3345e 82c493fa09f5db027e40bc6c8f997fb5 82c6f2117fa87bd19ce87d6bfab7c8e3 @@ -29717,6 +33174,7 @@ 82c8ee15d026430800ebd13a7aaa2a02 82c92e1340c26041af1dd3336e0647fd 82ca74509d25520df3b613709a5c4a07 +82cb61a060a754cfe47df0c2cc3dd89b 82cb7e46341e3450a764984e780c69ff 82ce0911b0f44a2aca0e7ca1cc60722e 82cf3fda6b9ad2cb92fd95901cc54db9 @@ -29726,6 +33184,7 @@ 82d29a454ccfb3800135bfc0b683641b 82d2c3f1e0a77476e6809c2ae54d4671 82d3bc5da153b1f124c126bbd5deb113 +82d42558c9578beb5d1182c422ac399d 82d56ab019de7652242685f419635490 82d59ba0123d753a0b851fbdca2913a0 82d59ca8ad674af38c8f7f239bb232f1 @@ -29744,11 +33203,13 @@ 82e36639fd504c41c6b27112f977114b 82e4e332de7ee21e1b8994026914f66b 82e6bab1ee4bb8618760158ddc75d21d +82e6e7e70319da842cae1a1a6a99b909 82e83120783ba0a83c891d0ef2c93b63 82eacdc53b6ef0ca42e1bdff2b02947f 82eb36a7922e3f50cb7142bc866257e1 82ebf7786291974323bc383ae33c1417 82ec9bf99b184451f54f99c079998d62 +82edbdde3f56d87b3dd6c3bc1d630a56 82ede6a757e923351d32044eff011e83 82ee3d18360982f9cd2e43a75b455468 82ee9200550b258236a4fe61301400c7 @@ -29757,11 +33218,14 @@ 82f3bae4dddb6db49b35e9ac9f6c833d 82f4192a67f1c87a5e21f143001be1fb 82f4cf4fd3e030fad546385007203f38 +82f4db10f1d22921a96df74222c98c2d 82f667c3cf47b592e2385fc6cd790312 82f79a1d06e6a5ebb788b09264027f60 82fa6fa0a3e1a88934e43df5a8ac3bbb 82fc54f8091f854155cab2ec2403dc56 82fd78511c9e8a28ce7e2be2242d468a +82fd90153e5540095613335b73f2fe75 +82fe4cdf7bbd83f911f6ffe85f3f3edb 82feca66471232b224790fd6fbaa904a 82fef80d609399159d6a9b0a5e1908be 83007b257e304d4eecefcb9681ff569b @@ -29786,6 +33250,7 @@ 831255eb6d415e132542f5356131e77c 8313a1430fa7b292e2c454acc0011331 8315d2bcbc0e6e9b5a9f2e85e0f9877e +8316356df32f91936fa89db066b3f0f0 83189fd9977bf8fc45cbcad14b13dccf 8319f4d68d7ef8162914afdc83c773fc 831bca201af03ecbb32b5648da527b0e @@ -29795,15 +33260,19 @@ 831db8368e8fe4d103355a178e47a03e 831ec526b2db75af6e55fc88897f8cee 83211e759c5b4bdbaeabcb65c8a147ec +8321816136fea77adb042df2eb44f546 +8321a7d8bb82840277d2fe2ca5c0280a 8322fb878b036b72f64b0fd1877d5cb2 83248b9adab21b1cbf7d2d56e0fee145 8325c932bed746f9f9350fe5e3dd8585 +8326801678927805df42b913dfdcc6f5 83274986fc7851b2f6a1e92bffd47f05 8328796fac20e8d372b62e183afaf1d5 832919edd6bbf2f2b166fb11eb848609 832ca1ec662d496e2de3aea88d92ce16 832d72358ba36b71e270c229645c1e76 832ed7016b174adff48de88ce3b366fe +832f134f029a31cbc6588185e674498d 83320c0fd986629c918998056d15ab68 83326516433dbc0681d013a2d33e74a1 83339e6e18225b8ae0fc486ed9092753 @@ -29813,6 +33282,7 @@ 8336f58d2745f5baff28c3e38e61ec22 833709dcffa68635cef30c2fbfaf3942 83376a23dee39ede8572e86ef3e90564 +83379b386fb79fba5133ff40862ae77f 8337eebeeff73c31e1137abe0a101ba1 833990994cf074472ab2c55714d11167 8339a343e150060ce7c2c1c31af8523f @@ -29830,6 +33300,7 @@ 834a51b85fb7f2bb75a15fc44074c300 834d97b333a937558dd34a081e5c8258 834dff0a681e8643edd0807c4bc87122 +834ee69fe3fd4f604c421781f5c33493 83520f967cf009ddb4c6f3da6057dda9 8352210a4b07c4c585460cc19c1fe049 835259d2c13bfe0e1c27b4a1f044fdde @@ -29840,7 +33311,9 @@ 835a313f08cf694339d697625d2a3302 835aaed3c22d08a196d3599545fb8586 835bd685a1dcdfc4f90a1b5a2a6d0de9 +835c15bf589717b71ba931708d8961df 835c60e4dc1267f36de7234f408bc1f3 +835c969e9db26fec3bc7c3182c3dacfe 835caa24c207708dec43c98cf9d56bf7 835d104ff8c4256f551094be8e26e7cc 835d8e22a5df166e8f5cee385ffc61de @@ -29853,9 +33326,12 @@ 836786ac31e394ae0deb26c50819c97b 836bb82f7cf829f2ced53984e2d068ab 836d2faa87b74daad504d1a2eac41cb6 +836ed5c611bc8e7b3ae1b4452c404717 836ff5686f4d1a36454f2f79313e4e9a +83704f7253dd73eaf484c5064fbed068 83708ca03e619dd2947359906dcfe422 8371b99770e36222752e1e9b0f4c7e4a +8371dd66f9f4bf5d91f594938a2ea049 83735874cf494e32ecc1a2e9de7a7642 83742476ff35fe1c3b7f157bcb93767a 8374c1a08fcf3776f2677e11f02fcece @@ -29869,11 +33345,13 @@ 837abfcf16a56e5d50e6aac1d0cf1f00 837b5942f81fc2ee464b92aad1af6cea 837d6a5e7e76c63c763f709c766868d5 +837e6f96c37eb102b013d0e40d01d7d3 837ed1eadcbfc6e6b2eaa4049b78c4a5 8381051b1a005e543f82556ec6696826 83821ce457ade29f4452a7c59685cec0 838253ae3df5760899d217b5906415a9 8382564fba301eb7d973877d70d6fa3f +838310e7a6591cded1b014b3ff12161e 838338d52d5da5f39001e6ea5c55b35f 83833c66cfca9a1d2a4f40f03548324d 8383a520ce29196a355740493efa5d63 @@ -29896,10 +33374,12 @@ 83978d16823d1bd2afda18ca796be4d5 839828a7e019b71e53c62990d2356242 83985c3e5f2746d13bdd6f54d2acad89 +839950bc850ed0ba23316f8c783f3419 839963452eefc74dffc327f851b41a64 839a0331b7339df7c5b6c61a451ed268 839a5ec02beee88df484ca34135c55a1 839b3b9f5e4bbdd550e8ce6d882fed9a +839c061df773ae1043cb20bfcd0925bd 839c8ea920f43d942d1dbd85bc30a84b 839e2c06654690bebe239b3a379c533d 839e3088a50d4abf4ccbbbebac8c5b05 @@ -29943,9 +33423,12 @@ 83c10f5d8f5bbbfe53db4f35cbbdf348 83c1aa3be4c0e268291f7b204cfad920 83c236f8ae7a87b895cbfd66125bfaf5 +83c5d4c37764e7cb3a82ed2dab3f846f 83c6ade6504d73f07f04f1f5f78961fd +83c8d61bf4e1de70022036f1e9ada3b2 83c9e3c7f469ece10265a87e2f078cf5 83ca200ab5e5f19eb1a3eeea719f3dbc +83ca3b695e5fe41702e8c3efb8c5a8e1 83ca6842b0148053ca6bbaa0dd1681ff 83cc1e2fcbe55a25b49ddb90a4910602 83cd6dd3d54e364c9ddb627f8f4e91ea @@ -29954,6 +33437,8 @@ 83cefedc340bb78e43350544940ecca0 83cf0aa31d59c1d227eefb7213d1d8b8 83cfab799c4f5e6ad4c73fe09430c08a +83cfd7ebc1174cf34746d10e53069296 +83d088d643ddee0237d3e98b1c839a83 83d0abfdd5a06e83ebf150e1b011c422 83d184467410ca0dd1c3c77bc7904286 83d29644646253a5cd8604543f469d1d @@ -29961,6 +33446,7 @@ 83d2fdfd70a7a65556a09ce84aaa1e67 83d553fc77823675a504bbe5fe4257cf 83d578e11bb42884c09427e66bd0cc46 +83d637439d05712307706d4663e4b767 83d7f8ab4b5faefce86a7fe2a232a542 83d9872f813164583e8fe2ea7b6a3412 83da1900e65edc1760622553ba5641fd @@ -29969,6 +33455,7 @@ 83db1b985ccce4d96fd13cafab4d625c 83dbfed22a3e8ce86dbb2100254d37e7 83dc8bd05d627941eb3199f8107400e4 +83dce890aa54c4df5c286d5df75a3b44 83dd57df335f6d740342cf9140e6d58e 83dd9ea201c2d0d98996ae608fd0b9ad 83de20d2ff8acfc8cb42a3243f4bb26c @@ -29983,13 +33470,19 @@ 83e8e907b1106ca7dba82460c702f1cb 83ea64ff7669f6189a099bb9acbe8718 83eb0f499688cfca8dae82ab96439a70 +83ec337ce467a951d9d37151c0b90118 +83ee9e96c25835707ac97fe169f982c4 83eed682d95ffc385c42160a78950824 +83f5b6f43695b6989eb6acb185cbaadb 83f63b405d57e66520d44c5a2fcc8dab 83f6537afcd024ec6fdd5eae4571f5d8 +83f7fd5bb169d674bfa8fa00a35ffc94 +83f892a36bd8e93d61cee3d4136c33fb 83f904b7d6e2ddeb161555f322becab3 83f9be1b35c81b52ec37992eb9b066f5 83fdc5a977c2438671c0a352b369d9c3 83fe3f45051957f2a3c4a4a487b94366 +83ff44ab71c0ca871b03af1ca88fac72 840063313d2279bf4463aab6fa64358e 8400a1776eced39744591c42c0eb73b4 8401240ea4dbbc8b9cbcdd1be2d9b05d @@ -30030,6 +33523,7 @@ 8424d98a44dbea364f7fbf259e3f8e07 8424f558fb83e39e8a3eb521e54a33c4 842555e6a7e7d92db0dc25d6f9a1c2d7 +842653143aa93b72fafd88da6156e1a7 842780ad415726e7ada205f35b0a4f81 8427ffae93f5a6c08bf9c93e96d54950 8428b4d4aecb2f4982a1370dbbc66824 @@ -30039,6 +33533,7 @@ 842accc25c3daafd2c5f0b9fb0aa097a 842b0ff59ec98757d17f67d72ca0b845 842b2982af068108fe7d0f53b164bcdf +842bafc42f3e88d77f8115bd6a9610ab 842bd654c1a9de1ae231bf18427728a7 842c2d9955795953faa9de49ae14985c 842c9d49a1d3e20e2a7e74f9e465ca65 @@ -30056,6 +33551,7 @@ 8438e9a06bb0fd9c77013901806c61c9 843a0e0d8850d3226b95c7445febc8db 843a20fae4bee6cffdab7db5372abb75 +843a37b6a33689a964f43164213421b2 843b7b20890d4667fc245dff7659b7bc 843d335efa84d29f6e70764db2a0250c 843d37095d7fa252c063a33e4fcdd200 @@ -30063,6 +33559,7 @@ 843f65d8b68f98c9b528aea00235aa84 8440864a49c574bd75b0acf123c07b98 8440bed23fccd506e6220e7395190df3 +84423c8444d58f7342a198bb1f5bb9af 8442c508f0280f36e67f7eabdea016f0 84446027eb293d9877c38f86dd09be51 84448ab93620892d5774f74131045fd3 @@ -30075,6 +33572,7 @@ 844adab9c87048398540402525b1b602 844b082df3cd31239e4b007951587544 844bf4640e19c16ea164b16de1d644d3 +844cd515ec938d88284d26a7e3d5c973 844d85d4b30844ae6f0e8106fce5efcd 844ec6787c3708d958be50ba6620a3cf 844f611ca7cdf77fcb39f634de1b61eb @@ -30091,10 +33589,12 @@ 84611041defa14c8ab0099f6bd7409c6 84648acfde6babd9873e2c78b9258115 8464b27a50748cf68b0d861ae5ede1a4 +846537ac63bd3c2fd572096fe3b2cc3c 846595af9574059dce14a92d59fbc4d1 8465cceb8e0e242aa192c075b806490a 846805a8024007d4962073697a4c633b 846a4abb1dc93f26dc8078ef37ab8271 +846a73162db191ef8cb1fae86f8fd8c8 846a76c40eb985c14788ccdf0f093893 846ad632185708a0d1edd8f3c6aaaa1d 846b1741a80618816062c7c361ce615a @@ -30105,16 +33605,19 @@ 846eea52b7442c5044b14624b59440c9 8470b1419213b93a86dd1bbfd805f879 8470f35b3da24283e6c0e06cbb8014ae +84712753a8e3775f4d319260e8ab8276 8471f8ee3144094cb1122809a5a9cc27 8473a57055bff9858d01aabb05693f3a 8474400a428d7d9b27e9659e174ae306 8474699d240e5791781bc858346927c0 84755112fe64c869c568e74add6243a7 +8476cce464fece1f46b6fd87d38c98aa 84781c2757e4416ff42b987ee5305442 8479d6d8de0eac58aaccb2a15d74dd93 8479e15393d1f482cbe80a699f0328a8 8479f4bbe106a616c6447f2624e0a588 847a469e6530baa12aef2d1409e83440 +847a4ea4ed802e7f3241a29daf899188 847bee60bfe2344ffc188e1d1e461101 847c6afaa376bc6e3aa90951a84e167a 847c9e63db01375a5013c79d384cbad5 @@ -30122,15 +33625,19 @@ 847eeefd1c68a9fd3feae98adeee2070 847ef31c04af0a4fa8026ac9373ab27c 847f98f98fcead171d56ba8fc27b3bf0 +84801773dbe431a819937f358178c7a7 84803e7bc6bfc5ed423ae99436e4460f 8480c18e8263fa6798c62743528e6f87 +84818848add56c24b3ec7eb4dba9d75c 8483c7a6b304c9fbf30567b4a7f6eb6f 8483dea2af2a8ce01bbfe2060b0591b8 8484b8b462e6b90c95b00d72ce412201 8485c89bd70b4acd595f8867a3813609 8485ecce3c5ab8f2f97caa78cdab36d5 848802ea565a6019490945d9b96afc62 +84884f3b59c1420b54e1412d49536e7c 84888d512efb1ba0cea0764498941e48 +848a0817fe4e07194699e073c6a4f376 848a36ce27646835846baca0360ac81d 848b487ba17692156478f5632f2da95a 848b8e875737296ecc0a541ca2ddf3f4 @@ -30138,6 +33645,7 @@ 848d3095be7a3550c6d213888d6f89eb 848d79aea0b62c632e660a59da4986fa 848d951f8199110c7d06aac5addf0567 +848e132bdcccd1b7ce2931acb50a0dd7 848e490b9a79564b3d795091bf0b82d8 848f5d7b43d1143814b5b24b359c2339 848ff93398fb8ec0de7cefe9a4678961 @@ -30167,6 +33675,7 @@ 84ab195d29195183bd09ddc4d6bd42bb 84ad2104f580add3e92613de0f0be87e 84ad39b6f12bfc4fbcf3bedd449a2a35 +84add958fd34ec1cb23a84cd9554cec6 84ae9e1dd5aa3f09dcba441e35b6a15a 84aee59b05123edae03c9b83f7b31413 84afaf1772d99efd889ccd47c918e7d8 @@ -30209,7 +33718,9 @@ 84db31fa3cf7f9f9d20b8065b78b6ddd 84dd0e5c64f27ee83fdd36200b2458ba 84e0977853336adc9ea69da5fa7446f1 +84e0eb58659e98bf797211c4f90490cd 84e1251954012c37a7d9d1390b894ab5 +84e17fd1dae37e55a55cfe9da72f6aba 84e1d9916a3ccbf211bc7abab20b67d0 84e4a8be96ddb300d7c9381374a1180d 84e5ea189992aa71797b0401fd2ebd18 @@ -30217,20 +33728,25 @@ 84e64ee7030b38dfc925f73b84ea795c 84e6f1d3364e46c0b0acc606c5d0389b 84e7554ef8a152b1f670221a879d08b7 +84e8d117ed142cb762fdf2a609e5836a 84ea93623c7fe9d21602143c0bae4084 84eab9dc431946b20625d79a9a2869f7 84ebc6d6246b24f595d0177b18199a8b 84ebd454e153d5cb997c972833409754 84ed2966f4571d53eeeb8a089eaf1e9c 84ed97b683f9ae0227ed21e4ae007373 +84ede435c83c819432eeaa369fad2c2a 84ef0045f1c36d6b30640aec7c046b3d 84ef05ff99fba9b107125cbbf962be3d 84f04a81e1d71fa5e877952061b8781a 84f0dcaf1af1864f195e204ffeab7336 +84f2540dc6a10836b39739bf75b9c410 84f3bab5a50483f203c98f5457eb30b7 84f92ca9e7671d0013e633fb75c42530 84fbf392c1745801e9bff10384174b06 +84fc227674a77c7801acb3e707f6ca14 84fc84f46c0b9389b77dc4c64da89382 +84fd53d0b57b4da988257e9105681921 84fde36f6426700723e2a7745915383c 84fe17119bfb9a3236fde20657fbe8d6 84ff0e9c4788b3a2fdbd1f6734d4643e @@ -30239,6 +33755,7 @@ 8502cd62c7bd627e2bdf9327ad3ba422 85036aaffb850d7251171d6dad6ddc6a 85036edfe34c33f5eee6d2f905fbe7d1 +8503b5c480f028aac433ca7575a36ea1 8504caa9649fbf07ff75c03bb2300fda 85060853707305fd6500d45a7e087fcc 8507a364a86dd17947330cecaa9e144b @@ -30265,6 +33782,7 @@ 85180f5441fcf4a32bb65618a2b11ebf 851b2379aae2d42e8e4e5f65d96c6386 851c0f68e19446a571e3113020ab2152 +851c1cffc8942ecfb61d87935bc97538 851ef9c08287de883a0f69229300b4ea 851f47a42f79ff9a3a535c9ecfb42411 851f91a0492860c14e1a71ab0263bcba @@ -30301,6 +33819,7 @@ 85429ec87364cddea21e9a18593d696f 8542c8cd7c6816c3d703586ec9d4879a 8543cdce73d8ddc9af1dfe6ac83ac118 +8544901c0af5e81c9184f1f83b9cbf54 8544e6a65e3846144d6265e284d27dac 854554201d59eb19d344b6e9e2ebbf43 8546f35230c099cb875e18b5f9fe592c @@ -30345,14 +33864,18 @@ 856e7e5942bfdad56eb55f7bceb8f999 85700fdf86861cbd9a8f6ade0fdd84c6 85716cbea2057194b596dd18aeaf943e +8572538b3e722ef35369b2e0edb24d10 8573c138ed3b5a9d549096fdfc28acf0 +85740b2b87a90f321fd88067002aba4e 85741021f1f29b06e6b374b9599d6196 8576dc1b982d575ca6ced946b449b81b 8577ff1b1a6e7dd27b80f3d4e87d073e 8578279cc310c4e4e82a0aff41cacb47 857880bb5b14674ab025dcca907a4b23 8579514365f9ac170dd675e764507bb2 +857a5004f55e5d0140c539db991e86c4 857afad9fe0f5afc937171d4ff656843 +857b11bb1efe8118ebefdbe35433a646 857c2a95b0da3d7dd1b1ac6bf359687b 857c57bcc58854ceaa338cb702a60d9c 857cc0b849bbbc6454196c149186a693 @@ -30393,13 +33916,18 @@ 85a55c8a33793276b51528af5bffcb72 85a56e7261940bcd3c5499b9856c6402 85a5a5aeb15a4e216f77ae208af3dd7f +85a63273c520839f01ead32954870a04 +85a67aa27067fdf315bdec8d544ee514 +85a7cb1d73dac2e286747a86864f37b3 85a839757cf77b0cdf3910b4a91a6d41 +85a85ed2a2d60a8affbabe984feb1e5c 85a8ff1b6df262b72ac9d814fd67fef5 85aaa4e2af4edd53d3360c454b7b221a 85ad2dfc132baecd2eab5a299af7705c 85add775fdb1221b258508127213259f 85ae0eca034f4256acab3336e9f46d8f 85ae1a482a4e26464f0ed76ccabbc3db +85ae28aab55ff700fcd6db5dc5bfa2e8 85aeb69bdb17ce80da9409b5c60c9a0b 85aed2b23869f27f380c4e10481d171b 85b079ed7d15497e6bdf57a7999d5f51 @@ -30407,7 +33935,9 @@ 85b24c4eb052a49a472514ac91cf0798 85b4ac3c92128b917acea8477ec39174 85b51be6d867461088452c9dba9fa390 +85b54a285118ff65601cbf338f7b78c5 85b8752cf27d6b8c2f098eafbf7c4ade +85b91468466d65f67feb870e2f8ea9ea 85ba9ce49738a495b71b589fc1f0baea 85bad1e432da7438b5e5c13da4809c21 85bc82719b899e64fe8eb08833cf6f14 @@ -30429,6 +33959,7 @@ 85d1b94d4623ae6934a43f484e5f13e5 85d226de15992403bdcf87b765fd54e2 85d295b532a904280ace1f0c945b6869 +85d3cbb9efdf338b93fc19f23d91c414 85d5e97b4c68d894bc7a7f59f48f7da6 85d5eb8f951f42d3f6002878224c6d6f 85d6e7ff4654a748dd1985771824831b @@ -30444,12 +33975,16 @@ 85e1bc302f308448012ef72975af8e3f 85e1c6c50de43efdefdc48a76e772e14 85e289aa04ce07feddc6c37b7867b93d +85e4dea7ab3ad8854195026dcd70bb6b 85e4f48022edd2f1bce6554d73b1679c 85e597ea6017b70d49db82d48f2ff15a +85e7661ccd7ef917e25e1311fa72e76d +85e77f3cdcc97ebfc9de55ae4f298072 85e7fb50adc4546c0fb99d7fab733654 85eb80d4733c47510a95865908076b90 85ed1f2c0bd0f21c8d58558ba618187f 85ed655b587f58dac8b3513c3c7ffece +85ee14c280b1bc9ea6d9fcb983f99fd4 85ef0c6dccbeb0f45e6aa4750e857cc4 85efbdd16d11180ba3ccb78328a4dcd8 85f01dab11f7a1553d7c7cf588e9639d @@ -30459,14 +33994,17 @@ 85f3357e0d8635b94f20143fd5e8ffe5 85f35f42391d4b2c4e9a02a580bcfb0d 85f39c76ce7ce0ababfadc984e22e9e7 +85f705172c238e632c1796ba0accbf24 85f7ff945399991987ddb8605afb21b2 85f8aab4495fd5d2f7df49a5d508bd27 85f983b02d2d9cecf14e3db520bec681 +85f9856e09ff5d6953b329fd43a6ef37 85fa3c270c1f08459866a4bb22c499b8 85fb2eee88671401bbf21e37b73c450e 85fc208acf7016f851f6a9eec21e9ad3 85fd87d05d56e553a2d55689f03a0fb9 85feb6b1a990f51aeaef7adaef6aff44 +85fec88976cbcbcdd7908baaa5a74b28 860012cee25223c013f31616d04f1271 8600f4f373080108cf9ad835e6b5ca25 86016f1a9c1dc3f2b6f50aa01aed49b2 @@ -30474,8 +34012,11 @@ 860328ef8b19a83f32afea63852eb064 8603fe393300f6a5521048be6eb53fc8 860432032d951329b2ec8e25f2b91d78 +8605696dfe52efde20e6e3846c79a0d3 +8606a43035e84754614f933353f5a73e 8607dbe8d09aadf667e15d4575a92ac1 86083ba75bb7388ca8a050a5c10deb18 +8608443e6f49c5f7092e1abd204ab7bc 860a12abb3eaef5de01bc32db23bfa03 860a1df8820d5b1d65c8d6f8331461cf 860ac786c9d9129e5ac4c09a65e2f038 @@ -30485,8 +34026,12 @@ 860ef8b231be6068c556583eb94ace61 860fa354049d314f93bbe907f4f2718d 86103fb3be9355aac7f517a55faf64c8 +861055545f44e0e81a5bce0d6c0e8d65 8610af95d99230f6b0fed3911d39fd38 8611496d6ed41057c6abf8f37f27877e +86118d44317003dc86155d002f97fab4 +86129e5d931760c6ac1e73ab022cb41f +8612d114c56b2b54a617a6e0164e86a0 8613f7b7b2943ce57131db2c8be26076 861475df9d5a14187f296d669843fbe0 86149ca011b27943972c838558f1f13f @@ -30498,6 +34043,7 @@ 861997ca02652306799c73b13d537705 861b265400ecbf22db4addf4ac8fcb99 861d27610749ccd7fec1e38a7ca53a3e +861fa17006000b859ebee8e0f254378d 86201a4d287b83db2c065043d4e80312 862025d7bb6ea11ffd839abbe4dc0212 8620fddfaec3de219885aa2b403dc9dc @@ -30507,9 +34053,11 @@ 862376154af0cfb717cfed0e78404ee0 862475e1592bc86992eb97a452fa55c2 8624a268aaad40125300aff5e25c2f23 +86250ed759e99fd0b661bd91e2638561 86252b6681ea00a34667394a77f6085d 86262eec12653a75d6cf8805f7fee3e6 86266300d1fef5738db69eda8366ac03 +8626f130c992feafa082f4fcdcb4186e 86284784253d6933f26e48e6198b76be 8628993158a68675934232a3fb60a2f6 8628c34e6554d1c2ddec09a955f95031 @@ -30554,12 +34102,16 @@ 864aefae616e7559b880883883aae5b4 864c61f5142cf7499ef273d777704bed 864df149d409eb6c9837686ac58ed9e7 +864e725f4a1920c1bfc49d5f60e8d0a0 864f48d6e7fb53619cdb8a4e168f04ed 864fc6400d160a8d7f0aa76b2a530c97 8651cdb61c80146ce0da7133ebe58a79 8653c88ac7fafc4a98d53342b447b436 865485c3753da5f5e343d2c434ae327c 8657417b73e9f68e902aa24bba5ad4ab +865917c4b55b33a40a01d9c50b671c42 +8659fa5656937a44690b14ed0a70e37d +865a1492dd64e146f15b73713a0e5fb5 865a8e63843778222352940f78118d79 865aedc3ab5c9c08d7fbea4c299f631b 865bea65e02435c20e2e9c24d547464f @@ -30573,6 +34125,7 @@ 866016d107c527e5d2340197e0a87400 866033e74fa5e001e1dc2e19ea447d24 86605c84cda89f5f0caf344f662fd5f4 +86610b2a6f9421a1e543fc90cd920245 86617aa0d426dfcaddbab206b7ce50c9 8661c55042b17df40b612b469f8515cb 866290876852e24b02eda568a509c0f2 @@ -30588,8 +34141,11 @@ 866af44aa737c1d01d728ed1e07b71db 866b1f697b1de6febac3760a93b55538 866bf0601da06e7790217f985de865e7 +866c5bcc78c5bcba643b6acc31e85715 +866ef015c4da74b658844606175f42b2 86714a6e9fa6e234507a40b5b8518e42 8671e9d3e06f946090bc32babdffd81b +86723e63943f4106020e7feea4d2e334 867241d55995f5f8f6e9ba7c30746a8a 867245882a7bc622cddb829476b353eb 867373f64a3e0c2173d96f71c6f7345b @@ -30600,17 +34156,20 @@ 8677029e3b5b66d5aaa16247effaa732 8677114fcc8cc04ae79df70e009a2d0c 8677ae53cf03c0dc854d0af7df2392bd +86785d78f4ede7d68b4af509dd04c274 8678f5d518ef186d09d3f2f953d37eb4 86791175f1f0b35397e7970c983ab6fa 867d15963600afff2a935ad6ff131ed1 867ecbbaafba24da6521f58915fb2786 867f306951ff19a13bd67ffee26f692a 867f335ca7342ccbefa6565c90b56439 +867f84d176697965174fec5f9856277f 86806709b1c6fa9120d728fa62b9e997 86807cd7c7ce3eda2396ae92198f94b0 8682824ae85e11498804fc2886916f2c 8683773ec6d5cedf35b59e37fe08c47f 8684166e9455e62f7e4ab4dbdc90bc30 +868512032ba487be61e60a916bc516be 8685225a98a511b94bf08b66d9babfd8 868670871a92491ca648f8bc95be5d9f 86869686dffbdb388d6378863cd4bbc2 @@ -30625,6 +34184,9 @@ 868dd5ed63fb84b7595ec7d853c52e54 869016219faa40dd2bdc3e1f0492fde3 86905bc173d86351d0f97b82ce101dbb +86921bd53d3b63c013dbc2a9a1af8f04 +86946cd5961af151cb3243273b3b8a21 +8694aaab54d03f7e3ff754270015f85e 86953c6267858d3058be32ce12c1fbec 8696b63815525d5a69640862cd99ab28 86984658a05591915fae12cd5c9c9674 @@ -30636,6 +34198,7 @@ 869e802db837fafbe6c44c33127a7593 86a04cef967331dbe3fcb5ea9f43e0d3 86a14cf69d98b0f8541980dfa5c5ae43 +86a17b135a9ac4053a304aa627edc8b3 86a5a3579153063c7f1222565fc1eea8 86a5e2c96eb45b21279accd536e5bba5 86a5ee49a9f5b225be891cbe56947825 @@ -30647,6 +34210,7 @@ 86b731d0f4a55150239cb917c8b0f5b9 86b7f91faba6a531c528fc48a0b5f703 86b9eb76fca4780377a1a72c9eacd9aa +86bb6ed0b3d2279d0880b869b627f6bc 86bbca058bad040c0e224d1bc3b804d2 86bc67d939898428b41be550193f5239 86bcf97d1698e813b63b40bab5d4ffcf @@ -30657,6 +34221,7 @@ 86c66b79798ea1595061e17e95ced7f9 86c6aadbd0d30f122e1e61ddc6da9b85 86c781af9d5b8ffd301b17f488fced64 +86c8a3a3a7fb9fd1149a5f6e0229e828 86cd7240e6d731ed1f5bd5513b143938 86cef8e413fd651f2e034aceb39e04b2 86cf1aafce2b7759e4c096fd805893d0 @@ -30674,10 +34239,12 @@ 86d69d48d65d559d57412c2ec1d3aa7b 86d719c682846e957b817ca3a8ac3e9f 86d8f20d84fa36f8dd842f3dce27323a +86d93118b619f3f1e43ae9cfc1500ca2 86dd8538c477b0e740f5ce50d489bc14 86ddcbd1f825dc93a1ea2f81acb49aa5 86dec86c4c9d67b2ffca5940d8f77c10 86e0bbf96da94f7e421ed65571724a6a +86e244c2ecff1e59c80126af66222f0f 86e3ea45e6cef4c1c290d20de3f2d7f0 86e4fbba2abf29d2503efe40cf738b5b 86ea279c68a7fc2450cfc3adba9df13b @@ -30719,10 +34286,12 @@ 871001dceb90f54f36a2df7f5e02789e 871047acf4aa7e822ed180084b77f5ac 8712028e568381475a8d520ede470629 +87125c44c0073e0ab5aa0d770d265af7 8713a8ec879cafca6e08a80748130245 87149c06242410439a2c43aea8e8aa64 8715ba0a1e01c0cc87429e7f820e451e 8716446aae72bbe4eb3b741975a08599 +8716e568a647f6b34175a77051480d77 8717de83eb2d1ce3b0aac12f65017143 8719c41538e07102d29f931e46cbb2af 8719fea29173fa9710aa2d2f97169380 @@ -30753,9 +34322,13 @@ 87314318ce57ed8a0079607ae9ed392e 87315ad2cd6b94feec72109820842099 8731d1423572ca481a8b4c73a2151622 +873261255259596b2127b91dbf6723f1 8732ea3ecc419ae73fe072088d566baf +87338c556a71a8b100f3b51d5c0aeff2 8735059ea5d0abc9b3c7a946a55448ff +873517bfe34d73bd8d9b909db25ec74f 8735455dc5bb03fbce14fab63c9352be +873604b88aa2779b5e57cdd9a59aadba 87375a83b3399bd947e8effe589a8e47 8737a0f9d3d2375c058288417796d956 87395129238266bcf5d53163b8eb8617 @@ -30764,6 +34337,7 @@ 873a10366fd532b4576681ddd8b03080 873bb7f85eb40852ce1ddbde4554ff16 873c2bdcd7122224ee88d6f0ea9b61e5 +873c3cafd54278022451219c35ad383b 873ca002042a50f1c110fd06e1ae575e 873d482930d4cc8e9c9f6f29395a5c05 873d51b4ac7a4e3248d8f18c6b93f797 @@ -30777,8 +34351,11 @@ 8745904f602bc1034904265bf237327d 8745d85340ab2f387e16216bf850be69 874609de4ee126c73c404fc7cb733407 +874aab4baf9120d65a0cd91d3cf21f67 874bb3385e1bdd5b9909d8aa98683d4a 874cc597b327db2bc8ea8a3656fcdf40 +874cfc2d7f6f6d5753f6b776c58c6779 +874ead610849da562ec3e3bd5fa7c82e 87515d569a3398cb3e0aa3e49378c81f 875294ab8b9a4a5ae7a472e91f109cfa 87538ff4afb88fd75b3bbca68dcc3783 @@ -30786,6 +34363,7 @@ 87540d47359b87a6880dcd6c2a016695 8754b87e9ddfa4935a35706c475bacbe 8755b9474d5be14f215935fa9f3e2d38 +8756f439c3e51b5bd0fbc26639639495 8756fbc72ec26d85988f321af3646685 8757f421ecfe5d2e4b517ff5f394846c 8758fea7605596edbc63a27a1d136266 @@ -30803,20 +34381,27 @@ 8768a7db17446534e74be49ad25b61b7 8769c525826b9d94c8b99afa9c71e251 876a8958123b315712d6d4b51e9b63cb +876b903efb38921c7290fd4416a7fb3f +876bc1a7c944c52725324e148399a853 876c22bc6f59499d428d87a9f5aa1f02 +876c7011ed0fccf38d65b1dd7917a441 876c7890fec4adba77a568b7850b1738 876cad519699c860fc5d036f8529294d 876d4f1663fa370dd34fb653b070583f +876ee5a27743685f5b707113efebae4b 876ef8037992f34de20e06a6bb9a3a90 +876f820b1d807d996ef8dd6228c53c4e 87709115c86d7b3417c9ae29a8f5029f 87719ac255d85e9ed535f73e4cc1ac25 877274a90d34b70274cec078def7908f 877400486e4e75d2e901dc5b6528fdec 877579c6d30d077edfbd2bd05cb98b27 8775d36bd44f5ab3d21e17454fc6c7b5 +8777a5008fe38f04d8c28c23d71f5137 87790095c98943b301264166fd15215e 877acf21d1a43961c2b0d3ea3ac56769 877b08e05a647c0cb3201721ba4d7218 +877b5154cc39f167ede7ec18907ae603 877bed8b17bb40aa25431287e1df5cef 877c132e06f3481ba23296b3a5a48e21 877ccb0b9624e3c90a7621ae83982ceb @@ -30824,10 +34409,12 @@ 877da0e2b8992dad52f318f0fbc51018 877e57b33a99483820c96b788fd9ede8 8780b29f10787a6452de38e603eaafa4 +87820a9732bb3bbc996beba7a64f9372 87826fcb42641cd269dc2984a53fabc6 878359574f7b3d4726a59ff2bec6d908 8784a110d3a5ea6077ae6298989be163 8784fc7b4b4aaaa585413e00a613329d +8785c63bfa27feb28167bde3d6064ced 8785f5aa2a2a3e97a8a139eebcb1276f 8786b69c62fc5b89fe463b47302683b8 8787b3c49142c4b76d8d07623647cbae @@ -30840,12 +34427,17 @@ 878c448a5ab2000ad4169c968c6eeebf 878caa353a323fc18ff80556a2bbd355 878e4fd666915d7692a56e3dfb769020 +878ee5192172688c87595c31bfe650b1 878ee861fb120e58388cbddbb5cda63f +878fdb286f21957793b7cd07375882a4 87906097355d402b3c223a6b6fe38913 87917525f38c049eb4ae3fdcee2d0cf8 +8792bd9ff519b891048c336792d2ab7c 8792f932d613bba9603ea351b242d9ed 87932aa34ea39cf82f67d61a499f34fa 87934d725d0fe38cf68052c06b352b96 +87962eea460f90fbfa8c937a59deaf37 +8796e6f3c09a8fdd847041a85d6da477 87982ce4a47617d32980bda4705f0e50 8799083d380aa04b09c037756d2f7752 879bf74226211486857e3f3951bf5a39 @@ -30881,10 +34473,12 @@ 87b4e89cdec1c375895c6acae4dafd27 87b5623a5765bd944148b644660a809b 87b5e8a7e600ef06909863aad5818546 +87b618d3761b8320c4c5693cc3e6e355 87b6476f9133d30f6fbd01f2cb57d6af 87b758f0219e6798e4d6247dee2db264 87b80e49ed626869e39e1946d1b9ce9f 87b929e4f18faa6f898feaacac6cc3ab +87b97abc7ba92b9792488a35f30f17d8 87bae3847c5fdd912d02b40fa76587cc 87bb3434379553a8f15e1f59cafdc374 87bb8f096846c7693936f150cea04c35 @@ -30914,9 +34508,11 @@ 87d09791fa06a6d28c4a1b88ac003385 87d0afcaf2ff06435dabe43cfb1d0926 87d143c0ea5db8b53ce55a2b91e5245b +87d2b588bed054fe19e4b8596da4c481 87d5887e50fe7a72b435ccaf66ef936e 87d5cb294625696697e2c2bd4fb98f30 87d5f3314f99e37c70f7c12a44557cd4 +87d8b06d2ee68c92079ae8955d5704e9 87d8db9c12bd47776bf14872f0f73c7e 87d9648a2374ee229cb9ac058127e12a 87d9bd279f4b8abfa597f502ea86197b @@ -30924,6 +34520,7 @@ 87dbb5c1d8aac961a8e05628ebefcb1a 87dc050b05977c0aa55b7fdd2a495237 87dca5d6b3609a32d553c8b5bcbcaca4 +87dde6da635daba7e0a68b2bb9a296bb 87dfbf758dfb9a6191f8e46978492663 87e05ceda3d199ea376914296dd3ffdc 87e1ae3d3d2ecd20c87bad3a5900c234 @@ -30937,6 +34534,7 @@ 87e629a3ce4e8080e538bf36705cb595 87e62ae02742b3991775ba5723e0fdbd 87e7c562e0f3dd53048fc07323e38cf6 +87e7decf41eed97f8be83a4caa701f87 87e7eed2646bf9f903650ac40385969f 87e8625178bb4d6c32750fd8127b2c8f 87e8bcabdea8732bb533079b8603c1f8 @@ -30952,6 +34550,7 @@ 87f8b35ec1eeacac3b59cd458967efa5 87f901fcbd0e3a30633f119f35584f05 87f9e0c79bc510e7b44e1533fb49b66e +87f9e3cd7a848a7d728f8bcee53b9bc7 87fb48f7daaecbe2091d02b5bf818450 87fbff7df49577d0dc6346159f2c48e4 87fcebd437ae57defbc2161cf0402052 @@ -30968,6 +34567,7 @@ 880aaebab613db63032f6d0fb7b5eae8 880ad32f0f95eecd94960f4339482026 880b390e7ca81269661e282b5aeb487a +880b7ae2865077c5fffb7167be1f22c1 880c0fd0e344c7b51231be27ebed29de 880cd455eb77e75a2e22db323e0fc3b6 880d3e089035fca27de7934badfe4aaa @@ -31001,12 +34601,15 @@ 88254e668f0718f5c334caa99fa2d5fa 882579bcaa6089c28be01e453fb5ed19 8825dc29df68b90b40aa584fbe337bc7 +8825fc53a894b7d60976389adb995b99 8826007a3ff852f1d65643e352db371b +8826050a97b391cc39d6a19dca5a8b67 8826a29778d2e2d503f0e14a2e16b5f6 8828f062c209668797fb239ff8b47181 882a14545715f6f0e1441b68f8a819ce 882a3e3af37755bbf8d1b2be8bbf8b6e 882b952f24a599c88fe98dd2dd1a5970 +882c5214d5475bc6eab2117e05739895 882cc7ffc134d143f3bb798f65a1c2dc 882e043bae8045cd973373105eb23bda 882e55d781f4bffb29da5ff4fe345a4b @@ -31023,6 +34626,7 @@ 8836ef1ab01d31c060738f8b7813ceca 8837983a26c4e0857d77f48b30cdaba3 883a9254f042493738320ef02ff4e10d +883ba0470ee57a445bc8de64bc3ade12 883cab59bc3a7dc2af20f7b7787bcb0e 883cd1160648aa06b2db53f5128e041e 883e65b36803f022b7bb1c7e70258422 @@ -31042,6 +34646,8 @@ 884c35e791f1aabed328d72676026f21 884c41332ac82dec8fe5ecbba30a420a 884ed1fab3779a8b27a5645ad8a0dfc5 +884f362c8560ef892a70a0d5f58f8732 +884f7ad35449e7706a39ba7533e04014 884fe83807d7eee778c1e3db6ea858b2 884ffb1cab822a4c8492db48a13f19d9 88501b78a7ad91f83fec658c8308d04d @@ -31068,9 +34674,11 @@ 8868fc9bf77b6f544f395c843aabc7a4 886908697a815be0e07752ad69b8ca0f 886a081fd80e2abfa901d3ca7c7a4d9f +886a20f27a487f975b333a62fbfe06cb 886a9cbe56ee676c2dbf41d1dee4d32f 886b0fbadbe374623d2e8f156ddc15c9 886c76b2d72dd7c43355bbe20d4a9ade +886cc6de0c4a0db2d90022fc27b12bfc 886cfa45a3cda56508f4bc2eddd741ea 886d08374f97a48df6069667eb75c80d 886dd34b8eae4009513c5612c2ea3048 @@ -31089,6 +34697,7 @@ 887adc503d49f8acf29d04523b2bea2e 887bd0b93b0abd116f9ff5892fa8324f 887cde23cdddc50376a35da4136df6b7 +887d8ee3e71c892628e32d4fffbdadd4 887e38057089c1c18e692384d9dd9d40 887f9b24ae27a3747bd6dd3363cd1207 888122b7b2a72e83079262ba1e598ac2 @@ -31096,18 +34705,22 @@ 8882dfcd3ebab14e5c7ee62bde2a1d6a 8882ea5ec89b7ed77ffdda851f7cbaa7 8883409243c91b0b3ef658f4245171ef +888395cd5074d1a0114c4e28a4ad4ebb 8883b915e8336d32cd6bfeb73372c59a 8883f17b8250625064d47f4cf9bc09a9 88878e5063c6c5f63c7a644a6e2f69dd +88882431c7b975057de5a7ec9a63317e 8889b70297f3df737101b0de0b9bc75e 888a47422e5b5a079b4e3e50e0fe087c 888bc2b18c285013cc9002211808a190 +888bdcfcd9b9cdcab143a940e7073b29 888e65693b62bae78b8a03905e31db9a 888eb1ed101821da79ecaad04291347c 888ebf8ba7d236bb235cc42cff62e260 88905520e38773b045554f74b0d3a3b5 8890c391f00ab1b75eefcea166445e3b 889133824974bf23a627da05a0bf56ac +889191e277d380e5f8bc86c51145ee5c 8892c34af0c46b50333a747715cef5e4 8892dfa749668f81c3f90c78b5beb6e5 889302cab72b625a6c3a9c4667699d1d @@ -31131,18 +34744,23 @@ 889e5828a79b3ae48c06e9321d561c1a 889ef1e03c9a257190e30603d44ddecb 88a066796deec15f71533307112a3c2d +88a121ad2befcf66693a2f71ba0b8596 88a1ce109ff0e82c900ae487bb9aa8ff 88a445d0b67b1814e2756a877dc4aaed 88a47b2de2ba6a295bb40d8ba4188856 +88a55c9799367fbea4e267ed06bfb4d8 88a57591673154dccf1511fe498b6419 88a5e62391feb4349b07e9592f8887be +88a6bdcb390e725abb9108098af46e2a 88a6d98bc8d93316118890d5dd083d68 88ab703ccbd256b9bcab031722612404 88abc68280a73d562556a21915019a8a 88acd7003a58bb1261a104a2b955ccc0 +88ae177935b61c2a72c13b374668246a 88ae302731da2f1257ff0504b4826aa1 88ae4f0b2b868c551a1bdd7e4fc3d331 88af338a341853c75b40eb48e76f68fd +88afc36c7188945695fb8c48359f21c8 88b2a354f23b65a65c87476e47cc5f09 88b2b892f9333e9a58074ff67980e23c 88b309d756f8ee6f7cd75e85d1db23f4 @@ -31159,10 +34777,12 @@ 88c0aa474ab8a9edc9cb39083bd0c42f 88c4199531fad78a97bb32fdba83352e 88c54a297d94a301ce9449ecb43dbb7c +88c674ab90edf1998b85cd5d47f8e73b 88c750e460146876bff17166c45ec5ae 88c7a699c9a540f6bc330398d63ce71b 88c99b04eee5e3f00dd1c3d39cab0715 88cb95f17fbd8c506aa4865ca45915f0 +88ccc491f08c8ac7ffc2c73c3de9a22b 88ccf23d5ae87bb032e25020d53a498f 88cf51535c95081acf538967c5280746 88cf8b7d748a24e63a83bbcfa785e067 @@ -31183,6 +34803,7 @@ 88e7e9098fa7c4b64ea5593950a77d92 88e9c1ff00d55e5ea95314fd1038df07 88e9f73de5dbbb96bfae22040fc9f5c8 +88eabbf3fa0748f078e0fdd52dcc33c8 88ec8091a8f985d0f8c026b6e51d7761 88ed80d7f0b14c39641b1c28a3f1538a 88ed9a579cd578af80172c15f10049da @@ -31191,6 +34812,7 @@ 88f28cbd2ea707c6a42c17a65e674b8a 88f38f4992960ea60b45f7b5011b54e7 88f4316a8a5b2194b4bee7eddf55ac40 +88f57746dd44e77839dabed0a9c062e8 88f66e5d4b4ee8f2ada07af1aef35acb 88f6c61382788ed3d443fdfd7cd7ef06 88f6e2161c66674b414d60b0de4a4e7c @@ -31234,10 +34856,12 @@ 89143aabe005f474278ff736e93ea5e3 8914bab1623c526803e853a9f990d394 89157369cd390483f1e284edf1105b18 +89192140fc8de1103679339b2a0530cf 891994d21f66fb8d2567169e5830d078 891c8a0b0b5eb333a64e6e1f49391957 891ea05219b8c55e7f32d0c73b28ddf6 8920030b0a41c34e3801851e34c5be20 +8920ab433b265bb03293973e192b972c 89224a4758e97ecd119431fc78cf3c4a 89224b8d354ce6de910d973e90594448 8922748bce91fe214b6ccce57f2e6643 @@ -31256,6 +34880,7 @@ 892f8f2dd1b23cb695d739b7e03b2bf9 89304ef7cfe8781bbba68ec18dee042e 89309ec0f1e6531ff832f4358fcec008 +8931ffd8b1894d8bd46b1e89f8f7f631 89324fdaa12bf9d76c4e7915fe39fd95 89326e1d1004941dacc2a00b74b31ffd 8933695c8a984739ef9d7fc5409444f1 @@ -31266,6 +34891,7 @@ 893754c0fe1b30033103c3630a3fcb50 89379df408a8d1c9c189b18c6af64738 89383d8ce14706d2a857f82442bb4b7f +893b1f03cc1c10674973e3f10b5475fd 893cfebd1e20314126ad9f5c0536e27b 893d823656327d8bd7dbfbcfa1c14a71 8940230479a1a957693ea8980e46fae4 @@ -31275,11 +34901,13 @@ 89456516276cba595d7d43bc1bd1ad8f 8945e049337dfb4f375de77c84ca9095 89466348a1d8d9db84d08faadf1d3320 +8946bc9b89d3716845fbc528683c55a4 8946eef725eea6e9dbb251835e7902d6 89475674c1cec8d84362745dd6254f35 89479a895d07e9fc801b45f934b95ecd 894925bb03f5a369811844016904951b 894c10088d3ff5c406ca9e695d2bf00f +894c6bc7bc813518d28d6b22d4c2b833 894c882ffd74fed80da9690a7abf4e90 894ce878f4a36c41880b92d5d7e2bca0 894dbf367e959678438e601ea32c9003 @@ -31287,6 +34915,7 @@ 8950ae6e8a4c16250cb5a0e6417bea22 89517304ccb0e7085dd1a1647418b8d0 895231c8282f4177f379bebca640265c +8952f8ffee24e667979f5018b96ddb15 8953074cd8f5c088bbbf877dcb9cf0be 8954d96c9da27703f0b4e437b3f0017d 895649db5a2ecdea98d975f1d8d7c9e8 @@ -31316,11 +34945,13 @@ 896e98ab0059d6cd5f1351498cd0dde9 896ef3c7fae9df7a078aa9cffd68f033 896f253ec444c054a66fdb68616c265c +896fb71d090c87b309985bd6b807e894 8970006cfa5871357597c08fa7c55aa6 8970477ca52fed0cbd0322ccb6e6be75 8970c0f35c1206338253ba2f85144172 89739544ca7f60d32f67d63733ec4de6 8973c2dcfd0b5232b8165a3da0bd78d9 +89743049611320d156da5ef858dc517d 8976d7613bfac7a7b4a68c16e98f3151 8979af22ac8a73ba9edfc1d188f3b5fd 897a2b8419ce668bcf114765b69ac8a3 @@ -31333,6 +34964,7 @@ 897efe230b2b9dc41ae7cdafa7a91743 898129d23286a0571ea81a638390ddff 8982066f06b0e98140dd23b39afbb653 +898269f9a961e17b33b4a3f3ebe8e324 8983201eec34aed686400d085ae1ef6c 898438d5efe154b5f09cb2e82afb0c89 8985e3bee296d49e662d9c5e36fdd8af @@ -31369,14 +35001,18 @@ 89a42a9bfc77627b47f9bc3b7507c486 89a44888e6c4dc32b7200b86159de3e3 89a603e8f4328f2f18a4c815fef49e0e +89a710a1e1e6eb44b7a28ba25c5923be 89a7d09a260428d9371c4a52eeeacd7d 89a95152515001ad047d336ddf775fd0 89aa82c940bbfc69af8b50be896ef30e +89aaaca3f0b17df634730cd0b1b59cae 89aac74100a04d77dbf84f6bdab01724 89acc66672e86b62a4c92832eeef6138 +89ad75cc25db41b84aad573b445ad204 89ae59bd87dca9e9c0d1fe584351b677 89aea5fec4facc69fb6587fabba9001e 89aeac908a84fa72d17a071f5b61e552 +89b0eb57b63e36cc7b4a8abe2c6ba687 89b125046adbbef9f35f1d45cf7fb970 89b13d57a72a4bd93bcb01873dfd263e 89b2052836dc68599eb90e8e3d701e89 @@ -31387,15 +35023,19 @@ 89b5e72044b140011138ee001e4769f8 89b6b0884065833b2957063c8d337e2b 89b6b862765c1d29f8fb04eaf9c659ea +89b733f108e8c72cc6de9a7ae9cb45ab 89b82a5ebc5d44de2bfab8782a1fc24d 89b987af9e54357d6a65bf3b0f26547b 89ba4ef6653e0f56b50c61c7ac3fa624 89bb5dac30fa114ac96b764eb62f1262 89be5c65b25724a96c66cb0d0d5ba1b2 89bf345bd8a04f1a10a39c6c09cadc15 +89c0cc8db34c7e6bab7e015d8c39c8e8 89c12f32d38384a3f23e17a2a295f374 +89c17555138852a7a765444339f19e07 89c27806c7a69b987fb5d469658de7f3 89c2dcc88141c98d3086fa778a13e04a +89c2e04730f5437777ff3685d00ac406 89c5660783399e48904fdc87ca9ac1ae 89c589e5e956047c10f74f515dea3d1a 89c5f0b4d7587e038f6fd0b32b9a2482 @@ -31422,14 +35062,19 @@ 89d9d40ef3898164ae65384d4fe63094 89da1dfc3a5b8e447b9b940f2f5a9365 89dbc7f8034e88ad214974c3967aa94e +89dbd7a995a03951e85f43e7164702f5 89dca21d91e336b81c009227138ecb43 89dd2d2351ff7bbdd92226d121d8c7ca 89dd354844113bf8544beeb5eb72abf4 89dda8eef07ffd29633e7c043a4178f5 89df624935561af177dc24f022924237 +89dfdb168844eafe40b159a7650715d8 89e0f8f40ddb4053db49726ef4d7d805 89e27446774c4de4ee7dc50a5e842e57 +89e278008f9ba108b2b4af1e368099d3 +89e2a18703a003802257e5ef4a93ddf5 89e2f500bf65fb5447062d9fbaf9b01c +89e3f574d079fb6c26cf40a6b51832ff 89e47f87b801ea42e452ec4e4362986e 89e4cfafae505da5bfc19b2f8a0d64ba 89e65319c94e9b4c7ba67e8ae9ddad91 @@ -31443,6 +35088,7 @@ 89f165bb3f7bc2daba154c3d0835c960 89f1983dfaba17a2fad564a2773e3cb1 89f4e90b4ee68090a881f04a32d4b6c1 +89f52576a44be0e38f10957b3675c9e1 89f5d527f0648002dd3ab78755c3e547 89f5f14ca5e52214bd284d7957c865ab 89f602b273be7f953519504341434b5c @@ -31463,6 +35109,7 @@ 8a057ca2ce5b2075e936c111f4dc9638 8a06b21d69f64412ab271e17ebc6a093 8a06b801c755b30c6f945ed13ca2dddf +8a0bd082e44ff6278022bddfac151e2b 8a0bdfc6406a1a3a84d62da2a7e962f1 8a0c21a83267c397265405f1aff167fe 8a11991893a319fe2c40ee7a18954e36 @@ -31471,6 +35118,7 @@ 8a1358e578dc7e76a93ceddfe71adefd 8a1681c9de9051083ec611468bd27c71 8a16dd9e0edf02a85a9644d81e8194f3 +8a16df3b19662e28eeba4000c42cc5bc 8a1848d4a03a7df5b64ccfee0152caa9 8a18798ae49db32fe2af77bf198d6ca1 8a19ec97333f9f8319c46b03b1ea6f63 @@ -31483,6 +35131,8 @@ 8a20da216a75b08d3e9a973ba6eb7dfe 8a20ef67983ea86a0f3144bf53f648e1 8a229380dc740277371d9ed19d3fe891 +8a238c8c4af7d55733c4deac91b97f87 +8a242c9827914cf87e154b16b9b96457 8a25d1cfd118b6455fd2ca611f57f258 8a261e11651154bc60630d6728fa22c3 8a27084ad1f32a1390ba3a3881139283 @@ -31505,6 +35155,7 @@ 8a3855bcccf595fd772ed02f42d421aa 8a39ee05b5e1429d2b8049244d49e11b 8a39fa1ebbce83b7ac06cb535e0acb22 +8a3a4ba6a40a9d73d54209290a68c09b 8a3bf98af37e99d5415afa65e329b216 8a3c8b8012998c1f78023722b8cf5c93 8a3ca5a28907003052491f9e06c46d6a @@ -31514,13 +35165,16 @@ 8a40994fcd02f3a6c52bc0365490c55d 8a41bf38597848cef0154ae05f301de7 8a4213fb071d6ed50fa93d99b0f0ae11 +8a4283f1324f2be147b6fa398eefbb42 8a4303ffb45cf12f3b6e3f29f639c2bf 8a43f031777b364c9e6cacc7ecc04386 8a440b18afb1d68e291174ae9f6b0a83 8a4546b51392dbf5ba91f306d2a71aa8 +8a4693c8c20b2547bcb96f742acb4d49 8a4767b8fde1da7e5356d86597bff5fb 8a4a1712278fe1909f2685b7306f2024 8a4a231f34cc02e85d1d3d786a54b678 +8a4bec28e6599afd0727ae59662e373d 8a4cf8bab856751662865d342be5b172 8a4e1a0905521e188c35ae940b1e7516 8a4e21498812aaad165f5dfd4e2a78be @@ -31538,11 +35192,14 @@ 8a5b44a79d22b5b4c36f055bf6064c53 8a5bea4572e5fdb0fe6721f13f47cbda 8a5c2ebb89c4ed04f1979fb0ae95d644 +8a5d871cae82cf1f6484d463da064c8d 8a61aa2925c1e0dbbc2f951d564640c7 8a61ae4abfadac1f030aa9f768ae7893 8a6465654a34b8072263f1d741a0e5ba +8a646d7fb2726b4d3cef4cad1964b852 8a64f0584ecad5b98daba1fe66145838 8a6572cdb796f012f408e7238af6083a +8a6584f9c3b93cf25a97d7bb4c259ff3 8a65e0c13294ea8f32aec0c1bc6febd5 8a667d6e92d9542e4cb69cc5b5bbc9e7 8a6763ee94162e997fc8d0905c3959a8 @@ -31565,6 +35222,7 @@ 8a78c60faee44eaabe2a95a2d4bc0e26 8a799cbd54e4c0ce81d39f31033250d6 8a79f3bb3db3d4a3fe0a0e36841d45b6 +8a7a3b141d533d82b92524ab26c2bf29 8a7a6d5aea9e88b8f5af6aede4236998 8a7af7b1770df68688a073da8ec7aa82 8a7b452c574b1c6f0084f0fc3e7ddd80 @@ -31575,7 +35233,9 @@ 8a81fc81e73e5b2cb1da142a9a614fb8 8a825502e7cd4219f1b72f31396d74cc 8a8274aa85a0199534c3af5dd9b904e2 +8a8274fb30727e04ac20667b42521d50 8a82d58ee38ff55c67e75bf5d2b06960 +8a85bc0b769b916eb26b589522ab1124 8a863f3054d3c35d5d6dc46967b39b0d 8a86d850547f25f8209151009a176718 8a86e54a7741a53e8b145ee0cfa41b92 @@ -31590,8 +35250,10 @@ 8a947054b85a2ba47189d39cfaaa067d 8a965566a83a2bfc0c9779d86f2cff74 8a96bb224d324fd3d99eab204be84ddf +8a970402250d0f18ca617257f3e615d6 8a97557d881984f697b3d1aa6b42cc9a 8a97a656afecfc0a13065edb24e1e178 +8a9a58f47235b5d55c31fcf1592a94a6 8a9bb3c4adc73f18a6455590293b52cb 8a9c4ef47b28db66557561805605594e 8a9c7a325acb3bda8785fd2950d5dfc5 @@ -31644,11 +35306,15 @@ 8ac9579360b645adcb00c7a92809ccd9 8ac9ae4dc71aeeb9d1f6bd4b543862a2 8ac9e157c77fabaecf1bc541ac2fe2e5 +8aca89399d0bc0581b1a405dc5f6e97b 8acbaa434ab406715dd6a90944821030 8acbc8cc456de417792e7f8b1ebb6ece +8acbcacd651da5834a649564ecc396c1 8acc5ec7378bfd8cb109e7b1b41de5c8 +8acccec949e38d32cec9c12253dfbf5c 8acf975dc5c26883df5e0326226d1907 8ad08c608771950c875371e95359b8cb +8ad198a8e75acd20c8415f1053449daf 8ad2c1c24a774c2728437b452f9bf05e 8ad3cdfc3530dab4d923e223518d8d6c 8ad444a0d9a83b8bde16e777e7eac482 @@ -31662,6 +35328,7 @@ 8adb27e1b96a55fc68f1829e6acc9f81 8add65c8fd62359694355acf46f52cb8 8addb6d816c5fbab2645af75ef42c604 +8addf2d3a532f05e34accd07bc996eb4 8adf3cfecbe8691618ef5640040bd811 8adf4a4710627299ec3d28dbb0b016ec 8adfd12a35e9f24da17ed4c1ce922998 @@ -31688,12 +35355,14 @@ 8aed77e816ee58b8ee366841d1f1e686 8aeecab5aad55e90071c8d7acdd4cd4a 8aef22651d9494f4d4b9153e9732bf81 +8aef623b908333cacf1ce662538c0df4 8af06ca36e4fef637aaf29b0978a7f9c 8af1aefd2fb0fbf15bafe3a8b16aed05 8af1dd5cefecadc045b8acddbcf328c3 8af235481608387e49ead9488dd3a695 8af2f3ff365c8e032712cc2458308898 8af3421d4635154c146c255597068404 +8af39c31f31b53cc8e531dfa27dc2787 8af487d23e7ad5fc8a16fa4636d0def7 8af4dfed145ef20d7ea6f0a9056fdd8f 8af6b2e4ca0b0082536850169fdc3cd1 @@ -31707,6 +35376,7 @@ 8b00a90baf63330c5bfdf4d1fe65f8ef 8b02199db66313615775a64b44a0e8ce 8b040f77a0915260e94204409af0d664 +8b078ec5a3e17e848450156928838e58 8b081322045e8dcf8b8e263cfbd404ca 8b0865f637810638f8cd9c74d064c6e3 8b095a393af573a84a97d2026d14f340 @@ -31718,30 +35388,40 @@ 8b1231332933eee9a0a1e741ea03d276 8b142a0e6e001a1ff61394041bad1267 8b14eca75c0a20d85e91d8e2a1acc9e6 +8b14f7401654edda6fa20ef37da9c53c 8b16661f413bade555f2631c07fce1c4 8b1790b1a4d95d214f5196f3bca13a5f 8b18a9bdc76102a360c3cb9504703d55 8b1c140ae354a0f19a270d486dd485c6 +8b1c2890ed1b6d50341dd7f4dc61550b 8b1dd70e7c1c75c7720cfcf013b94a83 8b1e823bdaf15160a10927585c734a03 8b1ed49fb79a829806dc160ae4cbba62 8b229943e61e0048403d8a478416cd33 8b233f4a0d77ab5dc6da0d38a543c02b 8b25026dbcba054ba17ba165c4bd5a9f +8b25545dcc2686a01f32f124eca3d254 8b257f6542339438be1d22e582745696 8b25ea95888f13a0c4c2aa134cb7b91d 8b260e0d78c7d589e6978af3fbcad711 +8b2789426496a02947882e245a7e30b8 +8b2feba5ca0377256966499ad22a6589 8b3017b65280b326b6c5323fe5a1aead 8b30fb6ef9a057abf0e0054c0e453a2a 8b32e4322403693d3ba9976a284687f9 8b33703b9b4144cf814f3ece4de14f47 +8b33edfbe02369e59ac51c8079f59d73 +8b3748a8ea7dcea0000dcba711614b63 8b37ff93d2cd5faac87d5122d4798c13 8b3850d0e171586160b1a4a18b3cb0c5 8b39e381d3e16c4815bd80fda976ad7f +8b3a33870d1ef4677f0ec27baf42cb6f +8b3afbe6e4b3606c278723b4f25ebb76 8b3b7052cd530dee03f1133c5871453f 8b3cb4988aaaafc0ff6a6490bb7a6b4f 8b3ce45af2a781d373446536e8aa8468 8b3d2e9282ca87a8796281708365aafe +8b3d59f4ecc96bd0aaa4fc0053e471f4 8b3e690a1e1cd52ad2bfa79d84c963ad 8b416b22854a40d91ec5735cb11d55c1 8b418059afa7b2bdcc560aef94d7b199 @@ -31755,9 +35435,12 @@ 8b483b47c9d08cec5c1ce1413fe58f2b 8b4a0533b673290fbb8d7b0b0fd8c85d 8b4cce257592e3642c7b870aa73193ee +8b4ceb56ac1d1d2237620e519caae1d2 +8b4d75995367fcf630910819b7e85a61 8b4db8107daeb777ab2b39209c47f4ec 8b4f86679ed047d9c8627b4ddc4a851f 8b4f9c67d9f40dda1aff5656e2999409 +8b4fdb36f4533cc7966e8c9472e4d188 8b4fdc227d58d984e27d41d25e53d93b 8b5281b4f14d28ee964ebbf8d0276ea0 8b52c4d0ec972b72048acafee5994c3e @@ -31769,6 +35452,7 @@ 8b57fda9236d1d399ab7223d3831abc9 8b58b9f8f30bab60277cf1dd5b204264 8b59a6638e98e9c3b638f7483941212c +8b5abfc4d9076aeb22719bfa80a823c9 8b5c870399c4d683819f675382d2296f 8b5caac1fc15573ea354aa5db05e09db 8b5cb2af3dd0f9738640d0becb99fa3f @@ -31776,6 +35460,7 @@ 8b5e8367fbe95af71a3dae944be379f2 8b5ed3dc115ccb7dab209e24edb9ae3c 8b6025f49ffc841be6cc643038beffca +8b6125675e4f6f8495ff543c254c50d8 8b618d81ab210c369d850569b8e74530 8b61a0e6fdd49f7074b453632b8a978b 8b62684d624e6d5e5eb8b33b7ee3b0dd @@ -31791,6 +35476,7 @@ 8b6aa62c9d496f3f96415bc84398fb27 8b6b51d69238137b57d2940e1e0f4cb1 8b6be8a3777e232d46e067829b71884d +8b6c4cc25bfecf3365029f00c425ba62 8b6d952e6ef94c88213a35692ab90367 8b6eab8a40d7867d82218b58d576085a 8b6f0d429f34bdb035255246ff1979d3 @@ -31803,6 +35489,7 @@ 8b7477c363c6abb337a302b0450a3ca5 8b75325853d9e574e1cc7aeeebfffdd1 8b754d67b28c5f38dcee6a0166ab2a15 +8b7604ba276d1a8464bb0a1d3d6e6f68 8b7890c64b91146151f46910de582312 8b78b5beb791170ffe9f07353778cc1f 8b78f855d453f10b9e702c46ab0ef9ad @@ -31810,12 +35497,19 @@ 8b79df2f1ace1b47579707edaf370982 8b7bbb4414afe313c84749bec55017ee 8b7cc8af0cd71319bec1e25eee1ce114 +8b7d31902204bedb06d3f541ef439424 +8b7e6160dbc1f5e17bc68de105093f7c +8b7ef46d696cb2e3cfcdc881b714f942 8b7f772161adce6f7d40d4d25e03ef65 8b801427d14ef0b1e7c289eeee4e0567 +8b80657630f24c881469f7a489986a42 8b81ea923c0a024fd49b00a63df61ba6 +8b830682f650ce1c28671b73fd4cf5dc 8b84f22c487da719eb6b123c32c476f4 +8b85998bef78e92bfbf1a3f716c265cb 8b862dc598c7b3f4f1cc110760189cb6 8b864c714ef7a06c229abeabeb842ff1 +8b87e75da175c0ca98755f9ae4ff1111 8b88e35f20f6156a1f2b5f4dd5908345 8b89851f4543900ad81eec11fc1f700d 8b8a865a84ab9507fd7c25c0fe87324b @@ -31833,6 +35527,7 @@ 8b93f9483ad3b062178a21855ad44514 8b94ecb0a9965908f785dd968f489a82 8b95a036ac6577336f69b0a1c4f33ef8 +8b98d220643c6a323f8d3a6509fccf4f 8b98dd7d8a74a9d429e0628f098580e4 8b9b1e9969174a37cd885572b5ba3953 8b9ba04c4930a97ad35e78a55f9dd7dd @@ -31854,6 +35549,7 @@ 8ba4e8f6d64af72796e501984739425e 8ba4f5a9168eeace34e6f8ddadcf5f8b 8ba752a6248c90466f8c98b706153cd0 +8ba77e94d36d2f064414a5aefed04af2 8ba7dbafe9246694dea886bc2cadc79f 8baa86674dc3a3cb69e061b77aa22e86 8baad25b8b2eb8a4a6610795ce09b9d1 @@ -31862,6 +35558,7 @@ 8bac64659fa918bf14edb0007f501229 8baccace5279033717bb971bac37479d 8bad458e8f28bb8e35b805a93c8e105c +8badc30a4765c4719338e83cc1ac065a 8bae71ec346e14e082e51f852fa943c5 8baee2f82e6e7e1c2debee214f3a27f2 8baf46a23ba8ad68f9c869453304fc58 @@ -31878,6 +35575,7 @@ 8bb965578277c895a15b6be96886fcbe 8bb99938d0b2038c99d741143247edaa 8bb9a06bee364cfad34001d339ce217c +8bbaba064ac4dd9103d33336ed57a700 8bbb80d2db554e4b0a8d3335d0a7fcf4 8bbc024a1b59881eb0850ba6ac54aed6 8bbcadfb79be01a36badb667e5795df7 @@ -31888,7 +35586,9 @@ 8bc307d02c6b6384849e9c7f8f291562 8bc3af4ae8ad12c41c9a5ae2377cf1a5 8bc45ac782efd37dd0a3e88fcddd4fd1 +8bc59a757959ea5c95840efcb8299fb5 8bc6dff2ee45be0ee9d25a3608d37f9f +8bc85a9ecfed131743be9f6ba8858885 8bc873396bffc3119cdd5c3118adbbb7 8bc8951d08705e7709ff232cbbdcc6e8 8bc97afc5926fb7b867c7f2690ebb2e7 @@ -31903,6 +35603,7 @@ 8bcfdea1abec1d447a0b6562378fc86d 8bd2f4bc3cdfae147288fc62fd79e326 8bd2fd1a628b378177396c8ee1338c50 +8bd43fc15c557cb64c5ac64f75e35c71 8bd442202186375c8ed9707ce2cabc97 8bd4546cb622ffa2d0ee2c89944817c0 8bd5f2d4c1fdd734ea78aaa4c9d455c5 @@ -31913,6 +35614,7 @@ 8bdc23cfa1e06cb6a625bf8a12f53931 8bddf52da04bb08ae59f2dbe82cc91ee 8bde63c685384fa760218706ec974002 +8bdefd2f3788381124e45d31babaf926 8bdf5c8c2225c8fa9d3579b3ddee3670 8bdfa1a253f87113d129fb2eced5d2db 8be0e03d7c3b381cf8250c3d7932eacf @@ -31932,6 +35634,7 @@ 8bf043d3ced6f36c3bcfba409e2b5025 8bf05546826a31bfc5b787afb714e926 8bf221feb753d7848cc54ec57a490588 +8bf3a7c8560d163f6d0b24d447e50e70 8bf447c68597bda72f6aa00c39a9fed0 8bfd95ee070ca192a7d00c12bdaf31b5 8bfe04d81176b673fecd43689d944f6a @@ -31950,6 +35653,7 @@ 8c0696053a40112ff61b20be5efcd8d6 8c06aa1f8529cde1e5911b909387b201 8c07011c105c96187a9fb9005fd2e96b +8c07533471764420ad6c2450063b7772 8c08a401543e65699ff4da6c75b91cb4 8c09cdbd26bc740723b77c88c4bdab54 8c0b933e62ee0781777697c17c0d2053 @@ -31964,6 +35668,7 @@ 8c1824946aac4a85c3d5a37a6d26953b 8c1866fdb133730adb039d01226ec83e 8c18a84df9598992832677124ae87644 +8c1a7127e3deb1069e532810a90378f4 8c1c233218a0355ebccf71046c227ff9 8c1c41be252c5c8b0aa3b0f4b22813f8 8c1ca07e62767f802678c89ff9e4ac68 @@ -31985,11 +35690,13 @@ 8c2e241a7d9f6530481593bb6091132d 8c2ea48a155bdea73fb2e4c40c7a6d94 8c300579d12c19265e0915e5a2a87ed4 +8c33f6652acf356e76d3e24708a07bbc 8c340b97303d4dbb6cbe5cc38c744f0c 8c355b187218d356c1abdca8c5f422c4 8c361e1f316a0e869130f1b6f091d829 8c365a1a000f675abe33903cb52b121d 8c372c120067af373361860f3e39c031 +8c3750f1ca7ff50cdfa3a700dc6d91cb 8c37f3a968eb44d0f1ee4f63aacc6162 8c38dbe60a3bc1ef34511aed9d2147cf 8c39e248e28a907919d164255351433a @@ -32012,11 +35719,13 @@ 8c4c7c3de220c8a771d0421d583202a1 8c4c889b667bff44bb80a6ac50a12d8b 8c4d6a9a5002f55032be930937ba7dbb +8c4d953bcf3ddb42ebee393f85c30284 8c4de74bfd332349916c098580b75129 8c4e2ae8897cbfaeda46d9c05b32bc60 8c5006576fd56d2b36fe7b1b16e181b6 8c52e3950463af2503f20e1d72532d6d 8c539dfc1a8af564b584b85ad327f055 +8c55b0c845d6f8aff9766c6bb7888f0f 8c55cae88406fab87c222ba0291fcabf 8c57906b7afc82e5ed3c454634876586 8c57c5a412e874ab0b12e366e13f4196 @@ -32025,6 +35734,7 @@ 8c5ea4ac8a6bae5a8af9cdb9870cfb32 8c5f51e61c7da214d8333a7bb1b38b47 8c5fedad52dab554d40817deeba65d85 +8c60029174cba2fca83078e9d8c0fc5a 8c603eb06837d410d4456cc0faf739dc 8c618787f5492a2dea345a57ebb5aaa8 8c6381fe612ea6aa5152635341fe702f @@ -32054,6 +35764,8 @@ 8c7340b1a9d3bb4a8ee502ba336e9caf 8c74e8bade4e05950f1953270eb0cd1a 8c75c54e765907ce1f3c7d411d0cffe6 +8c769e5dc681785963c5549204ff2fb8 +8c771141997155a35a926977858270b7 8c7780ff7e5aad97f93433cf96044059 8c77bc3e4286ea7eeff04a09a1e8d825 8c78cf2ef0e6932049ec9a7845692f9a @@ -32063,23 +35775,29 @@ 8c7b147d5836d6594350effe134245a3 8c7c26861bb7174c6cceb03f33101e2e 8c7c34995c4df6ce090d449b8d883a31 +8c7c57d28d1b1ae84b2b036ef0602b58 8c7ce06515308de841f05df7d0e07808 8c7d853675fe71d60263e0e83e6d7a43 8c7da809b3989e69ebd9c216b9ccb7a9 8c7e97a2b8675d13b645b7abe5d3e4ee 8c7f308ff59f1ca494ef75916ac60fb3 8c7f91edc63e23016d8074b0fa6dd16f +8c7f97a30686d314806ab388f94e2d4c 8c800d27afa14fbe4e63608c50eb5798 8c813755ad8612a0343d88d26a2e7528 +8c815162a152daf20a803a692b5dd3e3 8c822c7b19b52878de44eff1b5627e3d 8c82a41900fbda7a96457ac1963b14ac 8c82a84fe17e48dc021fae28b6c21cb9 8c83bdcbe08195d61b0f3575a255f785 8c841bc835ab8be758467ddf88c8e5a6 8c862f008ca83de5c8b0dde4a21d5700 +8c86ddccd9d1e3dbbe402a84aaefa6f8 8c87ff6eb943e4723a9e80a28e40d3f0 8c89dbfba03abfa25a29236f0bf99d46 8c8a01ed31f111703b6021fb95d49243 +8c8d789b9a983a1ce2128cd0dcb34fac +8c8e637b201404233e4e1f7c2b7c4397 8c911b33fd0e7353c50a243d217a4220 8c91a7f930991b349cbbd223f026fae9 8c93954715236f748a3c4046f5d683c4 @@ -32092,11 +35810,13 @@ 8c9c2744a3617c558af1db20df4d59d7 8c9db74eff6ec9a7e9923b82b665005a 8c9e01460b393401a143be47ed19db81 +8c9e2e8e839cd27a922e8945172d239c 8c9e5749f65e3974f25425ae803aeb7d 8ca572303a2202c62943aa916198a912 8ca5bf91de725a3e0663c337e620a73c 8ca6eb1e480656d6f7165a7d732aa21b 8ca952ff5b5a9fad2bfe5f23f6e2fca1 +8ca9e0319f34dc40169f19279914191f 8cab6ecdbd3b5843b112b0837b991a57 8cabeceaf32f67936f216e2514df2ebd 8cac17409cf2057dc5b97f2969a9e24a @@ -32115,6 +35835,7 @@ 8cbe1dcfb1778f1cd9af93249fdd734b 8cc3866220048e7e44f610b8a60f52c5 8cc488605e7dd17b98941416d78ebb51 +8cc668a6f3750ae2f4c36ce38f39a2ea 8cc7aadc854640af86b052ad52468011 8cc838ef9f4daf2a66d5d6e64f8f3090 8cc880a20c3f1c1f0d87cda10cf1199d @@ -32124,6 +35845,7 @@ 8ccc21b43f6a856d0c592e3a52f13446 8ccc3d98d8976c053cf0d5399088d3a6 8ccd5c4f6bc14cd516d95a203a9a7cd1 +8ccdbe5ef951c75155d985932082107a 8cce0fe49239fbc91ad0371b8b0e52d0 8cce4b6e0b7ef9cdedac88bc8f15c70e 8ccf4557db0c0658f321a8a3a60da17d @@ -32152,6 +35874,7 @@ 8ce1a0d2100d307812bf390e53c372de 8ce4b4e88af3a22c7c9c5b01753e410a 8ce6e254a04bdcf5c196399fcf6444bf +8ce8b3b13500850b92c093b78b32ba8b 8ce9e977a2f5145f5d3ba1b1bab2c859 8cebb944b5daab5e5e56fa2a6e194532 8cebc5e028aac0e507e133da8ae83e1f @@ -32179,23 +35902,30 @@ 8d0609533abb0b68fac7f4bffaefadc1 8d075835a18d36e58685dbdc48c38ba9 8d0779c5d7f08572e84345e73b4c9dc9 +8d0843accbcb8358ebb7a158ade69f0f 8d09dce4cd60516615ffe7233e368164 +8d09e8370ec7b236ee6f8875154ffa64 8d0bfe92bd4582b1f8c5b6060519eeaa +8d0c2e692b4a88d284b3860f782b6eeb 8d0c5980cb7927e364a583c25dec7830 8d0d44c4baf15828f73da552be18d7da 8d0f2dc4e6cd3e2031d7bcdf312acfc6 +8d0f7f8c77a06da48c642bd8977ff9fc +8d10467792a13d9e4d1265562f77a35f 8d107d6684243f82eb437f2d5af1ffac 8d10e8cff24f4ca33a79586e7ff1626f 8d1195efdc95ec51819e7e5921bc7639 8d11f8e83a62044fc25a5bdca4872c96 8d12673af7a76f2a18216434de7e5217 8d141b5ad8b26d9fd2eb41cf8c6f19bd +8d144e20aa494ff58edae6b8e9a0a604 8d16084d93d4ee2d49a67465de840b44 8d1aa4665b5762dbe6b30cb526729b7a 8d1b0b2a4cc950f60a94d4ccfdc4f8ab 8d1c4fc5204b600d9ba25fc408d2412f 8d1d51a71c1195b0fc7da5caed8ba7ef 8d1dd59b538699ba61e5de1e4e009145 +8d1f4bf6a188bb98fc92f35051158506 8d1fcfaac59395212f322bd790b1f429 8d208ea370b796a08515b90e1d8333ba 8d22525479bab2da9d4063d5ff5a3a10 @@ -32215,16 +35945,20 @@ 8d3583e948e2ac463725f1287264124e 8d35a8a26385398e288db3c259d393b2 8d3609c232f621da53a7121d5ceae424 +8d36242993464ca5eb65484dd631d5cf 8d3752fc81a29e67154bd8605e859b57 8d37e821d2df6589b88ad04fc53bf6ea 8d3d3b68fe8400fa6f469f7a37894afb 8d3dcdfc13295d7c8d24f029979f324b 8d3ded933e0de47dae22597be7e72d05 +8d3fb540952bde46460153820a81d5bc 8d407ebaf20a150a4e9dba86280f4e09 +8d43ad612f8d3f36ec65490d4edee3df 8d4492a139b5138739b1cf20a800f294 8d475b590ab51ac4f1fb7a7cb5475c8e 8d47dbe8cc466e5c476b0a6cced8a75d 8d482c21857c39a10f235f20567374b5 +8d4a1f0a2fe257a2f0f2688b0bd4f6a0 8d4a31d9463fe036915e0b1e9e19d024 8d4b90f6839d7871fb20ac6c875eabdd 8d4bad225c98b4d19f03c23f13b40aa9 @@ -32236,6 +35970,7 @@ 8d5035c698acbc065ec2425a07a37fa2 8d5076ebf7c6461a894fd9bc3266a3ba 8d53402075dcfdaabf0bb48bccf39888 +8d53a697bdcf9fccd4ae705ed2ebd83e 8d5496a74c59b347c391bc4ab09ba2fa 8d567c13a05e682ce74e7162f6e16e2c 8d56c206aa1fdb3ff111098986bd10b6 @@ -32254,6 +35989,9 @@ 8d6b7100b78085754dfc0d330b235993 8d6ba09b1afc2c07120d7055db1a014b 8d6c8b8e7d9812acd32957d174d99e70 +8d6c8d4f6d762fd15b0f64e254085e0a +8d6c955fa7bc8dbe62fc358ae695b018 +8d6cc30a09130e3d2d9581136d9a7845 8d6e90ab0b54ad50b236b6d88bf6f869 8d6fed3cec1e3b1cae4d536258be32ea 8d71b726c74e8112a3b7704e39847f18 @@ -32268,6 +36006,7 @@ 8d7c4ad83d47386360971a7bed959cb1 8d7c4c1b3e92326b2b7987e818e8bfb8 8d7d837da0dd5bca172a6e04946ce705 +8d7e4fb3731e4e8c2e93d32d0993d7d3 8d7eecb6a1bcd76b4aa830f0af7565b2 8d7eefc9e8b07d058a344923ebb20f61 8d7f3a5c0bc7882a7d033dbb7d7c3c2f @@ -32296,6 +36035,7 @@ 8d989c15d102a1eb228202b311c2a970 8d989de213791633f03f7c0dd708f878 8d99109cc6f0940841b8850331b716af +8d997485cf0ebefc07fb189ce4ba45b3 8d99f6ffd30bac5e638ee885e1a3b64d 8d9bdc019db2da779aa0cd716624a764 8d9cac763fda46394f217e1e67c78d28 @@ -32313,14 +36053,17 @@ 8da67e1b4ba065403f42d3a06a4884ef 8da870b1d850914c18847e2a57e5b519 8da9e645d8d9f67113a4660021c707bb +8dab287bfdadc09c97e6c2a6763b853c 8dace63d0fa9ec5e594ce9dd4dec7b4d 8dad30767774ed9047fc1c666cf54929 8daebb7ae36bffc3f63c8736df0e34f8 8daf49dcd2be2f1798d036757d256bd2 +8db0169a6415fa139a9fc9cc7232e9cc 8db088ed3273daf7eb03d7b787bd690d 8db1fb856449c604207a23056aa1f5ba 8db225fef6ec7b30e2f658e9d1478b32 8db28be1fd5b9af6acb307883379a33f +8db529f46be7c755926cf83aa0f93701 8db54250cb1bc9f024435889ab582a71 8db55b67c0fc79a82bd3e53756559c89 8db567ad7bd3acc7e520dfe1a1943daa @@ -32329,7 +36072,9 @@ 8db7b76f63867a6469ae791b9f366788 8db7cf5abf17a0723b08d61ae14faeff 8db99161b6e3904c7b98fd3a080c7e16 +8dba4a18126e6a19a0d75b57e82e498a 8dbd9885fc2d30f1569aa87da9545af2 +8dbe161a814f25d2c9232d2c209f1043 8dbec8287723f891c3d548faf7c75a6e 8dc1388173deb626ac65e89f8a18e0fb 8dc2bd536230dbe0d6352d1c0e2c0958 @@ -32351,6 +36096,8 @@ 8dd83140bd6784a94b3c576deb878944 8dd87d392118bc113f4a4ead627c2e5a 8dd8f32a321d8ddafa560b146ce1aab4 +8dd97687058c4c380f787f603deb3cf6 +8dd9d308df7b846dadfe83e8b8858610 8ddf5712664c55962363c9e39d695a9c 8ddfdea4545adbc47aab93f1cd1036ed 8de19b2071b4336f1c89ffb1a610e518 @@ -32372,11 +36119,14 @@ 8df3242f7bc865014741de42701a9634 8df36c1c887c540968c8d050c82d9bdf 8df6db7ef7ccd6801cdc87b969a3b037 +8df72276b03fb62534f395923dfb2a7b 8df7835d9ab748416280451f45511fd8 8df7b50d27a770265b3663d2e95492cd 8df8f64e58f2f9477ab4a33aeb55d0e6 +8dfb8d3d9a86e3af07cea52352ca4415 8dfbc30d7184dffdfc118bf2df353859 8dfe24c1886ea3fd985b4a9dc347acb7 +8dff3c5b35e2c61f6ee75fa5c6d61fb0 8dff49000cd79d8f5b4f61e82a9c463d 8e00526b9f62e662bfa229c8aa1edaa6 8e00b586267fb4b08e0b1a22c0927c4c @@ -32390,8 +36140,10 @@ 8e07d08ee83eb6804955feca827c5813 8e07e76e7c0be71dcb6e08e8efe6c0d5 8e09bce76f0ceee85b02bc83373de821 +8e0bcef828b9e7d3274a1a89e0c8a8d3 8e0d126be6bb1fdac462f54505695fe4 8e0db35f2d3cc606e36eccb9f6495e17 +8e0e85016039bea8affd4e783b894672 8e0e8629e4b85cdea88da485c0862a38 8e0ee8082ecfa1449029dfb2a8f79189 8e0f1c82f8f921b2f1979e9c6a687a1c @@ -32406,6 +36158,7 @@ 8e1b02f0bda99bbfe5ab4bcc3c2a0314 8e1b69c1feb339d826cd4118acace6fd 8e1c596c88f9df3de33487bda03bd8f9 +8e1d52da9ca277861f74941f63218c5f 8e1d564cbc28187388c6e8054942237e 8e1da1a3bb697d92433bff919456594c 8e1df4012df4d58e614615323a3fc364 @@ -32419,6 +36172,7 @@ 8e2656d00faee931d979c442cc91e528 8e27f4534dce36719d07685c5405252d 8e290c60d20ce42f8594b18460319b80 +8e2a7945d4896daf67199cc6de25bbc3 8e2c28538bf91309de370b24e7317901 8e2cb06a8e0c05177f3c4b9a90ba8cac 8e2cc7ff5a527dd8ffc66f74649b429f @@ -32431,10 +36185,12 @@ 8e30d103bbd45f2cb961d86803d3d718 8e31d6658ed3f4330f545236a8e32734 8e32a982181d8f5d66725c351b835ce8 +8e379143733593c195d778dd9bfbd748 8e391cd14d74db7e56b6585f1331064b 8e398b43d19c961b600d9def195b620a 8e3aa245acabaf2fe0591d17b3b78fc8 8e3b9a0e60a956b2f817feab49ad1379 +8e3c8964fe093304cbe474da0c85fdfb 8e3d6003764c0e8b06600871fcf62a1a 8e3ee78d12491e7e628c9a7b853bfb3b 8e3fdb154f099c8e5b20e0117ed65346 @@ -32444,6 +36200,7 @@ 8e42379da0124be2742febd38433a3ed 8e4291d5f565a9a2ed049272e9625ef2 8e431e340de3d338e048635cfd6346e0 +8e43ac9e128bf872884de9db51a14dfe 8e4652b2314d5aaa7e022086174ae72e 8e473263a9b74e8c84da86443454ad14 8e4915f7ef5666a4e42cb34c9738da60 @@ -32470,11 +36227,15 @@ 8e6824c01d170a0f6896d5fe1302a9cd 8e6a5217f2351070f497df3b398a1246 8e6aac78581ba6bbc92b67364a4316b9 +8e6b37133256621532e45d577a58658f 8e6bf7e819cc60f6b55231d2ebdf7d41 8e6c56010ed02d9cd7e952bc2b77258f +8e6e6961baf9a2bd7afb2065eb309195 8e6ef594eef8098584d67f2da8e2c212 8e6fb197164fa0ff10aac5ca41eb8551 +8e705fb7d5412ae48665b8a6c3c3148d 8e709ce410a08f55b925ce55d46115eb +8e710a100123b2a07a81ee12616caa5b 8e712217e4834cd1f26e2dfd6f5b3850 8e7128db337743991b7921b00029a9a0 8e713a3d662514f46ed9a26274ccf059 @@ -32483,9 +36244,11 @@ 8e7465f8da30d177252dc9542e917fb3 8e75b2f389fcabfcf6e8bbefbd919241 8e75d74582f9db2b31678c47aa9bf16f +8e75fe5cb895dee5c70ca4569835c255 8e7656db001d4a39859615e87a50994d 8e7808e9f22e95b59edfc582554f9997 8e78fce6dab36f63cc3a5cde476f98fb +8e7925927db2c76ed24cff19d1a94b36 8e79d57f75b6e654da8f7920b3c5b4fc 8e7b01312ed54f6f7d3f2cbdfc582932 8e7ce8a4b1c2b6ac0f5e4ab3039102ca @@ -32519,18 +36282,24 @@ 8e9f8e56d7d54904587ac42819df026f 8ea292449440f637b14b3bb3a7d463e9 8ea30cbfbb0982cc1c4826eb9897c541 +8ea31c095fe41f014da4bd25097de6b9 8ea3d7813e21c03aa861c07178835c55 8ea5981ad80bdad121dbed253e4b4e17 8ea6336aee6dbd25e0eec48c86b1bbd0 8ea70044976072f057a4f9366ab37f2e +8ea7d9ca63d60549535f47baf1c79b84 8ea85fb45058312a5e5c7e4c7cb09028 8ea8e7b96d42f1c069bc57897fdb5358 +8ead343821ba01a2c061a2d3512838eb 8eadca9660c0d8c28494dc138bb19177 +8eae2832d9cf22b3b192ba569574f052 8eae485e8dfa384efe6d1a72777bd6ba +8eaea0c233a1f1d139da8beafe324aba 8eaf6852c44fbee4d5686bc31bdf03ef 8eb466259e0bb022df0cdfc93a62d72f 8eb5aa21250a12c49bef81fa39f8bf3e 8eb648c183d1344f31eff0b40cc4b704 +8eb67b12957b89070d193d32b76eec91 8eb759f96eeb888f925b9e993b6ba476 8eb78005fac72a7e816d3803aee41e00 8eb7f88211f18185bdc65b6874ff6c0e @@ -32548,11 +36317,13 @@ 8ec32ea72a76b68fc7db9800a8f17e30 8ec3f7806715044e5e07b288721bc2a1 8ec43e2ebea7eb4ba14dcc1a341b297a +8ec4e23a75e524e973a2c9e56112e4a7 8ec55942f8ba1fa7a7ccd30b36d75c87 8ec7f0675f56df7c099c6e89e465d41d 8ec9360bf774d333fa8c33b2f0a91095 8eca9a2c6cf73f9fff4e3d032feee377 8ecaaadafaa4f8f0f173cbde92a27b6a +8ecbefb402de17d105ecd14c8431d655 8ecd40f79535644a35979f8288b84a43 8ece52404cc724cda425f063de6c0f19 8ecf1a227fe6baf46218f5d0371e4778 @@ -32560,10 +36331,13 @@ 8ecf8119fd329a8dc0afff08c70752b2 8ed072d33439a06fc8feb53c21069595 8ed19df4b2ac7ecb3b27db41b7f30c3e +8ed2ceb5842e08dc3089756a97c5ac03 8ed2d02e31d2ca29c4102dd1cdfff17f 8ed6064e15f17889021635f676887248 +8ed6f5c020964b976ceba8f37bcda014 8ed7582a71f5e017c6f8a52ade39db8b 8ed8d462a869723ba32c791fee77f612 +8eda035a4ee5e424253af2f93759528b 8eda4f1ff0eade046cff1e8721972888 8eda5af05f34693b5421d4d9871f82b9 8eda661a128ac77658bcc009a035cc89 @@ -32576,12 +36350,14 @@ 8ede2e92a7aebb469b7df500713c7d6a 8edea6920583b7ec43f652183b0ee8b5 8edeb6d11f406d5c2fa9d7b65ad1e4de +8edede77d5d829c8ed0d166caec6911d 8edfeb043f629fc891e58f791bfa5a3a 8ee04a248db73a2292098850ed2d9c5b 8ee3798d374b0c6d698ed2605f43f2eb 8ee63e83fb0477e06aeadafe0b59ac82 8ee79b75943ecd547bca58125cddb126 8ee8543f78c8e885997b8690395a25df +8ee8be7f026f29114b0fe708f127a5b5 8eeaa50fd5df308cae3d39da50ccd681 8eeb0a6b0f0ab01eb3ca0f4cd1fa7303 8eeb5a76d7234fd543e48010a5415742 @@ -32589,6 +36365,8 @@ 8eef3bf21fee20be02163b7cf7041b41 8ef567913c918591a18f8a9758225197 8ef6ae7f70a459af57e05fbd9121eae6 +8ef7af04e08d13a375bb72b1597fe0a2 +8ef7c718734f5c6634f0a88744a077fb 8ef8e32faee8cd988a27983c7c51eb6a 8ef9819c692405ea03667a29c650ecea 8ef9fe05e5e0dfe3be70b117bc844362 @@ -32604,6 +36382,7 @@ 8f003d7e6a8a39f18978e2df8ab2e3a9 8f010afc6ce27f997c483303134d780b 8f01d96c2ea0c231fdb1fda0bdddd9f8 +8f061753f43552652c3dc57c3fdb5806 8f06e96bea3cef4a8ed5efc694594681 8f06f28b23dcfb73584b2fa1b371e1e9 8f0768b5e896a753d6a01e74532ab796 @@ -32613,6 +36392,7 @@ 8f0ce9ed6aca6eca21d85ca97cafe73c 8f0f46b488915eb53d276e2a1167c3ef 8f1158695d2a7326a5ec4a6174bb323a +8f11fa754db7461eb4258e44728710cb 8f12acfc09e45c48cc9c7945e32a10bf 8f14da461e768f649fc624dd2bc25beb 8f179e670a63d634e9b6621f0e1a8193 @@ -32628,8 +36408,10 @@ 8f1feaca7136818070eb9632a1f70d18 8f208c28cfd040c3e21457d4c6ca870a 8f2123d359157da5cd7015e04d0cfeed +8f212f97f95e79bf530303c74dcf2e8b 8f2196b1822897f5444152d44b2143b6 8f21ccf33342422550123741773742c7 +8f241a61d27c11e43a0c8266c015092d 8f24f7348863eefff5526584578c4e7b 8f253aa1e98173c7cf091b1bcfdbe5ee 8f26498677a724fc6955750680226b71 @@ -32637,8 +36419,11 @@ 8f28a171325c4f9b777224c52f7582e9 8f28dbc61f49ddc90418d392af9c0087 8f290db0f882b04989047693b33b09e0 +8f2a59daa2ad830e109a1775855b19fc 8f2b585bb5392db7886503af118a33ef +8f3020db770f3699f9f73fb83b5939e2 8f30d47ccfbfd8121bee4a62d32d77a6 +8f35f26d1d16c63a054e3fe21a427062 8f372d7485de569b9aed501ffcbffab0 8f3783b747e1399a858a18541226461a 8f37b3171da9e29842183ff086e92c2a @@ -32657,16 +36442,25 @@ 8f47131e8e7e44ceda62fd8238984135 8f471c6097ca0ce1697f6d26d5287fd9 8f48158d041d97366457860ee6ecf5ff +8f48f5fb9721488bc650fc0c87c59efe 8f4913596356008a2aef90dbed8a9cab 8f49c7ab0568c1c323378803a250886c +8f49fc57220864c24c258436d55b0f92 +8f4cb5bdf847bdb5fd68ffd978ec2e12 8f4fd11a53df1dee6c6c4098203dca0d 8f4feac0b4ecf3c2dce33e8665428621 8f50ee4c49d2114500edc6df0971ae79 8f521b058d318396b8aa0df8ce74b69b +8f525b54c8492f8dd6c0cc6de65e6487 8f54cf4862a6871aa1ed1522f9bb8595 +8f5576aa7f1abb4d957dd3c766309e66 8f57bf30fe1d84ff617e619539b89169 8f58432d9e9b20ee145729b64e0645f2 +8f585d4cbc00703f386903c4c85c3e57 +8f596031be707363fda1d994be6c7425 +8f5a7bdb52561ae8d2b5b68ceae169c6 8f5a882f6523f2653e72e327f9bc6aee +8f5ca3ccd7946c8a4c383f3b4d81dfb9 8f5ce1d0efeb17739af1bc745f65d1bc 8f5f80fee98e14eecd42fb9b2aa2eb23 8f6020d826d2add4a62e373ccbe7bfe2 @@ -32688,14 +36482,18 @@ 8f6e36bc22ffee9347d27b63e25f972a 8f6ebe197eb37fa89541c68afeacd98d 8f6f978899db12ff1974ae088472c3c8 +8f7062ea46af432f1dcf9541b44eaf37 8f7069841ac5af6fe46f82370da2b067 8f712832ecbb8e8c5da0c6e16f94ac18 8f7247346dbbe5c64f2b89ba4f01ea6a +8f759ad5b29ade94cdca57136b54d47d 8f770d14fda54dd5bb0b88151b976017 8f7889e69b703045e10922ccd4858f21 +8f78cc58f1bb872a0a9066e6e7ccb922 8f78cfb8c6f3b9e45e13269e59b41e8a 8f798ac2cb1fb634ce9724fe0d6b83b4 8f7a0a6001640a45a2311c4f0c878ff3 +8f7a4f1980d049e8b1912e582a9b10a0 8f7a5e2227f088f15e2215f8db04edc1 8f7d721d7bf0e3d170cb7ba8604b774f 8f7da3029a5ba5a8b46043abd36adae4 @@ -32703,6 +36501,7 @@ 8f7e6cbe0c7f8aa0ecf1f39cd017ea0c 8f7e9f3f019c61e36e69118c72ae0001 8f83a53d333ffbd203ce134a32c63aa3 +8f845611d744615e0ce1507002e0ba08 8f849cca0595a8ae6ca65b83e64810d7 8f86c3a2a514171a5dfbb578a55b992f 8f86d6e8e16b16841e1e665a39dff6f7 @@ -32726,13 +36525,17 @@ 8f975f2f9ad91b4b78082b69872215a9 8f99cc263995dfd5b9618745d2936e16 8f9a05f25c9b6361ddd37e64360324d5 +8f9c803502a8154b33125c479993b241 8f9c9e2b3f1e4481a96bfb74e894bc61 8f9d70fcdfd052d2d87ea88471f1b6aa 8fa0a2249bb74fbe79ba51ef9735c7c0 +8fa1476e984483d53d2c719283a1f625 8fa1882b5e45a5da5d3df638f887bd54 8fa24f7421daf8100be9bbe2c952e65f +8fa275746184ed6dc5f6e7195eecf4e1 8fa47d1a79072e7cbd40fe1f37a0cf49 8fa49f735466ffabc7b72262b232bf31 +8fa51611a2462784281aa5c0cc3f2e75 8fa58e8e622da58619eebbc6f0de2be0 8fa5afccbf20469a35bbb008add2724a 8fa5daa34a7a1eb8644273314a63f411 @@ -32741,15 +36544,19 @@ 8fa770a825c81729a967b2df4564adb7 8fa79e45c02e289d3cb907ddabb363f1 8fa998031317d2c30051c3754a75ef2f +8fab055dcea61db430c9e558a62f311f 8fabfe3704312574920de3ca279e2444 8fabff67cb6b89c79b645e2c81a0ba59 +8fac89596fb87c5c861aab473b00c5e1 8fae035a7bb4c007df711e9697e45ac7 8fae3d92be87bef0f6c929b2e880a023 8fb149df5a3ab8dac3aad5bea4584fcb 8fb3f65cb8a43918c0f69205087f1477 8fb56baf14013de5c230e1fd9e8e9711 +8fb60ae93646ecc342398fe5b3f10b52 8fb79c7342f48a4ae064511a810c2e99 8fb8eb0868d55d7a451329e1cacc7a74 +8fb990519149ecaa49168206edd32a64 8fb9ae341761692d15ad688488415790 8fbae769a7f843637d9502bf0c55957d 8fbc64128520f81a7b44374b1fdd6c77 @@ -32760,6 +36567,7 @@ 8fc076e4425f30c9b0736208fe8b0dc7 8fc100b4275d64424ef2acd0527d3aa0 8fc326b714af6797eff1497495982d54 +8fc42e69c2e038dbac849a029e1eae58 8fc4574553fa410e4e518f4cba9457c5 8fc501c45b9b46fddb5e88718792c51b 8fc74ca90d5d6c1808534f1aa0e84f26 @@ -32771,6 +36579,8 @@ 8fcdb8afb822153b6b3566841b4d5509 8fcf21020c9783ef5c75005b408a93b3 8fcf6a98afcb6020c223e19b5669412f +8fd03d48d393565162fb1ae4fd0aab92 +8fd0ffaf9d28d060753e065880ac3318 8fd2200b1e6c9b8bd44180840ff73fb8 8fd29dbb4fa6a448a86861f01da1be8f 8fd33bb9befddd5c2201709aada6412b @@ -32778,9 +36588,11 @@ 8fd6dfd037b7c8a1f9d3c044f3517a6b 8fd95bfb1b25684ca2d38c573457e2d5 8fd9758e848bfa5812ea1f30eefcdc2b +8fd9a6fe666d7491d214eb50b8db1e86 8fdc0a1080b363a8799335215075f63e 8fde9591cc510a683f8592a69faae303 8fdf20edb275b0052be95b574ea7c130 +8fe03de07ade850f9e4714c8434b107e 8fe0a3b6fae92e460b27201ee61fb197 8fe15d1dace5f8d63dfaf9c69718b2a7 8fe19a77439aa79d03f6df0137b7c981 @@ -32789,7 +36601,9 @@ 8fe6f718cc488237f9634b8f759e3a3e 8fe7604f0337fae0fd6fb9d27b6d3f21 8fe7ebccf14502220be74377b692bdd2 +8fe82b26d4862ba77dae1de36cd72fc8 8fe96c6bdd3f53abe68709aca2f888be +8feb2b6a26460c9a3a98236363b503de 8feb2b7eeab8b941ed0f092a91e7c11e 8feb434cea971fb73e5810a26313274f 8ff02bd413ab85eb5d96c8cb31419d3c @@ -32808,6 +36622,7 @@ 8ffd01d13a8c25bf2506b4f9cef04cef 8ffe5d74601b69b1c65763be130b4654 90010f7caa23e4d257f2cf6435e17167 +90023ca601eba0bba653f93701701372 900274df47d4e505dca881754bb5d5aa 90032794ef271bc7c073f10d558a7887 9004271230db6fc440e7e5fd31585958 @@ -32823,6 +36638,7 @@ 900bfaefecab9d09edfb32bd7ade8281 900e3b13fafa6500b12b88703a1f0c23 900e97e685d3c1b61d0343edf4e1ce91 +900f2112b5f61ad99fdfe220b7781cb0 901027e15299cec3255ab84d45338b65 9010e7245d571cda5d0775f4378ec0ae 90111803f1e5a904d5651868fde2b0ba @@ -32831,17 +36647,21 @@ 9014f39cdf815503269759abb04ebce5 9016a2c72b46351ab733a9084ac92a30 901777048ec9464dae0f41bfc195faf2 +9017d761b25c8b020c524e432f173c68 90189010c22cb6b6983f7c8c09a90d2f 901a144e3da929736ee4fc0bc9ddb184 901aa78b2760411f5c4b7d18f6151654 901b7e4c19ba1e1bc9487cb59c01409c 901d9a9a08b29c29888779e20949a136 901e7d74b4fe4c3721da4b15c7d8de01 +901ee38de5d8ac34d094f941cc0e637f 901efcdaa2e5345799b906503643858b 901f7b8e1763b5ed62d6fcb3060c648f 901f8abc79bd16cdfb415d44cb509971 901fa22595e69be00eba9386b92458f1 901fac42e3a6a203c160de0855645ca2 +902091026082477aa33e1f80e2dac45a +9020ac5d2074dec58dc3f8235f45ee2a 9020b39d7fac5f3ac7e10f6f7adb3943 90219ac9602e20227f734c9f78311023 90245a412ce28da43027c69af071d46d @@ -32849,6 +36669,7 @@ 902571ef2d7495a6dd77f99de7fa9000 9027184535cc2261644fdabb848c8531 90273c33edccb4c33a854522bb167172 +9027953882b0e575a82dd5dbb4b6edf3 9028c048fb6125e00ec0ca053eeee60f 902ef7ed3653fe5d590dc52082e42c23 90318d9b69b8e26759f1afb595838105 @@ -32872,12 +36693,14 @@ 903c7804573c821da6cf7ca754d2062e 903f8de63707989e2363b64020740658 90404ebfeb7ac08c0d08143e750e8ce6 +9041eee1d42031f33c9aaf6e3233e5c0 9042e1a2c33d1e6b569e9e4bd63501f3 904445861e305194ab7ec532bb5a5da7 9044547c93bcf483b3913d148650ae5a 9047da6f77f7c3004a4b2f96aa1b0b43 9049757eb53543d528be2f5b26da9c18 904a4e53ef11ecb021a858b26a9f9e8c +904bc10240b800fd955b8461d1e032c6 904c124d117243ef4736e4e5f7a0d21d 904cbbfb5825d47254b87a7a163d3413 904e02323cc83ea9915137158caf50ac @@ -32892,20 +36715,26 @@ 90566e2ff004bc352ed7b8c626fa464c 90567c4632ff3c490b69f3cc12383d0c 9056a27d05b2ea2a0a1046eabdc096f2 +9057b0a2f24c6b8aba29ec21ec2f4bca 905a0f8298088d1fdd3bf6f7e75855dc +905b5ef56ed1b06386418bc947f76a6d 905b9c778b2f955fa49a85eb8adf830c +905cf0fd58bc19466c5134d44bb333aa 905d6724222e546145b269b9b99954e2 905ed43ca3f90f4b515213dae8da2f5c 905fff028c0a0bc315adf0e783da871a 906040fd8dc2076f601e98eb41e3d5fe 9060569d4f74e99234e44d9533e3cf72 +9060cf71fbe3146213e68ada3e5244a8 9062113f2a3d990b82121f48e8c9a391 +9062220a729835751bfab4706e207a48 906266a3c008f2189f40e8c16425b4e6 906330a303b977258a40032bbfa38a4e 9063f2370c14c154cfca9234885c4a69 90667f24a8eb2868722998fecf886ba1 90675452306d2884bd6c7757a8ac7df0 906c14ac07e207942563cb226f25304d +906c7e62422e919402a661b96a5df07b 906e1b52b35d904a5f79a73b133a8a04 9070c3e0629614f682c4fd5cb15c881f 90730d994684eb0171f427adb9a048cb @@ -32945,6 +36774,9 @@ 909bd2c856915de4c1432f06095ad347 909dc576218e8a0947a3b25cf306e30a 909ec21b0e4392322bb90fb51f4186c8 +909f997b9ce9c1e302fdc366caf4d63c +90a36f172bfd104d3db2a94bfbc54ae1 +90a3a66b80f4ea755938ced0ed2241b3 90a3e4600a5d2253b70d709989b6215b 90a43d930b93befe7693d0b3fece10aa 90a4a9f4b183e0a1a87bbc7d77993b7f @@ -32952,11 +36784,15 @@ 90a6db3f59a3f4cb7589800c7ff233ca 90a952ca43e04f7e289ddc5b62115961 90ab4b92af063d89829670dabfd3f0b0 +90ab9ac79db721f7dcf440ea700e2171 90abc7257ba68e1b26bdfabff2e37556 90abd81df9f214bf39d6ad08b26e31f6 90ac58709e80268a6932aead7feee2a4 90acf654e4dc2db50f39ca1e35839400 +90ad6912d9242ebaa7b1de900264a18f +90ad6dae235fd97fc8db06e93bdeb122 90aecc5836a79103c445e36e1c68d12d +90affca8dd0c6fed5ec240b416c54229 90b2c19f41b696317b7b4ed8260f9cc5 90b3505c4a0b05e9c0886a28e1705d99 90b4e40d14fe3f7ae4113389b4418481 @@ -32986,12 +36822,14 @@ 90d23403dfde1323dbcf902cd2f869cc 90d383acbef34415cb6ffe3872199164 90d38e42e71e85af0ae10c1251f9c648 +90d3a4fde37887674986f615d5189936 90d402b67a453a88163ce298592fa6ef 90d62763a6a8e9435630319062c9436b 90d6532f9eb7e27404f28600c8bfbae9 90d779c94de2c553c01777c7bacea24a 90d85be82eb4abff58b5b9aace28daaa 90d89de66e0cf44ec34c61db369b45b7 +90d8f7906f55724ff1a07b613ab46ec1 90d9ea66407a5285a4ec2259636e780b 90da5195818a765b3bc2d3c483938a92 90db9a8eaa708864ac802b9dedcc9ca6 @@ -33000,15 +36838,18 @@ 90dc6093578e559647c7b36c780db3df 90dc8e3810df7ca991646c8a1ef60a46 90de2231303b28299d32e62b1ec70c21 +90dfd6d8c545ddddfaf2890113d253e1 90e01f50cb1d1034cd5283357a079b99 90e25b4340437321811f7c039a70445d 90e3a63f91eb2a29d89410b2aafeb1a8 90e55721aeb6f87e7cdffc4406ed7026 90e675e361f8378a3853ff14f177ac7c +90e82023af3e2f3529a3de8f4049e255 90ea59e39966e49d6f7839f34b6dd660 90ec14a11ac1434739b12c012f249263 90ed2fd6fe6aad201b4c292051d82e26 90eed17a44805ffd165bfc11a4b6fb9b +90efe4488c8942df64cf281606f161c1 90f1874de26e9ae12f99679837d372ec 90f216f22ce6c731dd9143ffbfd483fd 90f2441259d0881a58f7bf896f086913 @@ -33022,7 +36863,9 @@ 90fbdded3176e4471bd124a7928404bc 90fc0035bec0d778540912c473cb9b3b 90fd9420db56217cc5d5ec8ddc26b040 +90fdcf4717fb532828bfbf751693470e 90fdd9d7be331f48a273f12cf0af5b3a +90fe70b16625a6e537d6cfcd623b5310 90fe7aae1de1a82e4367ed0b171e211a 90feb8a9116a51ec497045477d091e64 90ff1d09ac2d34b0f46a51b42d3dc83a @@ -33030,6 +36873,7 @@ 9100b44390738b179b6c35ac29f2fad7 9101e02e294417d06951579b80cc4768 91020ddb1e03af5a12f21284a146e01d +9107e8b2de0617006b077cd26e3023c3 910874ca9b6b932bcbadee4c91a1ec55 9108dc0c2da0eeca73cba59e0566f418 9108f50db378c47204e1caf07ade1fab @@ -33047,11 +36891,13 @@ 911480f9c0106c65770c55203f842927 9115801a709d978d90f1ad9a17cd2b32 9115c46bb98720c98d1f8c8f853415b3 +9117ab78731bde2addebc0e682a12138 91222d6fbc917ce8bf2548584fc55e49 91227147981b7df86e18df3bf00c5a8f 91244863bd3de6e6c70ef9d1d14ecd9d 91246d1e3d47ead307e0c54847004c56 91247da882c0b535758ee134aa2386aa +9126f6bbc4b5d20960edb76399bbe4a4 9129a676aa7287d6bd3ccde996b1f6c3 912b404ee6cb5f3fdf8a393b23b833f3 912c542316beb3930c0e7dd7f0a59707 @@ -33069,10 +36915,12 @@ 9138662f35d8996e21f7b968ee3880ed 913931a2643297a6b82c71467fab3abb 913a89fbec23003dad940caf52c349c9 +913b37920372844e1f759975c1e69213 913c0df4a32b6bae68fb02e7043d76b3 913c98a229a07f7f6d1f2d0a68289b6c 913d1996ffb12784529404ce44e701f5 913d5903a9fae8fb1b56e68c700611f5 +913da5f36cb325601e525ee8f96fd0c4 913e1d76d0ab3514b70d70e801cc4388 913ee1499bd492c224ef20741104ae55 91413de75444cee3cb0384021fa09a9c @@ -33102,11 +36950,13 @@ 916285338e6bd6724b5754565670ca03 9163b87b3fbc11898739e40824c432e8 9163ff6c8cf4a0edb46f0210d322fed3 +916622c7b5bdf44798304613115c6882 916640d4f86b882c5dbfda18b7ceacf0 9168f5252be58d05fb0529dc58cbbb27 916973e03dfbf32babae8b71a679b318 916aa125aaaed676318fcbfec929bb0e 916ce6f0727cfebb37723fbd73949233 +916e8e17d6591362f8949a516b8e897b 916e9a0e9aab0ad38c240c7a75418373 916e9c57d8e3c537e7cb7d38e77a4ed0 917115dc40cc3dacb72abf2952129861 @@ -33117,6 +36967,7 @@ 9179319c84191801718d75eda902356c 917c81144c9c01671be0c3871c0e73ee 917cd84932813644b972af5b0a55adc1 +917d33951baa44e9c9859aa05c075484 917eb498a90287522a20a348b9adde18 918049962c27239ac6725396a623b0fa 9182477937659108e1d608374ba397cd @@ -33126,6 +36977,7 @@ 9183f5231abcdc099aee4cdc00f483c1 91848d592c8403cc45090aeb0c916e86 918660656160c59649aa917c24bea021 +9187486cf227386549ce41d3d2a8373f 918876434598e5002f2b051d5a5e63a2 918990d0064fa864594119d56a966c59 9189aae6cac43eb92131c5f0442396c2 @@ -33150,18 +37002,22 @@ 919afd9ef35155bd013ca0c0b214747a 919b9c45b80705ab9d3c180b93287418 919d34046ff3d209135cda085eba852b +919ed6e1a92a0dd3313d9a1e55e232fc 919f909c6deb57eaa6f36dcf5e6ee6fd 91a1155c658ceebac98afc9851ac5b16 91a2e44a8f6db641ae68e5a4d00e8259 +91a323638c4d72e1182ba22780380ca5 91a42ef53f0758c18632218637fffdd6 91a557310da4289e0027bfec1aaa427e 91a64cc47042eddaee05260f95c122be 91a79288dc973ee6f803779b721bbea0 91a7a0e2fb0c13fc162b6dc00dba1197 91a8ebbdf6b9c117e586ea368cb3b6a6 +91a9eb3cf2ebd2a7fc0323494ccac576 91aa9a1925bf1097fbdec253be6e7b99 91aae56de99079333786eff08acfb8f0 91ab3593f0045ee221fc96bb92ae2fe4 +91ab70def9e969232ad0f0a08687f27b 91ac2d1a86f2a351182cbf73bb89e566 91ac4f6677563da4acbf06935637ddf1 91acf3b0842d0dd544f05aca61704265 @@ -33177,9 +37033,11 @@ 91b665a409777731018aa0c14d5ea7e4 91b70e906fe3a88703f8d3ba83c8bf32 91b82fa02109806f5181ded7d41b3b6c +91badb15e5b05c7f9aa207b9a4605d04 91bde367cd1c05abbf0f2463a56f0c89 91be3f08eef244762f59f1c381b3616f 91c075670e27f4aba2234bdf7a102044 +91c0ef9b2e4ba4e1c2d4f6c8cdb0c9f3 91c48688cc7d6d1a0a2b3f7bd7bd27a5 91c487dbeb2e628f82ac8581bd83e723 91c6488b55cb01f304a99e787a344db2 @@ -33201,12 +37059,14 @@ 91d552ec6072c9e548543478664d8dda 91d8a1533df2d5f0cc8111b744fa8b6c 91da55782e64fdeb49d70f7e3efc2af8 +91dae86cb25ffe0b410ace5e3490757d 91dcc2ee059fc3bfc6144de24ba6768a 91dda87e90ecaba02eca3b50fc42126d 91df3cb5784b55d9fcd08e4a95e550fe 91dfa3a551fecfa98dc7ee6d99c07b75 91e24f7daa695b46b698dca3322b42b0 91e27cd2fc89985ea568ed1de4ee7395 +91e4504a60678fc74d63a5688723475c 91e464b0e27e34db9fb1957016183751 91e80267b96e6bfd55eeb63fb1e68adf 91e819fc2c34715a77bf3f2a92941793 @@ -33228,6 +37088,7 @@ 91fb72ae8365d0517ae09502df021e1c 91fbabbe65a34eb6e8fc3a55d632802c 91fc26b3bbdf5b9579a37513003a22fd +91fd169a5714ec589a795d79c3edc2c5 91fef1f20e68bfc5e063564d7732e418 91ff0ec55f1100fd30638fd71b93552a 91ffbbab63ef17dbae365cce7a7452d1 @@ -33242,27 +37103,40 @@ 920833a18420f61c022290620a9ecb98 92088fbf86ba1f89722e7b57c5e3fc4c 9209ad7f53c39aba9cfed276bc480b27 +920a2458d65ee8dc53d2161bff84630d +920a51b2f68a364e4041275ae43db0bd 920b8e4e66c4868372161812752140bf 920c4b62ca40dbb12a73d8def641a529 +920cf3275f9381a42a99e517b464f72d 920d28c07f9c9510c787ea7b00ddb445 920e4d0473fc05b9b1850845f123d187 920ec0d328ed3874cf6f61b882cafbaa 9213fa9b42fc13b77abf276c2d3229dc +92154a9177403e4080ee2e3cf746b700 9215841de26684bc753f86a62d2587a5 +9216575c6d088a42007e2913b3b48239 92181948915a351f8def0bb90172307a 92184ee1fa5acab9a258910a13dc33de 921a12e1bf6579399ea1feeb5966d5b8 921ab370a90b2357605bae838ae54919 +921b65853294feaaf931084caea436db 921b95f850196df41b240905618df4c7 921cbec61797397d17143fa389f18e0c +921e5f644406494b1557d65ff30e57de +921fdd8dae82a776dcefd7bbaf5058de 921ff9c8e341395733e4679b0beb9008 9220f5fc4308231ffbc66be30a1bc466 +922117f8088af308a06cb3bd7cc7f331 +92232e929aaae75f45b2d664942d4b55 92243c5d2134f809e479770e7e95847a 92245c1c1c448a84554fb0d5f7090837 9224c5b68f8a216706ef7c790bf28ac5 9224db2cc5e587285e82f070ba0ff905 +9225217725bebf3635dbb4e7252e2a15 +922524476344e7a3b1b7e288e06fda1b 9227ae055fe0c1064dd9184c4dc5cc3b 92285b9fe220cf83b66e72ef84eab7f6 +922bbaccac0283e58381280eec8193fc 922bddd4818d9bcda9c1142881e10ae5 922ea18379bd56bec6173b3ea3903863 922fba877cbd3ebd56cc560b4e5a35be @@ -33277,6 +37151,8 @@ 92388653361918222a0aa0da1c33fc08 92395b41ab4c8c757c24794e7ce6d4f4 923a47134865b36b8130df243e2d18de +923b2da9774a8de1ad9eec7330eeab3b +923bf2257ef9f5b2cd07f31599aeb430 923c8331087f592337ce4b2a6767018e 923f9b1f2dc114a1f74d6a0c57387018 92404852f4744cd353d9f8f99b2cfa55 @@ -33292,10 +37168,13 @@ 92468d5ea019c5ac9adbbde862d4c3f9 9248f5db79e8a67c90ca0ad4ade91799 9248fd5f235ecd36422f97ea8f7b9c60 +92495d83027dc8856bd348dabb91843e +924a0d1d4bc27ff0e4460eeb2c9964c5 924a9fcf49dbabde46b0e90782596b28 924bdabc2ebf48a51ec8a89224e90fa7 924c7c31e33b0bae559ec5091d991a67 924cd19428fff4a696906fceaece00d5 +924d1743c9010aa2608c54ece3dc94ae 924d244b3f33dfa71e25ff73b6126038 924f2ecaf5999b7adbea3920ec3008ae 924f7204e1de9191f462ebdd47cc54b8 @@ -33305,6 +37184,7 @@ 92516d6d447f1e4381b70ac9b4ebce8b 92526b325f8c7b6af0fe29f81f043ae2 925368318d8cdcbfdf155e63cad56981 +92544feffedfe7ebd2700d6318978b5f 9254da672b914ff66991c6a1cd0b6430 9255816f3f747d04ef157afb00a1bc49 92558c8a8d6beed0cc835a688e092e4d @@ -33314,6 +37194,7 @@ 9257b74c7e2b941644b72640c9cb415a 92583c24682ce753ad6150937b0d225d 9258fd7b8c429b0b95a9dafc1b5d427b +925c549ee5265f69d2760a493effab29 925e0a08b508e4f151a81dab1f318ed1 925e25f2ad8a3f866fcbe2b9d5ec4972 925f714b59f80360c2216e351bbe201c @@ -33351,6 +37232,7 @@ 928040daaa04d8777a57c5f81da3cbed 9282047f267143c47814671e956a849d 92823117c2fef274a01b1fbab63e8d8b +9282473151f0212ce519735320286020 9282a038cd258d1add4402fefaf5d571 9282e71c03a4078e535d07460daf2007 9283f06c7596a332cc416af5f35c1143 @@ -33365,10 +37247,12 @@ 9292f0bc6ab81efce8b3e8176f10368e 9293bb1b1e21d35baf5e1e48f822b908 92947fa4e9e659472208100887d86427 +92959fd5aea11300cdfda178839e1a49 92969c92ec38bdedd7dd31c85826d268 9296b1c36f8c410d3b1f339feb090b65 92990a24ffae160918b1b42415f9f663 92992ab3590370df1126196f40b05676 +929959ee27c0a844e54ca396ca901d78 9299d90069141028e70a0ecbb20f47ff 929a8573f9f69c172fb3cbdb1931e5b6 929eb260791837b6c64c12a7eed6abd1 @@ -33378,6 +37262,7 @@ 92a856ba24eece8d37ff32eb62b31be0 92a86693ed5c29aa18787ff971404675 92a8eec8f556218d098928681be5fbd1 +92a9ec7b1262e5e2707820bc593d2c9f 92aa5b13d4a6f232e4e07dc6c9dfc05c 92abae467e5833b2002a154b502a5193 92ae4cd673d20bf1437abc1071808998 @@ -33385,6 +37270,7 @@ 92b65a8d7c6b858f8451adecf86723eb 92b70ad63af2151b6476b4379f9775df 92b72939bef5dcb41640f48beb517ff8 +92bba3c68be22fbb49e43ff57bd9696f 92bd5eba2fc0cc9731d8377204034d74 92be3da40533399f8bf2cfe2264283fb 92bec360d45842c9797d8f5ff246003c @@ -33422,6 +37308,8 @@ 92db1ce2b982fe1bd04894fa92923ae3 92db8b3d96d043d35a2ceb3f31a84594 92dba8326404d0472490c2f4dfcd236d +92dca41009acba64011f6f073bc57ecc +92dd4379f9f4b770f8876e6716973f42 92dd8f618b123141cf895563c561ed90 92de4a97412ac414e414b1dfead5fbc2 92dec3b3a721b5e9590bc94d6c0e2321 @@ -33433,13 +37321,19 @@ 92e7da95a4edf692988d9ee014b61f6f 92e8042a88983e796360c1d097196dd9 92e8348bf1955ab2affbe4873cd19723 +92eb845050df4d83cdb4e620ccc75745 92ece9065a90db1a6df21ef760edede8 92edfe765815a8c792ce12bed4c7c2c8 92eebc6039a816bed151e8ea1989ff43 +92f08a1529ed08b5540755ab2290dee0 +92f1745bccf43e2f1554c1084582afe3 +92f225f1f7150d77347c85e7d3371501 92f2968ab3321be298fa70890e907e27 92f38963d8cdf6f46d149c39fae73b76 92f76ccc5ddb5745f9532bcb39baedfb 92f9595b790294e20960f3d0917a7998 +92f98dc817efb26c217bab2f4fe64a6d +92fc4eb821b9ab5457b2afa12d8b84a5 92ff89d9194ca424a6583e901c352e4b 9300e667312d89a16e9bbfa8604049fe 930208fbf61436fbd13d9d34bad85c6a @@ -33451,6 +37345,7 @@ 9307770777b828e1d7818f1624af23ed 9308309e95d9165facbe0cace8e24d08 9308af89228fc764e2cc73bad41a7cc7 +93090cdfcc3ac8b266e36560be90b2b8 9309ad205ef873c3b32f0808deb97412 930b2cebf353d8a81a2caca07995ca8b 930b56bd53fb00b34cac7e9aca3d6e6d @@ -33484,26 +37379,32 @@ 932cf249f0b7fc30b4e6e293f3ad4331 932facc0273581febe60292ea07e6cba 9330b7440a8a754533a8c94e5462c52c +93330a35b02890c22beae9cc58dae56e 933364c129c49c282a311e4f33149331 +93347a41c425ceb5230f785347dc58f5 9334f8031d855343b2fec476c0ed7c45 9335a805462899442a9fce9d37a72731 93376becfef4824622e122eaf57aa3c1 933906559f6c2d466ba71f53eac099a7 933b1aecf799488b3e77e0efd2966bb7 933b5823e5390c63d6a8fac189e81a89 +933c1909631d65a58738c68c197b789d 933d8369d75c3f461da748b926dcba98 934075d8e8709414b7d71c84d0e8585f 93416736c0a543966f4f3cc2d792601c 93431223cd7fbe464448e274e38f1524 9344bc075e077a39b9d7d2ad5b1375bc 9345ea7ed31bb22b264ecae9a0ba5c0d +9346700bcba411025ec0ee2e5472bdcb 934776c941c5dbe294eb21e5746951e1 9347c668dfedb81372ae36502a51d284 9348e8d6207b13f958d77710339b36c6 934b09d105b30b78c5698b69fc68a121 934baa26cb6a7bf1201973f0bbbbbe78 +93510376105dd925d32af0e7f7e58395 93522805856e85f0ad9972f1e70d1383 935287f24bea1646f304bd50166c9e64 +9353d2a619bbb14c3c4cffe3c7370fda 93571f86d3eb0a5d1ec22fb525c645d7 9357d64a05a00922207f9066dff15751 9359d78ff85eb442d5e3fb0e2b607d82 @@ -33525,6 +37426,7 @@ 936f31628f48fe9eb7e3d41e62a05709 936fcc6f0fd3332eba6eda3ef46c784e 93702ebce5fc8cea9c7e7916db0f449b +93708bd7f3206d7d4ba18b168b67003a 937130ecfe5e03824f1e674bf2b030d1 9371974c333accb09fa466017847e201 937235bb9901c132b87787755b779754 @@ -33533,6 +37435,7 @@ 937348d9a2b8b56828c0178d1aa5aa53 937357301142d440caca96bb9d700c3a 93746e0b10b16b309daa22152feb6cf3 +93752bf1ce0cb3ee164f0d09b9c08e75 937534a2d7b44abfddbffb05b54fe281 9377317c042c057c2ca0c6003890fbf2 9377b4da61033a14ef84576279bb783f @@ -33540,8 +37443,10 @@ 9377d1dcfb99c2194c3d40436bd3dff9 93791e6e77548eb4afb1a8299c919ed6 9379de3d96b7b50d3fc402e32d8de06e +937ade83530a38b32e1cc5cb23dea770 937b72e87d368a2bcf16631c469ddf9d 937bd72f99ecf41bd8725369db7ea36b +937bfb52705b7cc3fe753f96c95b41f3 937f6fbeb865010035d5241410bade9c 93813608572983ab86bd659391415fd0 93861bd73a7226b38e791be091cfd651 @@ -33552,6 +37457,8 @@ 938b1976d644b6bb14300918def718d3 938b510137a7afc178af2b2be27c1ca9 938c13d476192377316026c9451ed77d +938c3afee8bf0ce8b01f101848b360b7 +938c81074679b2a6c56f6d73dddd5ce4 938d65b17f8981e0e2871cfa146411d9 938ed09dc1ca14e6c4d39ad014d280b8 938f6fac0e28907620e588e59639dbf1 @@ -33571,6 +37478,7 @@ 93a0c9093f097fc53c4179dd01cde90a 93a1133854bf01af9dbd838cf14709e8 93a150609a876bf5b9ac28b12e300c0c +93a5a4b472637a9a3c2e6c5282cebae6 93a79452bf0fa310c008d180ecaa4793 93a8860bad9f442ebe8f32db068db6f1 93aabb6404ed6184549c16f1a899c736 @@ -33578,6 +37486,7 @@ 93ab1561b999f2a05a92d93484a2ee75 93abbac4ada04ca924e9d0f41e5b57ef 93abf25378380a3f050f43b4a4676335 +93ac4c298f15a93e931337dd70b87d01 93ae389dbeabdb6142ac4e0c68c217f9 93af1ea89ba5530ffe57c399a54fb811 93b08878fb99ea3665dfe7dd23f15b55 @@ -33590,6 +37499,7 @@ 93b76dfbdf8886c1dab7d971da88e71f 93b811b672555aecd352c022b51fe818 93b9b9c660169523cf5532267dabfc94 +93b9e5ae8a32632fc6591a66afbf66e2 93bd9d6ed3eb8ec532c03a30df3a5ded 93bdb71547fd7f1d1eb8efa50deb28f5 93be78ede6240b20d81b76148d12e1a5 @@ -33597,6 +37507,7 @@ 93c2a652c77a2068666fc17a6c8c60f1 93c2afec58aeb0507edb246fceb369de 93c2ff52368dce364ad3cae28e93d8c8 +93c3e633622276aac9088c0ae48af27e 93c406a1b3eeaf7e4587b08213b96141 93c47adef2a206c46114d113259e0e7c 93c4e1b609ff82b3e24a19d333f2d078 @@ -33617,9 +37528,12 @@ 93d6a1625f29bb6617853c482fd6e3fc 93d735a7ab804117acedb43919b8c434 93d83aace85e574c50acd45f4b8d53bb +93d8c056627a1d70d94f6016b3caf1db 93db0d78f18d2ad862a8b3cc21c47e4a 93db12f9fdcbd825788783457059529e +93dbd9a68ccdc71eaa4032688ed532eb 93dd096251b2159af04dcfa39cd893f5 +93dec43a0603e12a546c8d5d53aa117c 93df4c0ff19d24f641053df578c5e553 93df8e02f13353740eea882e0cfcfd84 93e1f86f011cbc7d9d197b37a428e326 @@ -33631,6 +37545,7 @@ 93e5ac5b67e9dcd4da01cd7598d88bfd 93e63dc831b6a0e9483d24efdedc39fa 93e829780e9d81c25b498fd2f7a0884b +93e87882531bed17afb38e2dad7fbc1d 93e9b75ad50462a4dce621271b03e5d6 93ea077bfc7d196c20e5dc16d14411d5 93ebdfffc3a8bb0d82b11b912dedb8d8 @@ -33659,12 +37574,14 @@ 93fdb5329d09f864b898c5e2c3d64987 93fe39f2ec754c6388735720404125c6 93fecdeb625b8193e2d54d1debfba28b +93fef7ecd8d7975e643658a3aa1343f9 9400618bc3df790bdb4fa11c6e570634 94014a826be5662f5bd094fddab035e1 940163698f6bbcbb74a44fa502d373e1 94017e5b0fbcbe5cc64fd669a1ed2b27 9402202925152f29a8dfc581d67c3745 94024c7a2ea4481af810995b0bde7e9e +94027be7a497d8cce2c9d450beaf8469 940378b12c5e8c2086ca87729594241a 9403f378ec5aea1cbf44b4e4bbad8c4a 9404a66fc9c6c92e417e19f438d5e6ba @@ -33686,13 +37603,17 @@ 94113a09fc96bb65d1e8195775d266a7 94134f907f2f5b635c3d227f1310b2de 941357d887251624cbbbb085b7db5015 +94135abcaf12686993d25b6f78168d58 +9414aeeafcf73feaf03bc648f192221b 941634652fcf0a8b7feebc512ad98c9f 94164f0a864e4e12316a7cdc597bce98 941791562f4646e29adc4060c364833b 941d731b6abb4ed89bcc4ffdea9cc80f 941dffad0588c4b292fe17b3c3fb7893 +941e3ac929b6087c03a1ca2a835b2d70 941f56e724c546a3fa9e835213a60333 941faa40e238fd3c65f9da050cab21a3 +94231cca0199c7d5b2b6dc5c3244e58e 94263b268300b65e8f54e939903b716e 94264cfb3987affaedb9ef8c8e244314 94280655a84550a56940e51becdc2448 @@ -33708,6 +37629,7 @@ 942ff960cd5950d8a297ac8abe3e9811 94313e083cef8a45eb1570fe01f4197d 94337b79d0f0076b6119da3b1826f7e1 +943453d9df9d709dddc6ef3b03fd3f70 9434e6f004570c73c1bd34e89d71e6d5 943638849affb6b459019834685ad971 9436e3b0186dfcf94263cefc8bfd8cf3 @@ -33759,9 +37681,11 @@ 945c7cf7ed6b9972f011634d5b05da65 945cc31ef01dee5c9698ca1b5035fd78 945dd6e1133f0fc8732a4f1d7f685c9b +945f1add99855d11211621ccf4fec66a 946105a2b83870897915c7e5bb2420c7 946129b13dee437399df9a39f0ab9f2f 9462d9168b7f46a672504d1173b1a773 +9463b148c0ab1d8eb2c3ac39375aebeb 9466c2a6604dafc5fc172478befc4f34 9467dba9b01587d9cb4b0f1dfc5f0c8d 94680ee1adec2063dedda657d098db94 @@ -33769,8 +37693,10 @@ 946a02c1abfd4810cab4551129fcfd02 946a494b45acf0a8c1e840618fea809e 946ad1e4c88b3204ee2f31cddd794760 +946b86223f59e27984b31d2e2692c6bc 946c031b7d98b3d30bf308f2cf556661 946c54f7cef97b0f61600571e5c2383f +946dff6b00be9948896ceea50b5b62ac 946e1bc449954741fdcb7847d8918323 946f216c124fc5e8b93aefc3fc1fa3d6 946fd700103fda7f8125b6354080612c @@ -33784,8 +37710,10 @@ 9479c1a979f15e12ee81049acad44693 9479f97165cf87eee2a6ec50a24a0200 947c88d27a71104355002b65728c44e0 +947e715930fea6f09aaeee2977d8f6da 947ff2ab617be63c08f00c77eef488a6 948419aa0da3ae60f03d70535de7349a +948493b52a99952739ebe4635a44c9e8 9484dd4bff94d0698ae4e8c7a793a50d 9486b9b5632d1a2105a281c2d4f8cf9c 9487262b21a05dd23affc67557563e15 @@ -33794,6 +37722,7 @@ 9488e2131b7df571a8c95a6b749700f5 9489861e8f272166b426c4ad39fdae6a 948b71a10028f539e29d60dd45d37d43 +948c46fea517d025f35246314308b283 948d7cf5fbff334f30ce6fae19bc9dd2 948db3d5ddadae4fdad99b19e83ea9c1 948de0699e52a78f535cf24f0e3fca28 @@ -33808,6 +37737,7 @@ 9496c4bbe2b5268480acdff0bb4dfecb 9499224c964f30bfb40ce8aa05d7127b 9499d72847fdd4a8a96f9416ba91eab1 +9499e74185a6e4ab82c842773f10351f 949da6c4c6c896c3a7692c2afed505f4 949e16d4b7d15a2c9f8531508cca79ec 949e1cab9625367b8c1a30b5995defbc @@ -33815,12 +37745,14 @@ 949e63af04b85cf2f1e58bed063d6264 94a41b3d7a328414b886ba924dda2037 94a5822e7b243198fd8d08f12f3c4035 +94a9262bea95a745981fb3b837968cbf 94aa85b75d1020dea3a48fe51148d06f 94ab78f0626943fb47b0701a1282f29f 94ac4f545763b88879c0cc86df974403 94ac9531a877f3f6755c714e75fa32d3 94ad159ca30180d293d102c0beef54b8 94ad7eec6b136ad70784afd4d4b9d3d4 +94ada90323253873dd90b66ba40e8388 94af0244b3a3a087ca7c26488ba65d89 94af2b94d64c91816fe5523230f3bbe5 94b0f7cbea9534db2b8587cd9343a191 @@ -33830,6 +37762,8 @@ 94b442daad85ca878832332d6a604e52 94b4b7a2f25852649b73e34322259679 94b52a3ee9b9cd74943a4956d3826d94 +94b60f5e2c158f77a0e99ebf0b723bd5 +94b628039c0dc2f3334b4c76127ea8ad 94b6ead678277ed64e6bb3f67cbba2ab 94b88437ad41927f649c5a57f283c97d 94bbab4b44376b8f2298d26814c779ed @@ -33841,6 +37775,7 @@ 94c1f8b2b1dab2cbb6aed5f10c9b8f3c 94c24fa17e31040cfd7f7acd42d35f2e 94c4137da3fb054a92b24ef2bfc60086 +94c5313a18461fae02f00b8c64575a94 94c5d08088697c47f786fbb76fc25260 94c69a53ccec96d0cf048a19e220a1d6 94c7603257d0c004c559f1dd5f336ef8 @@ -33852,6 +37787,8 @@ 94cc0428d197c6a67b73fa3d1ce509dc 94cce0ff05498be0d43c30103fc05801 94ccec90a26ccfc86ace6fed5dd45e3e +94ccfd44b6b1c313471013d774191e31 +94cd3ca6e862af551295cee4a3a52163 94d05d249541dd52ed3b6b1eda94dbe5 94d1c76448c30761cb78549b6db80bf9 94d1d5975643e23b106b2914b145b5c5 @@ -33888,11 +37825,15 @@ 94ec418e0a5755d812a68a7b64ce6ae2 94ee53e735bf4e02d5d6d2e10dc0626c 94ef84b790633ebfb0b06a7c5ef041b5 +94efd7f1e65a09a72348ebd555c80e5b +94f177f79b4bac3c1085cc80fba218f7 94f1ec892671db18137d6b88ad065ee8 94f27b436874dc73c5c71f1b8e2c6062 94f2a054875f1ad3848ec79093117241 +94f3dc986a0fc6eb5c189845b07e918c 94f454f154c733d33bb3c91ae4d7b925 94f56a15311c43d3bb2a739bf1c23858 +94f7531905b80603973b59f6da9851c5 94f9546f10fcc237c63e148e2acf10f1 94f958ea32b643757e13d64f0ec91c55 94f99d625ec23d60b79ab83dcecd559a @@ -33911,12 +37852,16 @@ 95048037ed45508470ecf6eab23c5f6b 9507dc0db915da1fd923d5af310e87fd 950b009dd2f9639f832b9fc18e85809a +950c50c3cc3e0cf3f7a6d6cc96d1c634 +950d1df99a097d79f7c5de4ce40809d2 950e52a5cb3812ffbc5a0ec7b355d52d +95130e775a8450135f2fa28d6fa5033a 95143b69290e0e1f4a30adb1f3f490cd 951472c794d163389410fad3bc0dc89d 95149c592de6134370b7f3eef52996f9 95163c9153bb904cba257a71ad0d2312 951706454f0e65d189865e67c5a77b06 +9518507c578f2f6ec2c24ebe5cbc6249 951a63eb5a2003768959024df4977b49 951a81d0c7a68fa788d4934cdd2bd6f4 951b10a3ae38cdc7b14e1a1d854f39d6 @@ -33924,12 +37869,14 @@ 951d00ae1d1e0f9796962df1c2cb6dce 951d95186a61933351b68999e5ef3d2e 951dc0527150ec581eece1f9aad071ef +951ddf0a595da16e2f1d29d2f0315066 951ecaf086b1c0f2acc34641035af2f8 951fb9ab81d6a8ade70d8fa07878cb04 95206289fa75b316bc8bf4c84a380a33 952296ff7e8fbced0f199b4ec62d3a8c 9524b7040c121289f60b645fe5287dfa 95252d2c9462911361139f7b8c4c3b94 +95273b236840b92cbce41af6af40da5c 9528f1b8a25870e83de997ab81ae63d3 9529b3962128a44d9cff968a61f89e9b 952a18b5d74c338e3702485155775d9f @@ -33946,11 +37893,14 @@ 9537eec49f9db9908f2352a0c6311982 95383baf3e106692e3f64af6d3d2534b 953b831b06422abe96859fbf55c6c3a1 +953ba41d587f60d47f7b96011d2e90eb 953bdfedb3b7460f944e04508c07b2c4 953cd2e5341088e08197501b151f6dc9 953eae0a0d538fa30eb46979d5a2ef79 953f7a1f4b1dd26a4d9b62beb00ccee7 +954028f053e6bd761edf9902ced8ea2d 95407cfbe45901122dfc9c33fd9e233a +9540c99c4d657200191145989da2ea44 954184e454a2a6f00af4942be79f1e37 9542af53dc48782ac811e3662f1acb77 95462ce46466c1f9d328ce8c6fbb7ef5 @@ -33958,11 +37908,13 @@ 9547625050d10b4a115a0652224edc06 9547b712351a4f7b3434e3d10f85478b 954937ff2b101d080dd5d52b8d87f06a +9549667bc685ace8e14f44205573f7be 95497f4d61318abe139c920931c54b1f 9549accde2e2972d32212644a568f1a0 954c1a815651a699d384267b7edc4464 954ce78b1a311abfcf5cdc7354d18e43 954db79b53ae702d399aa45989cd592e +9550f88c8f88a971a39ec72731c06e03 95517bac9905743f6562841a7cbe610f 9552070974f24d8c56b93176fac754e9 95526ca1f38bd70397d7b87d1d434374 @@ -33976,6 +37928,7 @@ 9557a40d962f06ddbfccb4e716670534 9559ebc509e4c0adc76a87695d753e7f 955c5fbafa108d2f55a5d28e75a3621b +955c87f875b3e412e4c553b90e472d36 955d4fdffee53e7481f22234bbcf612b 955e447882e800e34a1fe42d9fa05669 955ee7b607d73a439f85b2e8570b941a @@ -33990,6 +37943,7 @@ 95635c188435fd0efb32720499a75432 9563e3b60bc61825a1294fb3e4cac518 9564749048988608b7195518e8361581 +9564f3b697d9f7a844e8bf8d50380ae3 956530908dc64e040710c4b15ab479d2 9567f37c014184d540971b2c2fd936ed 9568a882d43cbf6087a821e97e512f0a @@ -34004,6 +37958,7 @@ 956c9f03a3c0696f94d862a1340a49de 956cc29895abe7b4cbd652e4ef9dee2a 956cdbdf8b8b261b3d700f9ba58e6813 +956fccd7bd72b73f2e8e4b3af064e39a 95709416186b211e59643efe69678a55 95726306daad5705522ff2da89a2d5d6 9572d6d669df79bf32aff0af4bca8f6d @@ -34011,6 +37966,7 @@ 9575002752a36ed63d12ca2b605cd369 957659aad9f0ffc5ebee6309e7ce4b74 957672ebbb97bf6b6a83b2a016cf99b9 +9576821545ded9890d036ae03d0c0256 9576b02a2ab6236f73fcbbc757499389 9576d41cf1fb5d1623d4b039f0e7fd75 9577167b92a654c29d2762d1fab39c60 @@ -34030,13 +37986,18 @@ 957fdf68963fb8945a365de9f19c4a78 9580e1cc863d9875f35ebe80f3c62037 9582298c1acd5dd713ce6521de38c0cb +958382da680f3cf477a8ea6f05517164 9584d88b6a7351c209474463b22c67fd 9584e768dadda20e91be6e1e458a781e 9586fdf7b9f318d8519cac63545659b2 +958ba498090a1feb29b2fa87d676b983 958db69ac6e2b0d532f557bd6d7e57a5 958f4689963a49a62f7fff37fbebdd9a 958fe03bfbb89fb86db13d681bcc5183 +9590a8c8f01619c0ec3db3b61cdd728d +959194713c61c18f3cc4bdb527220e7c 95931f7707ba535ee7ad380c74913fb2 +95938ea4e79f30b5aad8530ae2be0419 9594211cda6e060144a3c50f55222ae3 959431c3e033bca646b600f970ea9d1f 9595b6faf82f5eb80d5d03af9c6a8af7 @@ -34071,8 +38032,10 @@ 95b3e927e8dbf51cad1a046227b2aab6 95b43153a4cef44b19be47efb7da90b1 95b5827db79cb9404b469f59e0ea049b +95b61eb45bc00e0aae467abd83efef68 95b685efa645063bb6279cd5c116a99f 95b69e335e66c424f2c027e31f31b886 +95b6b9dd6a9a571b77996055e2beffa1 95b89a223a3aa9f85a28886bb257593e 95b8f1409bca511c85df2e1955401c0c 95badea4000c122e05cd40c0aca887e2 @@ -34100,7 +38063,10 @@ 95ceba7caffca3c435c02e99e690b3dd 95d134677d40874142d2d4e8f9607933 95d2a6eed9de3c2b3c21818873b336cb +95d2caab63cd9b7c92f6710b97f45985 95d5a5a570118c61d7b0d9d3d5c60ae4 +95d5d01e5f018e6b24ee83342130108e +95d67d5cd942694215317e36c252d70c 95d79ce9d11485a19558dbaddc0b1b98 95d92542d8466c01f1d429d8af2658cb 95d9b3a85c62990da03e29da0f49cef3 @@ -34141,6 +38107,8 @@ 95ff6ca0dfed9b7fdce343f18a7c7c51 960020bc7d4db24bc17f88f279a6a690 96004ca362b184d78b8b169562e7b0f0 +960087f913c57c131e06189bc5ad1f8c +960194040b269f46d96f7eba36550be3 9605631eab5b1786e40bd763db860efa 9605a0019585bf7003f78438b27eaac1 9605d0a275cec44d2c15a7c5ef795e1c @@ -34157,6 +38125,7 @@ 9615012ca94a2a7faf5c577164e6ac3b 9615303944217bdff0df04413d485d8d 961550afd0e4be07c7939dc4851d037d +961b3ccdae3eda9ab02039d219b5f148 961b60acd2709d82ab7d52915ba23659 961b8ec30c321381f0435487a2f522d2 961c50489a777d609753e83141020294 @@ -34164,18 +38133,23 @@ 961e99236aad589a5a5dfd5bd7e21151 961ebf33e95bb510b39cd98394c4c217 961edaae432aee6cf9e3c4a0f80304f6 +961f80e00c3feb5ca90addb51fdf50bc 962030348b3ae25906196356130de69a 9621b6b20cacb1d476d51e0796a2b049 +96230df0e4a88bc5b29b9cb7c980a963 9623f86e43464df3831cc8ef59c6a403 96250b25580981468376f5c7fe043dc1 9626c514655fa4e55b304be2d5c0a6a1 962b20361a44bffbc4268891854b0d53 962b578e4f5ada7a539588261421a5c3 962bf63c5e2eec7a288a7dcff5867d56 +962c4f7ec67b16a0d950b510ea55d396 +962eb8baabfd6708e86d36b70b3aeb9c 962edd266a94eb557041fbf8c5d30c0d 962f2a0366e6b6d34029840c2f083417 9631f57788b210d50bd95278112e8fe6 9631f6852b33e78439807dd3eabc0461 +96326bbdf08c95cf80549ed5b2189db8 963359d4ba6890bc075dd8b5709dbe42 96345486562a23d236dde8fc51464339 96358acec914b44de042abefd6007e59 @@ -34189,6 +38163,7 @@ 9639a505d1fa68796faa4201d391155c 9639cadc98735d4484ebc753e1c70052 963a32fbb93d2ce5da6eeaf87f17c881 +963d6735d0bcc7c6928c1b37d2dadb1b 963d8925c4bba55b7db9beb8af066d06 963feda4a3e5eebbb82c262e3f0a1b59 9640daa6500892fbd666dbb246317b39 @@ -34196,6 +38171,7 @@ 9641600e8db33145f4734df4f73e7f76 96430376199f3babf09bf8771bd66e51 964329b46929f3630fa52d2a17faeabc +9644b30dbe8bf536ed82d74a2cd1b5c9 9648373cd903c0b733d2839de485964d 9649f8b42fd2479029c031f7348583d0 964b7b4d08aed225d7ea8fc5b4b9ac96 @@ -34210,17 +38186,22 @@ 965db93df2f1a54f9692fe1fb16ac075 965e22b99ee6610e70d17fbd3192be9d 965e96619d2be826cabca87e307a53f5 +965f8716cfba50fdf02f8d12e1df9727 +965fa78037ef584a6a23268a431904e3 96603c780ac50a9646c1a1695e9e57ce 966092f432301aa489de4312113ecfb6 9664aadeca2ca62e8f5833fded6b42b8 9665c7fadd61edf91e3c0eacb3a0193c 96675b755f23d99c1bcdd9df3e3b5bca +96680fb976f1869c05f5c1798ff419e1 9668abae0d9ea7282c7c41cae35cf973 966903b92dec62c16fd3712343150853 +966a4cbb27aa7dd04251619a43417c86 966b9cc6164d0bfcf1649f977f00d69e 966bc855fb3c62d10dfae9134be8cf90 966c40df94fda58631afabf629c31ca1 966c9e975aa0f34b99e649f0804181e3 +966f0bcd5248bec04b34a012b0a73af3 966f16a8f7326c44abe5984e2a44176c 96707493f2379580a8dce9b55fa92ab2 96710f7c56b3c083f6fd0a0d3c14ef04 @@ -34241,6 +38222,7 @@ 967d91865819d7c3b09c26bc144eb484 967e02266816e76eaec83d6b5ec9822e 967e69b63c886d7634754cef39911513 +967ef1204c83d1781134ba8658a68085 967f9bba25b593cc14faef9ec3ee083a 96801b71580f7fc3bb3c1b1fced8d71f 96824a20e5fe8727d18b3df47fcf6e6e @@ -34254,6 +38236,7 @@ 968a8b55576a711a4c4eeb9216a6ce15 968b3f04bb9658d8e2ab1455d5440aa3 968bcb427771195307da425582bfad0f +968cef0ac1cb337c1a0c922ebda193f3 968d6b59da995cf49969c0c2d50dd2d5 968e9f366c2d643921af2975f251aa2d 968ec3fbfcea9a7a7458915f07f05009 @@ -34279,9 +38262,14 @@ 969f92e355057e9f1fb366ed177bcbce 969ff44228aca4326420b47ed1cd7b1b 96a03a6fe10840ecc6765ab3f62bb825 +96a08679279c51a0ff5697fd131389ef +96a0ba2ef8b0f204d90ac66286912ba7 96a17b1bdda332b1ba460ecdaaca7f6b 96a47ca681fe7f7748dfde0468496638 96a5bcf540e903c0a1c1bd594e680c87 +96a5bd4d55f675a3646561475132b89d +96a7b869ce28a76dc682023c36f8851d +96ab2944b4d1da76a4d7817acf167f5f 96ab52aeae0cb530858a185c33c894fc 96abdf10617c09cd8f61ed7ca6dfde93 96ac117597dff44228e56ae08ed7cd56 @@ -34309,6 +38297,7 @@ 96c645bbdaa47c87d71f9784116ec9da 96ca2b6d86fdc7753a7698335f9235f6 96cb23fad4377eb141fd445036b1cd0b +96cb64b680cf0299702d6727081ca6a3 96ce3c296e6562e85abc2f018dba43b3 96cfd85329b61641f7a4dee16f607157 96d040c23487062229627cdca3620ea7 @@ -34322,6 +38311,7 @@ 96d4ab835c5008dfd25d81ca2e6a02d2 96d544812be9c1f263f6e9380400f407 96d58065ecd127881027ec5908057fee +96d59a0d856db0adcb7d79f068b74204 96d877b3d121a8cf994b16ac990757f4 96d93bd9cbd444bf29847621aeba1fcf 96d99ab9da6523be7c95a53b4f08a0ab @@ -34333,22 +38323,33 @@ 96dd160a7a868ddef83ac0663ee434c8 96e1e34e25dc96bc1b208d803b1a2eba 96e38c398b2a409995fee9c6c2d61c59 +96e528ae4fb9e8af0bcf76ec96cae08b 96e6a0bda5f3995b6f6314c446dfaa89 96e900c5dd0de55d2bfc0b4c2522fa87 96e9a3ba79c5d299629fd3464583e469 +96ea3192819f00e0bf26f936b34b105a 96ea784158e4b550e51df6cb67b4d122 +96ed2c83a7b31e404af6413b9afec45b 96ef9b03346759bc34d37e0dfcfc1554 +96f107c29abd540bf8823165e88bcb34 +96f13998909ba0c2d91987709c10a4bf 96f1e6764f58deac3d59a6ad68a75592 +96f4aa68f80d11f2a3875f0e1ba44ae0 96f584471dc2afc6c224096004d450a3 +96f6addabf3c592eeed39f95b7a5706d 96fb57e3d2cd667f83171b3609458912 +96fc78dc230a98b3abca54d7bc0b6e70 96fcc076ceeb9997e75a1ba947ee40e0 96fcc433f28fb8b99a4245cae1378ce7 +96fecb5e094793ebec863e058c15ea86 +97000de4cfba3f3b3f6920110569c876 97000eb39afcad4dae654bd4fd5fc5db 970191b79406c33a3ba34f666159569f 9701b5b69ca0fb1de202e3b7b8ab61ed 9701f025105a5b5e2946ab1df3404402 9703a8520ce4b2a31f9f397223647e20 9703bec9b58323d86e37e03c232f5e93 +9704595504610bee96200d89d6d1b6d3 970517b1ba80eb2d60ec5921f1b84c9f 9706720fcb8f2e71013e6ce329a621d9 97075cea2c6d66cf5c02fc7599e8c04e @@ -34356,8 +38357,11 @@ 9709d09efd9edc1dd59c96d34aae9044 970b1515798ba16aa37dd75e6fa73da2 970b34c6924b9fa1bc6ee146572e5cba +970b46ee74796b73df8c0e4c19a571be 970b912f4d1a615915070be98036d230 +970bc72c8a58d4f7dca4ec81de8c00e7 970bcb8376045a34b7eb1807c0b22083 +970d746dc1a66ba907f10cdc21d74d38 970fcfb4389c6e4c690a8c6beaea65ba 971002557b2e18bd5c676dc01f8be2c7 971041d9543367a1566950cd77d751e4 @@ -34372,11 +38376,14 @@ 971a23b5412ae6924134eb571fd36cc1 971a32ed02421832921556610bdf0d3d 971a392b8795692089b350166c9ea737 +971a7897b50c46e9363bb5840463b754 971aa333e80dcff76ac7fcdf37613d24 971ae29d26ab6e6578f3358fdd99710b 971b555cd07c78a9481be72fdc043ac4 971cd2caff894d86e93a1c2a986dba73 971d7326c79bd9292ee5f2861a9cf563 +971e6bfdfba9c0011a81fcd7e33038ba +971ea3465a88d44e55c5dbc21d928d0d 97220be314ceeda8fdc60b6a28a98b00 9722c1c650f00c1abccac843e79b2f5b 97238a7b56d968cec7ec40d9342f89a8 @@ -34389,18 +38396,24 @@ 972c487a3f86e3084c77a8368b1cd842 972c4f922952f7795cc28c7f4bca8ce1 972d0c265aa50c438e2f464d304de766 +972d59a4fde4c97276ac9e855528b593 +972d879614232d2b0cf97c19308a7e0b 972daa442f9a0f386a39d1a22b490bcb 972dc1f6000722a029b3d5b4f03a8c93 972e575fa1b1b3b298f2807a657623f7 972f5c5d0226b5df01d321663b6e5e04 +972f7e071635148ca1353fe671053fc4 9730134970ab4c43b7029570e5f26dfc 97302e2f6576ac9a810740e08dfc432b 9731f828d6b7c096626028ea25811336 9732853e72000038f2b3f30b0f974c99 +9732f76a4dbc11f6b9cad54842511b92 +97330346606614611ea30985dd73f7c3 973364adc55a1fbd6e08c10d4cb6e0a2 973526a994fd3d8fbe1236849190e2e2 973793441794e526e52258f53e467391 9738b10ea720d153c3e73d1265037d0a +9738fd8fbb7fed0246b769155b790f53 97397837f8a2dad6dea857ec6ba128cc 973b7470f87543bb74df76bce77f68d7 973c4623a6e7da340eb60e5e320c97c5 @@ -34417,6 +38430,7 @@ 9749b4337dce690b897ad0b9a9e55a24 974be5a085d18b5041456e4690ec3ae2 9750c7f8fbed952e5fc66f64a105ef54 +9750e01d8f002b22747e032b597901e4 97540d6970737e6718efd320dfc0efd4 9754524b5b3d8b43f833e896f579cb05 9755251d8d7e80f3e0f37fe5c044e06a @@ -34436,8 +38450,10 @@ 9763752e237891e56cc4e12d12d05c0f 9765ac226a86c43776752a4237017bbe 9766724a97167f4dbf39c6eb7ee3a5e2 +9766ba2ea68c4756721754c0d80f9ef5 97673a1fd4a90398320a4fa91a3ef4c3 97684d6757edf0a3d2e8870b60f7a745 +9768da4e64d54c5c0d0878af9fbc17aa 9769247562cfc366ca2336424ac23b2d 9769df29063863e89c162ac448a301bb 976c13d9814a41f4aa38227420f6cfa1 @@ -34454,6 +38470,7 @@ 977bea7f18f0d7d3741185dc812af412 977e1826b8e83dc15133d6957e51ac16 977e88b1fd19b8eb605b28e273c7a26c +977ec16a24b827f693e1e3db4ceba8ec 977ed173ab8d94eb051454233290d6fc 97819d7ed60beae9904df331770d7cc0 978526f87698ffd7d724341a0f1d58ac @@ -34465,6 +38482,7 @@ 9789acf3684f96c2f0caafc477252c7e 978c734dab40b06736a1b626016c92f4 978e00ef2a6c3f01261f87a94b76ff7e +97907fbf8a869f11b2fcdcc72ca2ac00 979203072d263232c12986fd6eea3193 9792f0b2cd5777188cb18729451c3901 9792f922dd7ffe7208753f6dd3eb0600 @@ -34491,9 +38509,11 @@ 97ab71588b20afe5130fc390354cc0dc 97acbe0fdfed0f7faaa11e9404e4794d 97aecb5570d31234be0bf858047670f6 +97af5141c7b105aeea619ee8c9f23dbb 97afff61b33296671ab46f12190f4136 97b1e4f8518fcbc1dcb257a1c317d6b2 97b37f899ed7c1d3a4692f7b18543bfe +97b43064204f7e000c1170d9b0df55b1 97b4d817fa3d5fa7eea3a1d8c53a8b6e 97b80dfaa68568947dd40af8758e110f 97b89a29a2e73d704f62d126314fbace @@ -34510,6 +38530,7 @@ 97c3f6e57138784921765d5a42df9114 97c3f7944803dbfec48508e6523043db 97c437e86da1c712df32313751546a58 +97c4d622b2a568c671ae44cd3111861b 97c50cfa52c19cf9ee198e450e93410a 97c605921227b927c710e272ba97b93e 97c77c125b0de1ec1095665946f9c6b2 @@ -34532,7 +38553,9 @@ 97d2ec12cc4eca4cee9d3f4a1b4b9665 97d39560222cf03199d3eb307d4ce05e 97d43db51f02f49a153e021cfe1a3f8a +97d4a5c76e17ac7da8d5d70325e3b4a8 97d4ff708a7016f0925f1e8702655a3b +97d55f6e7df5cae017e01c47be5fbe6c 97d637319d9f05fa5df166258cc14a6b 97d71df148de615207ed27e840159c5d 97d7b66a698b636a7e6d0e13e5f9a127 @@ -34560,6 +38583,7 @@ 97eb6d47c85c56c6b9186745f0219dc8 97ebd925908801c041d5e02d8612a9ea 97ec2a823fa4c7d37380cf12108e97cc +97f042a8335933fc1553251a75de2151 97f0afa684c351072d65474f39ac6979 97f0b8e84b352e20cb5118638fceaa30 97f21ea489e51471b8c677ee461c0af3 @@ -34574,19 +38598,25 @@ 97f640db7545e75336ca64b62c6f84f6 97f6f78641375bf421cde330845a4291 97f72adbaeeef924d098f9b0c53912d5 +97f819ae3f26d7a2be6c2c2331362924 97f9c72fe28961bec9a4523121264741 97f9ec06dad3b7faa5029b398560f143 97fa05b630db6355d86e818fded2e7ca 97fb39afee32ec6fc9797763c60e1183 +97fb5b89b0ef514f52fc791b6a9e2f72 97fbde4f0d14bfeeed57932c7227d826 +97fc8e20a0ac040470c225ad1fe26f14 9801051dfa98d753d3c59f4d9b93096a 9801c89fcd7ede5d2e7561297b93afd7 9801f6ff6cec99e253cc8173232c60cc 9802b04cff3e6274c761e013466baf44 +9802b1a5029c289e047ea413485e6441 +98031fdcb199b05ea89df508060d7f4b 98039afcf94e20d64d6b0b64442d228d 980410a13800871748116a154f1a444d 980426cffb87ab34456e0957633f99a9 9804e0e3ebccd359ef91a18588182b3a +98054423559123c419bfcf2e9e60c520 980681e134cc3aebc605e89b1244ba99 9806b54e46b6b4291ea779bdec6d4e7e 980afc7ce8ce82cdb35f2d5947793a55 @@ -34610,6 +38640,7 @@ 981cb56ec7b7c2eafc9a4d61806d53c1 981cdfbf0e06b39c06d517d3609f0622 981e2924dcbbcf253b5afa514cd2ddb1 +982001a27da779b2505e08482bbe1aa1 98206d07f341039d436007bc119bbabc 9820b03da3e468e7e8749b7297854404 9820e3f71c19ddf149c59bd53c43f2b4 @@ -34640,8 +38671,10 @@ 983dc7469c8d864ccfe0e1b27d24e67b 983f6865f264a7eb3e53a4bbd8e8b12d 98413fa459af714715a5e075a31e8329 +98459e6f603b36134bb6c69d85173837 98474a755183568649fe96b2c1504235 9848237aa4bb4bbd746db3e3abe334fa +9848de945a775a8d2f38b409d33b58c0 984ae6a21cc0c4ed90dbe5ffd9670ab1 984c342094eea7e1c8752637f39e4b28 984d4aca35ca1780ddbbeecee84aab20 @@ -34649,9 +38682,12 @@ 984fc2679d90727a630342cd4ab5431d 98501ce196d30f3f108831f0066571db 9850413262acc40d3e791b140258e55c +9853f389deeddeddeadae97d75a31e9e 985409c48103d5367714b9cbda8b9ac9 9854e539d203750a1f54ebf2201e780c 98561af35c4611e827b03e6c9b2a0611 +9856f67dbf1a87eba03d446b6f2bb529 +9857d1ba99686ec6b0223f55fc9f319b 985a4cbeb150f9eb183c82e5b3219407 985bc061e12cea0191f04d13f69b09d8 985c5b6dc81fc75077a13ff6b7d0f87f @@ -34661,11 +38697,13 @@ 985ed3bd4c034ef0bbd42b5e36b30a51 985f8e919a0707f78311fa3dd3733ea5 9861858d5633c6e9c9f297f221f2002b +9862f6128e60132721435230a5109350 9867bad5a3c451d88ac60ca6fe697614 9868b7d69c85281f9223b5937b189121 986918bdde49c7fd75724016b8e2b31e 986a19a2a2ce121fd0d83497d268d00b 986af39f8bed3841397297561d5adaa3 +986bf52982f79e3dce77abc0e35a7278 986cca8ab073fdfdaed55a013fd3d5e9 986cea2e01b74ec662f136fd8826c19a 986d1fd156c4976fdc2b3d06376d964d @@ -34690,6 +38728,7 @@ 9885e301b5e24907dd884ea99698c66b 9885e5b58f22a4e0409df34e4e93b674 9887c8112ac7108fe005d6d3459bea34 +988a4576d2de04b51f31018b76b3ffd7 988add19399a04fd2ed6c81cd0d91218 988b41b6925343c90aa98e50f4b44699 988b4d533c0d971f953c48c5414ad203 @@ -34703,22 +38742,27 @@ 989279c6bba50c54a82d2419bf2ae212 9893f84aefb2266d323171527c3b3c11 9894248fa20ca2d268f91e62a25794e3 +9894f78d6161cff03b5712523c8a024a 9894faa0d9b44a3607c19c5e97c9f4ea 98962375ea9c8f23462fea08d72385c9 989677edfc59ba2af1cddc3b978e55ca 98971604de800d47789f28c4c287f8e4 9899fef5ae94e00b503cf86b71f0d433 +989a065155327d9d275ab7a67cc752c1 989b4ffad1c1d992b16ce0573dd3adc3 989c13c7c95514de4b43c8d755da084b 989c26da2579bffefcd2668772187c26 989c51673a3321f478eaa2cf9766b6cb 989cc22c348535f0418cf8f8c49ec9ac +989d15c0b3370e21b2bad4e9d06f0a3e 989d439f68307a8cc484dce3b20dcc73 989ecc240324f997d5e1789747af9053 989fa9cdd5555ea0a833e2c5f94fb5b4 98a017740c918e32758d76bfb9107ad2 +98a1ea098ffec5ae3773d865c95ec361 98a211ad8e1a16e0f1a6a968b64e89b6 98a21fa3375c9034ec80a0754310157c +98a23c4de43c7c089bfe5dcdbe4e4ef4 98a33f660754b552369453714ee176b1 98a370427e2add1e7edb5de39f70623c 98a50af46df6629191a60801dad60a4a @@ -34726,11 +38770,14 @@ 98a6b5608aaad73e6295d2054bccd3ac 98a72f4f2f3ff8eb1989c414e3fad1ca 98a89a22c99f5b08ab3810a657f54507 +98a92e589c69b078fa8aad7ee4ac3654 98a9c5415c2f0f13cab2da05415e27f2 98ae9241c41f7e4307c01c7e22c9dae1 98b080bb9fbf20f2bd28903208ab53a1 +98b09408502bcefb7f944f99938b62c8 98b1dcb91db4d4c283976d3155f2814f 98b25f00b25fe75a9871840fd36a17f4 +98b2f3280370b781fbfe85e86e9287fc 98b421036cdb3c4c29980e4af7966306 98b49b184deac6f2d9afb4e24cf9b823 98b4e6bd0bee591b85fcd083e4800311 @@ -34745,10 +38792,12 @@ 98bb467efa0b403ed1b71887f74c945f 98bb5ccba16820ffb43aabf592d304c3 98bbfbb71c020a8a9b3fc77fcce32b89 +98c39d44d0143c378e94ecb96499a8c0 98c3ce51349ebcd42e952f4b614a97aa 98c47644984f006c8b6b544cc5d552d8 98c59b5a2be1f6586e85cc73abd19b07 98c65bc11a4ece0ef2aac90624369e3e +98c6c69703eb3cbf5a18d671ed9a3388 98c828214a353107cba21157a2d5de66 98c9514ba5acabd49f5ae5129c2514bf 98cae71ef499a79f2e55da7a7ae1627a @@ -34777,6 +38826,7 @@ 98dbd5f79f4f3187b4e5723fdcbe847a 98dc646fe50fa365d904b3da5ce9632e 98de165d9606ea821471fb5e5aa23dae +98df1ce4fef803d926b9639f9d1a60e1 98df4184eda63224b3c544e9eb958fbc 98e16830a0441aadb24eff7edbc61201 98e2314aedc82b248ba09e5f34bed98e @@ -34789,12 +38839,15 @@ 98ea69946f549a55f78e08cf6a54e2cd 98eafa1007297cada3b35b3e7134bc74 98ebd9a569cabf61ab8da49f6f72c432 +98ec35e22b34b0349d9868118e53ae75 98ec6875c25d881ed5bbb6a879376da7 98ee260a9f8a8680a4ca3fce12b702cb +98f18c2f1d449bc5a5c24e734a0a7f64 98f2caae06a62f193fac4fbfd57e9441 98f3494373bb5c5f27ba72f516a2e840 98f43aaaffcbaf05d85bf8ed19f9316a 98f4ad3e528d6bff50731b45e029e778 +98f51a63aac2d83ee9ab822e42fbd512 98f775f805c1c215922d0766e9941f99 98f7d2ddde6853188ce00e023b1d1359 98f8449e4b0f2a0d416cced5745a97a9 @@ -34803,6 +38856,7 @@ 98fcfb0895859afd12a58beaca740a64 98fd725b009ff4dac3b9d02bed4c488b 98fe0cb4b061c20d3d12956c2fe65512 +98fe0d5acb7bbf503ac81994fac15dd9 98fe618a3ef98d07d2bff144d1c53cfb 98ffb050988f3458f77ea6ddcaa9f655 9901035a6dcb97216271b5a71370a0fb @@ -34819,6 +38873,7 @@ 9909535e0ccd49f1b171fd13e3cf0c87 990f17ae8232ee174ce064ab6f151cc9 991181f8e028e7d1fac8e76477d75c56 +9914688e1770fdc6fbc1f6b4cf075193 9914b1b60a0c66e29efc5b8d04445aa6 9914fceb5130c6927d80d65db68dfcb3 9917ff6c80ef40106ae72e963b4b0483 @@ -34849,12 +38904,16 @@ 993438417815b02b92347f118905038d 99343dbacb7769710289f5cbea75b4df 993448cb5708d02a06c728c627b73f5c +9934d9d16f5c8a87523dab7d375cb6e3 99350b554b7d9570af5240483771d647 9935d15d6347b509020fc164337a5c5a 993835a5762033e25c6d31d27d35af77 +99392fe6e2aa753a84482e2da693f836 +99394abade37fdb65442d1710e7c36de 99397a093960f75cada201535d8afbc7 993b875b84f7b0afb2857acf87bb483e 993ddcd4044305bed0cbec5983897f23 +993de5db238e27f4e2b209c88bd0228f 993ea664babe1121e7d7284b105ab351 993f03a49f08e60fb3c6eca9017cda8c 9943ed8e082075bdd74685fb7472f4eb @@ -34865,9 +38924,11 @@ 99464d154eb9a605723c9f1b553a1aa9 9949355e435526a7869ff9d8de2bb4e0 9949752757d63a6dff10bcdeab2c872e +994a60ec8e6e25fae2c31ae335147108 994a674946d9e8deb1e2cfeaaa77cd15 994abc3e771f767027813718dd3903a3 994add08ab5945115bc225f2efd20cd6 +994b9a6091e27c6f21010549326dba8f 994c5e51ca547669e5289e62bf2db5c5 994ca46f045d336a9f0f83e65b432cf9 994cc0029255e3f3c1790954c510c4b0 @@ -34881,6 +38942,7 @@ 99537572a95b5c80d7e91a4efd17dd3f 9953e33ce3ab7c46964bd18dfcc88a02 995a5fbbac0b8089504a4e17b35c6a3b +995b3cecc8b77b2efbe538b5e2ebb389 995b52bbb5bc84c4bb7a4faf04e10fb2 995c2ae2796dc65ba029f5f2d32dafa7 995df8ada5c83cf740813d72201fdfb7 @@ -34894,6 +38956,7 @@ 9964db07992625cf4fb2e8a438bfb430 9965b000b98076ddc7f107dbb80c0387 99673019b873ffd447623d24638c7ea8 +99691bdce015c15c60a887d723984773 99694b0c5774b442f7236f097b005a7f 996ac73d24c90bee284d600e22f74cc6 996b3d59753e6ee7732666b1bb9154de @@ -34908,10 +38971,12 @@ 9972a3645a8d09028837bc7299cb3e17 9974d767448ce0170576627b96a2c8d8 99780939e1ed1ac4e510887dae1440ae +9979c51c55c1d8be1f038b7b57edc65f 997a1d008d5ef574bedfe17178fb6091 997b3a72aa16f5f7ef4a11834bd4ff94 997cbb352f71d3ca77f386d954aff88e 997cc2a04813d5e7d7b2ce197a1f7b70 +997def3b33409eb1b077710b6ceeaacc 997df4a45bff429898bf8a6c2825447b 997fb3808f9b0f63bba29aaed121c0e3 9980ab57721b93ad056468e060a07f4c @@ -34920,6 +38985,7 @@ 9982948bf46b7bd3a2c433958ebacfa8 998294e683127ec992bca2856a765079 9982dff603cb8ac4d07c56439c6fbdd5 +99841fb8494d30d50f487ab34a9265eb 998556cf566f3be1c816fcfe097a5c71 998594acd134e1b53838898830d04ece 9986868b49c9074c735e276c8036a8b5 @@ -34931,6 +38997,7 @@ 998d197fbdd63b208123048549ca5e14 998d1ffe2a5cf2ca133799f3013dd58a 998d249449c72d142a0836a869c75977 +998de4c9f6e5a058ed624e607f9d2ecb 998efdec2193f73c41d22aa61fbf767c 999013cd579d6615d8392ea87db9e137 9991d033cccfd2f89ff36d7a43112722 @@ -34962,8 +39029,10 @@ 99af31f0bc744916b5339fba24489f48 99aff8cac7f4cbc8918af23c3b13d20f 99b01b7026a89999d010d56ca65ba83e +99b712735ada2a3d6b267cd9a7b5bd20 99b78b73e260b25e311cb1610fcb7149 99baa4f6a3a2c3200007d3c01731c0e4 +99bad414d4b74eca014eff1ad87dc0d1 99bb940cf15a7a5ed84d5c9b0974d6ab 99bc56ad959f27db04a164f8eaa39f86 99bedf22341c75c5eca47d8d6d9b0d14 @@ -34982,6 +39051,7 @@ 99c9bae7c134453dc8754e98c1fb9c19 99ca93e3a9595086e2b53c0dd2edd365 99cb14d3245a9fe797c0b6774e33da54 +99cb3701a530ee2d610dfffcf2f07f9c 99cbfa887a09f255204af3f5a2db389c 99d0afbb440990d4db1fbdfdd17c2bbe 99d1501077821b4c90d628ef705b949b @@ -35009,6 +39079,7 @@ 99e3e188119f0d72d5ce4567f5216972 99e43972c52592e4ee8648154d8b4d4f 99e44f7f419814a53de7bcb2c4a684c0 +99e5dfa567f55860e473b1c207a9f90b 99e7ed9ee23834eca7b2d74971c9c0de 99e879d68929a5267cac5cbbc44ee393 99e8cbc39085551a9b243b64beb788fd @@ -35020,9 +39091,11 @@ 99f0f82ba5febb60af18640c9538842d 99f148c5f5500a0dec38e5d8870b23dd 99f29e99e2a6940dc179053e851faabe +99f3bb4013e9e943ccebbaf7ad264d6c 99f3e356c386afdb233864e8ad214177 99f4191ee726bc014f3f353ad81db6f3 99f565ba7c5e8c67a9831d793a1f0ba9 +99f5c788be9daaf4df8ad6b1d0544bc5 99f63115edaf48d2e7bfd1ca814122b0 99f69dbd30e3d9651f21f243a998bebc 99f868eb6c6190075cbc47dda930ba74 @@ -35031,6 +39104,7 @@ 99faab60225e8572687023f52eba3238 99fc1f1099bafd39c166e48877826037 99fef578fdbe2e00a934c0f33ee5b42e +99ffbb910c8eca5929458a28cec4d87a 9a0042adb3bef413cbc61f510430d27f 9a013b74f4eab865984c61fd7a47919b 9a030dc3f2689be4b7aa11054c6612f0 @@ -35052,6 +39126,7 @@ 9a10b0390daff5ed34eb7c14d4b45e3b 9a124b15d886618bef3eec663593a862 9a12bd9cffcf2bf50a0825d10793d618 +9a12e26175dd77b8b8cd088b5adeab7f 9a14e44d49950f917ebdd8c73c56e08f 9a16a55e9e38535cb17be2a548161509 9a1706060c181cd8a421d50141286fd4 @@ -35096,6 +39171,7 @@ 9a387d8cb566ee78a96193ef1a192850 9a3914493ef38433396b65e45c096be9 9a39bd3b56fc6072ae4fa02ec00c769b +9a3ae58bb600aae32adef7bb21d93545 9a3b945c76ba2547e423647f7e9d91de 9a3c78875547559cc2af54ee9ce6ec76 9a3e17fe7d84ca993efb7893f24262e5 @@ -35109,6 +39185,7 @@ 9a47e278f1be5690eca7572a3a6dc991 9a483b125208a2d1f6d61add143f8248 9a487c6d6b7f7ad192bc1f7c5c5bab88 +9a4ac335efbef786b4d47af4503be043 9a4c3990a9330a0550fcd05851845e2e 9a4e11c5e489ea0884c589f03f60e4d4 9a4e746739fd5bc0495f7dc8b9739389 @@ -35127,12 +39204,16 @@ 9a604110af202551f31755b60fbca1ff 9a6104705ec55b6efecdd74940d1a19c 9a617256546e94b1fbf9ce2de483c36c +9a61c783deb6e274a97b03f6d99aa913 +9a62894f638477f4b2a32197b461e6fa 9a62ba696d425b32fce529bed452e374 9a6322a2079fbeb6b5bb82a2c9c640cb 9a63ff53dfed7525089fa046a56b1df2 9a640b5756abb61711666db8355cade7 +9a64c0fdf180ab5e34dfc07bce6670ba 9a64df7df0da564a7401070d395a1f3d 9a64f0135177a7b77398221842c7ffa8 +9a65640cb2f70ebb55694a14d7640006 9a6625b6bdff7ca8607abd81cc478007 9a6678504ebcf5ed012dc2992dca43cc 9a6694746af8f583b9adc5e0fad82ba8 @@ -35155,6 +39236,7 @@ 9a76ad439561cf5b22472bb3309ff997 9a770b51ec2966537cb3d80614f0fbf3 9a7914740f658e560401e94f698ccd16 +9a7a9fda80d859efe6e1f153e5689d95 9a7c9468e714ce426f35f54bbb634662 9a7cd6d5ecb1653f819367ded2b2ee75 9a7e280f782931e129648003b7911463 @@ -35171,6 +39253,7 @@ 9a8eacf8ca09b27fea96fbc02405911d 9a907225731bcde4561ac9ab66e81472 9a91719444a63239af0d86c30e134976 +9a935186fcbbf92cf1fc2946152546c3 9a942a6f348bae11bcf05ef7d06ad1d0 9a948ce761b24b4ee16ac56a1a1949e6 9a950a641179ff88fff59a4b6d91f048 @@ -35181,13 +39264,16 @@ 9a972f7fbc8d4f6222d2ce0f64a1c9d4 9a97a3314c361ebadfc2b946adfeb872 9a97ca473bfbaa05cd78484275caa40b +9a97f222197608fc3d0c23d6e475b617 9a98e787463dcbdabbfa0d877a451793 9a9c8ece56d0965a11cec168d13a103e 9a9de95fc21c5e67cfe276211b611145 9a9f0203916c3dfeef3a60df7379e918 9a9f3c13d262557e798e360d0b2da5c8 +9aa0251cf5362a539a1dcdefb49f392a 9aa16a30cdea0a9ef04849211c09b032 9aa2086f4f9367e3015fa08a606fd8c3 +9aa31e8db9c78c02aefa94e401b62f55 9aa41d99526540f8304bfbbeae2e86b7 9aa5751e0c5741bf4798e79b38027b8b 9aa58230ff51a8274ed5563c8a98ea83 @@ -35196,13 +39282,17 @@ 9aa6e4dd838aed76de4a37777048e882 9aa740c0636ff99f3567f8b12e59a8ec 9aa8295fdc5855782213084cf32f3599 +9aaa1790297b92a387f02a289bce0e71 9aab44127b950ce5c75082b70a507e69 9aabbf80d2d2115acc7c8eb0b958dc9f 9aac444845ceaeee287bc793b5610568 9aae1a6eeb6a87b24370bb0ab0540e31 +9aae9bb3061aed8256bd1d1586b92f56 9ab0dc26948ef928d21cd0b5d8bbfbc2 9ab14e8cb268e58a0307d31927d2f3ab 9ab1667664b6653cdfee0d6c58f338c7 +9ab232ebb3b0cacf5048ee50ac5491cf +9ab2444de6a2a48442893f8d1e1ba80c 9ab34161544a8bccb0aeb9afce28c4b2 9ab4bede1ce07cfec5d26c1bca57a3ba 9ab51b39568a364f9cf36762ad574896 @@ -35218,6 +39308,7 @@ 9abd80e905c1c28e89da71600d041f8c 9abe589c3e32d0d0dfd2f931c500d81a 9abe831742c014a7ba3e106652235ead +9abeba771e2c9e4ea91994850ffb9fa6 9abee557204f22f21125694601e862ed 9ac15ef03fc5339403c8821436314608 9ac181158957408884b7f815607e6a7c @@ -35238,6 +39329,7 @@ 9ad2fde5ea54120a6f2f4fb5d2459725 9ad35fb817875ea91f8f645d2adca138 9ad3ea7addc4eb56904e9c75efc0c0b1 +9ad4127734d284c732e5ecd951849eb3 9ad5f81f42ac4cc5fa678824d6911665 9ad60b226d4873229538ff9503887db2 9ad64c30bf5ef07727e45cb5cedf8fa9 @@ -35246,6 +39338,7 @@ 9ad70cc24ee79a4f1d4890e061e8112a 9ad80c2ee8d5cd7aef2d9fd823874152 9ad8e6b0f8c80b493de87151098cb379 +9adac856838c5e42ae1742189d7a30ff 9adaccf78f49ccbc7b766d49b0125186 9addbe765b40096f3b88b72e81613cd1 9ade478b79ad75aa21dad9d4e08d94c8 @@ -35269,7 +39362,9 @@ 9af56464c469c49ca3ec0bb3f6802ac9 9af87a38930337d561077143e66ae1a5 9af9689d5634fa5528e40940d13f132e +9afa0ba451d32bd302530c7717b992ad 9afa1944e9fbfa375302781afc8181c8 +9afa73809789f3263a979e4bf12034d7 9afa7de0f56cee6ba1fae16f6f548058 9afcc4867d69c82cc9d50928317ed6e4 9afd4026787c8e6b1e273f591544531b @@ -35284,6 +39379,7 @@ 9b0680dd24542c87887b28f6c69556f8 9b06ac784f943e6965fbb312dd5c685b 9b086150b6d7d8d4c52ab13bfe64c7eb +9b089f78ed54471cd63261085f30e9c3 9b09427214987d1ba03b3c979db932c6 9b0a4826c0fb86294da40eb77038a3de 9b0ad244f144cca9ae74eee77883fbd0 @@ -35310,11 +39406,13 @@ 9b1ae07290d1cdf2a87e0505e142f141 9b1b1a6a31f32779a16657d36bca1efc 9b1d1f271805ec311012c57a612919ce +9b1f6a4d9877011b61d711a0f6a864c9 9b20bd48e5a73120b86d1cbbe9d6e978 9b21a4bd5eee69e7c6133808c7b340ae 9b22f063360d957b7d362b32720804b6 9b23168e739fcdb4d4559fc4128c8bc2 9b23d6a1117d7d245a34799957b60d75 +9b25e496877d45d09e4d41e3b8eb33c5 9b26586e62fc26a34d78da1f4f29541e 9b26fdef8e7e71e50d25975546d454bc 9b274ff7ae36193d84cd5f8bdacd9468 @@ -35323,11 +39421,15 @@ 9b28c190fb8af1835f12e78527c7d7a9 9b29631b084552d7bb89f9123426499d 9b29999db3bf9e6520389bcc4e9641c5 +9b2a03585fec7345adc53bbc69015116 9b2c272354b6eaf5ae9766f56cf37587 9b2ca3e22ff66628bca4a7d3588cfba8 +9b2d2b3b8fd60ff6f0fffe90f414f311 9b2deaf32ad2d063841c0d42435b684f +9b2e3068397fe836edf12a5a94ff3ab0 9b2e54b0692c0f1b55ed016814eb56a2 9b2e59be34d858455b40949df2158649 +9b2f4a1b2b903e3ac0d97ddc4ac3b1fb 9b2f940062185a39a905b47527c6603e 9b305e24075b2f8c143d85131229bf09 9b31642686b3a94e234a1098c5c1d025 @@ -35348,6 +39450,7 @@ 9b3f2a04a21480621a49ab5ea27ee1d2 9b406eabeb5d06a582e5731d45e96a5a 9b407ece951031ac8d6615b09c680873 +9b418515139c7736d2e3fa49cba6218a 9b4303b36a2a88f4a95ab0acf4c11026 9b43a88e8c229b6c63df181bd8b8b25b 9b4419060654d4a053c0c8743d85cb8f @@ -35367,9 +39470,12 @@ 9b5164216d76cb31d1316bd1d0e5f966 9b5221d2a5d0e665c37a5988f13ec225 9b53a09083ba1d651e726528795ab7e3 +9b53f63b0c85646ee1544c0a260ed7f1 9b553826884792184e5c6b79aba3e8de +9b554d81fa25345c5fc517a622570f2f 9b581050e2ecf0b9f9d4c378a4b25463 9b586352caf591e6ae404b6db72f6380 +9b58a42c83ac634fe2737495943025ee 9b59989bbdc05148caa21fbd71495b52 9b5a1dae532ef9bf9dd37ba88d3c8710 9b5c02ac15948473e91c6be7687540b3 @@ -35378,6 +39484,7 @@ 9b5eb5b92aa9a2fd3264db641f9c3cb9 9b5eea025b77256b7e2daabd2b697a3f 9b60df072c6f3027ee44a2100cb74996 +9b6122f11ab7e9d9f0ac34841f1c0bf1 9b636eebb8bd63e3f3fb8c5e1ad52c21 9b64c0ad5cb62fc0f42e519b1c5da203 9b65c07002b3fd5225cb7a6696725f20 @@ -35391,6 +39498,7 @@ 9b6dd83a4787eb5fa608d580628b2aa6 9b6ee4a9dbb1184c00391993aab48080 9b6f38b4afe4eda4d1ecc92af0cdb446 +9b6fc6a1c02b387d34301c085b6a64a4 9b6fe181665f80ccf11f4821917f059f 9b70c3addec581c397fc74ca4e26406f 9b71b9bbaf01598cb9bb3d5b8b88a656 @@ -35409,6 +39517,7 @@ 9b7d88067c11d22ccd9f86be4577c7f9 9b7e3e613cd060cce8432971440c1a65 9b7ec3bf23bbc7c0a527e3b62bbdd33f +9b80145b3cea9d101199f572d572a3fb 9b81275021ed370fdc3771c473170e2f 9b82f38ee95a8efaa7632b63d315ace5 9b83337aa3412932c25f40176b5ee1c4 @@ -35424,6 +39533,7 @@ 9b8a1715a34d57fee51666870f20fe50 9b8c5f08ce3b46911d4e25c6ceeb2541 9b8c8f74ae3f9bdf9648ed7f04e4324c +9b8cbe5ec6f56aaca21c350a452a87fe 9b8e39015c70880adb9c10c2c6f791a0 9b8e5013ed0a3eb00ee34ffbc9d89395 9b91c09cafe91467493be288ade8ed9a @@ -35431,10 +39541,12 @@ 9b942445a0bd32aeeb86bd922cc0636d 9b9466099807d93801c10e04e458ccc1 9b949bdf85ac91b8dc4eadec68fb7309 +9b94bafa3baa11ba8f6e5d2196b5fc31 9b9638e3cd3451ccdfdb8f069461df58 9b9692fe9beea6853eea8dc16596cc3d 9b96e63e346c796eb4fe46675783fd6d 9b97872f6a3e1afd88f4ca8db9cf4988 +9b97bab2a8db8f4136384f7cad610c57 9b97f24c07674e8f710a9446ec90cd3d 9b984da00ecf7f85ed4fe414528e80b4 9b99179609ce5e260f85df36bd954ea5 @@ -35444,6 +39556,7 @@ 9b9a8dd3ba89ea9bee9e7de4e83b72c6 9b9c096618636608ffbb0d893d7af5e3 9b9c8c0437dace5c7e1f63a94cf11f62 +9b9c9e34b327daeffa825eb758ce46de 9b9cc313648c674294ee2d77eba4a6bf 9b9e760d093822ca7d89184c3c4c6a63 9b9f3d4702a291ff307d992164fec34c @@ -35452,6 +39565,7 @@ 9ba1a1961a79543c7ac8efc7afa6ed7a 9ba268e0e872fcd67cbe81bbc605f7c9 9ba35ea204c86c15353707ca77563e34 +9ba4b32a00c08efd85dd8a82e57920ba 9ba5421e0e20f7348a5479b56bf3c002 9ba56a1ce567d3ede0e8a63ad3641762 9ba710a773525fccf0d30f540474096b @@ -35461,6 +39575,7 @@ 9babdcca2fb7e9411de167206fa248c1 9bacc40ee17421bd468812e58f128310 9badc65014a9ff30df6d469fb5897689 +9bafe02caf9b37b56d918ac83bf569f3 9bb2b84b477a44738c474ddf3d8d800a 9bb3a061ff824e7e10fcd6216cc93859 9bb56af2d871fc38e91ca63daa6921c7 @@ -35481,6 +39596,7 @@ 9bc1c16f7c40c78747370024b0c0d9ab 9bc3a8c5f0c2c3069c8054d3333bfbe9 9bc3c2c98032a670ea0391851c7c08d2 +9bc4b206b2dc5ce00ed022df97749696 9bc576619b77fea181d01f8e0f4e43c0 9bc60241f70be80046243f842702c282 9bc60eb2112f11c439e1567c3b50cc61 @@ -35495,8 +39611,10 @@ 9bd608a33735bb22a5bf09b244ec1d34 9bd77c4d07ec05bfcfc1e1db5b7e2b85 9bd89bb369170cba6649a681786b8d2b +9bd9c4eab64ecbde590911f58c9fc923 9bda9800e66f4e3a9cb66973c769371e 9bdafc4402508864b66a2fe546f0ed5e +9bdb9fa1d1f9cf5b27ef923c6cbdaa3b 9bddecc39197487fe8d28a853c3075ca 9bde563a514d60ea5ece05d7d628f770 9bde7c1b9dea57d977ad740e2c0b1062 @@ -35508,6 +39626,7 @@ 9be314a6af4bf72219be4aae60d3e692 9be393e35171c337a27e1b347d383954 9be3ddf99d8ff3336178670fb9f535a4 +9be4b97e8e5ff09a45dc10fad22423c4 9be525bc8faf2fd2ee9305052bb82e3b 9be6a6266bb2cdbf00bd26bce35deecb 9be7f989e34dab92492685e9c0e9bd60 @@ -35521,6 +39640,7 @@ 9bec903d0b79243db395f751f69f1cd8 9bee43a6be4282534ba4278e60a08d8d 9bf1515d303c782486ca14ebc2eadfe9 +9bf1b6f490f31db2cf6dfcee12391fce 9bf2ef40b22e4ea068fe2b65903f75aa 9bf313bc672172204cab2010efc5f6d1 9bf34dc847b4be090accf308c53a39c7 @@ -35534,6 +39654,7 @@ 9bfa452677be9e48318a9b7cf2ca12ea 9bfc78c4290b03e71411ca6fd4b95479 9bfe28fad5880b23d388dc9de3587263 +9bfee042164509653cbdafb9c3d8cb10 9c009bbd9c4b85f7c4648d75d172743a 9c01eae02c6441623ed57465dd36d244 9c021ffae8f545ea32483562e7e8c6ba @@ -35568,6 +39689,7 @@ 9c2bde90d2462140588a7bef6168861c 9c2c5340021622a5d1f6b340ba259ff4 9c2e2f360171fd37cb4ef6abb2425665 +9c2f8e5b2366ae048d42053df6358673 9c305d9d9dbbf9126837e7f76caf54d9 9c32d44e3fb6b246f4568032283f4919 9c336f114e6e76b4c5b291d94243ffac @@ -35575,7 +39697,9 @@ 9c357d95439a89a54106aed62ea6d1d9 9c36de49a8b789926d0a78db397c187a 9c38de2dfe61e23ca86e57a0c1dd3dae +9c3b4bbc4bcc1961ea5cd0444adb89c5 9c3c18e67a28c5a69f0f7c1b8bba2701 +9c3c8356ae095da9fd067eed427d41c5 9c3dce15a4c0b2108f7227894f91a95a 9c3dd9f31384073163a8c3c798a36d2e 9c3e75db9f7f94aa582f52458eecc3e4 @@ -35591,10 +39715,13 @@ 9c4c797a190551ea7f34352cfbaf0456 9c4cd95ad94d268f9bce229d4d628f86 9c4e31171417d805ae339d110d65087b +9c50043a8375dec05b578cecce6f2d90 9c5098f0d6c6ab8662cb0531cb6ad7c1 9c521b366b4068f855b2b59401857f4d 9c53594f06fc070ede8541104d9a0166 9c53767ca6a6d29cdbbaf5765781fe18 +9c54c501f4cbd0671305d16673cd5f02 +9c55ddec64a3a15a91f5c952ce1b37b7 9c576a4f4136636528827533bfbbd8ed 9c578ecd19e7f72409fab6aafe006540 9c58ef77734d2cd34a9b80ef8545e797 @@ -35607,6 +39734,7 @@ 9c5e49821baf79d9f1c336c7a5836de6 9c5f81df4e7554e8ff465cd670837699 9c6054836062a7964773ef6f0216f27c +9c628c4f111cc87ef6b56dc6df210064 9c64ba7a9c6742e90cc60939b2011337 9c658a56d72aee15bcc5f03109b99065 9c677c2fcf6bc54d4d7470ab9e6d3ade @@ -35623,6 +39751,7 @@ 9c73aeaffbb4512a6f8da6bcce055c4d 9c73fc6c2670e1cd300755af069d9955 9c76309fe300b591987172f139d8fcbe +9c76d5198d521b3f6168dc5736def8ff 9c77b77f356058fc093ee8e8fc9e8dc8 9c79e8f43423fc8aaf5b0e584acc882b 9c79f23c8d4fe9f146ab04285631d4e0 @@ -35632,6 +39761,8 @@ 9c7cea6550b4f6830a9df5cf2cf50c2e 9c7d9b1fb07f13cf267aec15124782db 9c7e0fc8c87d95091a105ba5b00ab731 +9c7f38a9c933fde4caa9c860ede1b308 +9c7f57c3df7ba5e9aff2e0cba811ae83 9c811e5394ef94c273f6179d18b96aa2 9c83fd6f20abeb40d23516c450c0321d 9c843cc321ec5730dfb015abae7b018b @@ -35645,17 +39776,23 @@ 9c8a66e3a227db22f792c31bda87b3af 9c8c3f99502a60fb004285c651b33046 9c8d808cec56ecfd58a0e5facf04a18d +9c8d84e4c2dd196b0be23ac9e0decbdf 9c8e62a07e31d23a592bd073716fcf0c +9c8f2b719839b49ab211b1de6219b38f 9c911d1e91da1dd09d0db7b49b8d6652 9c921edcf290a38a9d0ac33445a46668 9c9412b00dab9ec82f5e2810226b7081 +9c9649022714d7e60d3b33ee5e9431db 9c9705a69dd2da51358aa9cd4f829231 9c9841faf98479622232ee9fb5053b91 +9c98658ef202a1abe26602eebbb1e547 9c99cdff1d852b6cb47d5efe82fc2cf2 +9c9ad5fd0fbb15bc66b354e9d39a6555 9c9b34fc26185f33c36c58f4d659c7e4 9c9b56510fda23ae95de29584459cd3d 9c9ce55fa1d014542e8aae67204a9729 9c9cff0970c8488bbf7b2e8653a5309e +9c9d5d006e86fba491ed9b89f9afb4e3 9c9d7760f6042f29c9396d3eae5bf5e1 9ca2e50b7009f49f2cbb777874f06730 9ca4eaedf8df09623f3f466e3afb0104 @@ -35677,10 +39814,12 @@ 9cb254dbae5c22e2864b4acd510411b3 9cb4965157468f3d627bd7efcf371c4f 9cb60393a36d50c19b0b9df4e6d00d70 +9cb70aaa4d7ae00f4ddeeb1363348716 9cb8c52450f2908c8b5cda073bbd3caa 9cb8d5d634702be8dd4ad894f437897a 9cb8f575a7111cb34e2dd5609759a8cf 9cb95f8065321e4e067b4886a823f9c6 +9cb9be273dc214cd497480bf9a37d5d9 9cbab19f988caf90a840d53c991f07da 9cbd15df7a85061fcf73260894f3b66d 9cbdf78c81335e1925e936159be294bc @@ -35699,19 +39838,24 @@ 9ccc655d9d3cb48e7826d77de353187a 9ccc98a21806d1399999a1905678b3fe 9cce3e1cb9b6d2d82d2054588c93d0e1 +9ccf44812ae4b6454ef02b43a93ef2c0 +9ccfabd573b1d673b171617c3936b67d 9cd11c7473772e875dee00b6abc87e1b 9cd4dc13d9b2770dcdb50c788421b43f 9cd55fd5c46a85f03293f972441d4742 9cd5a9c3f9058b32d2ade35c89b9066f 9cd7c6aae7154dcb11beeca330982ca2 9cd8615097c47d9e6c07a206cf20b7b2 +9cd93dc0c9910631c8e44b34abfd85b7 9cdaa71d475b8655e9304567c45fd2d8 9cdb9987fa143095c4524eeeb12aefa8 9cdd4f5dcc015846ab92db8e15373835 +9cde1fb0b996a9cd22611bb9689f02a4 9cdedd882054902d8e4b207080d26e3e 9cdf403f99c55197f124add3d2140480 9ce08e10c5cfe510e10979363b8f17a1 9ce30bd5ae43b1ed48a5cfbec57dc1c3 +9ce335116ab492f0a144157d95a63f66 9ce4443ce1a81cda5f8331d30226fd67 9ce457131ebef2cd15a6ce5ab5eaed92 9ce45c528bf0632bbec6265e7b8aa451 @@ -35749,6 +39893,7 @@ 9cfffaaf32542f7748d14f949c1dd763 9d005dbfe3578a14c985dc51bbbf416d 9d00dd005dfc71816fa28cb17692fd9d +9d0252b3a53ee01a1a24c0c6a6001e8f 9d02afcf80e198045f91e6f942630a2b 9d049f9bc6cdfe980c36bc5ad5d564f9 9d068673181ece3e1223e36f14cce9f0 @@ -35763,6 +39908,7 @@ 9d0e3fe6731eb90a9117993c2f0f160e 9d0eaca84ba9a3576218da3e9f807a66 9d0f7cfb9074a828c725c50f43348666 +9d0fce0f32b8ef6b0e07f8099d6888a8 9d100ee4267436898e861fdce9baf679 9d10100f21200dd19215a1136f62546b 9d106107e21c87963e637adbaaff983b @@ -35770,6 +39916,7 @@ 9d124680d303f3bdc049f18844a22456 9d124808d20e471bc123acf80ee75083 9d13669a54a0641de3d5b7f46d6d10c3 +9d1783c97492c3c3385ab8c66bfdb1a2 9d194d10cad48bd920fcee7703e07199 9d1a3cceff86600b3964561365078e15 9d1a3d8295436a7a9112023f6b789bfc @@ -35784,6 +39931,7 @@ 9d2633b3108d658938b124a0e0f3ef36 9d2a2a2c1a900ebb5795e2b8824554ac 9d2b77a6e09ac9ca0cdbcca46eee6f7d +9d2d39d106d4ccc43b8cddc8274402f2 9d2dc9b135294895cbf18e5593e12b47 9d2eb770acc5c5faa3eee32e7c8da74a 9d3097766a6e3454a651cb4e329046ff @@ -35795,9 +39943,11 @@ 9d360acb7153b53fe01cc54e4e603e02 9d3614641bb94ebedc3ca44ff1708a6f 9d39aabcb7de6e06c805830c103006ff +9d3b26c3a3d516e810a317305d5a7b7d 9d3ba67014de60092c2f3786860bcc64 9d3bbc7e385a3426b8111c525a49f58e 9d3cfba4cfb1d0b1111620251f9d68e2 +9d3dba11be4b4541ca7416b7b2e45acf 9d3f099f43d33cff18fcab8783540f3c 9d3f31bfb2a361197b2e13b616c20b42 9d40846b6d94f8417df6b600fdc6eda8 @@ -35818,6 +39968,7 @@ 9d4f0cf25ae0a482d02c71544545ab54 9d50b869f9b90ccc73722e94c57c348f 9d5401c0e33d89d6f4115dec3757db52 +9d549e588f35826fc4e7cd36cfeeea7f 9d54d328a0b8ef4c18d65199f28381ab 9d568cf5eef459c42fa7446fe8be6816 9d587a46370e6f4535e4328810b7f230 @@ -35826,8 +39977,11 @@ 9d5be346a55ad49c86c87b306fb9dc92 9d5cc95442167a593f8477fa2d6f53b5 9d5eee56eea325dbba8ead8b3f34ec1c +9d5fcbebc4c1a841bc9312581dc68a53 9d610690db279eb197640002c5c4076f 9d61dd6456e2b441de9e4cc3e2382e2b +9d629444c63489e23981e787b0f4ef32 +9d653b1cf64b9b276565ee81d1bc9855 9d654ef391fc0b7b24a03a923438ef27 9d6600f52a7853f0c3ec34d6da5b4488 9d684edf7521a78d694304f956c60c93 @@ -35840,6 +39994,7 @@ 9d6c23bd5b6aa5e7027b3491d220e027 9d6d78535a1bd537fa65e85990fd7efd 9d6f29775120913f017ef1a7b67fcb37 +9d72d2e0010bab699c3c16004f1c786b 9d72dd4b7a2d90d38cc5630c88215a77 9d7308a8ac964c411a1818f167150855 9d736e55c3cb558298331f65a04ca0e6 @@ -35859,6 +40014,7 @@ 9d86e9caa97d78704d3d5d742dac748b 9d8702dd66f7b9b45ef86c9309a23fe6 9d89256bf4ddcac11d3f9fb9a8589a55 +9d899fd31b5ae6fa90f6f10d6826a2fd 9d8b157d41cdededb69205462dd6808e 9d8b512eb626b4f6bea813a6b6104e16 9d8bcf59a6c555dfaef0c54c8aa5e75f @@ -35867,8 +40023,13 @@ 9d8d406c6424d35a34f3d8c6db5089f5 9d8f554ba1751eb6f1d06e8e48d829ce 9d8f83b4507e617a4fad5bb2bc9d000f +9d936c14e6a6ead09fc37db404e3d496 9d946c9515cf0e4bd5af8ac30f7398be +9d94f0b4bd8975f3d6216b82633d3173 +9d95908036d46e636f05bc52a90ddb92 9d963045a9307d314b233f15cb0f3edb +9d973bf0b678224d33d99a71b987c5cd +9d980162c7816309c58cec2e9d8cebab 9d990be0a303be11b290bc443da71f4e 9d99d1b2ccb5a8950ac93b23b7696e35 9d99d7221d55f153d67e9bb1e4d3061b @@ -35894,6 +40055,7 @@ 9da82c2fdccb96ab140f80fea2a52c63 9da8794c05b27f885365dd7a53afeab2 9da9c9744b10117393b8a1adf6e03979 +9daa7b3ae871496ac49d737abd8e8f85 9daaaf41695635e424c0efdcf2d8cbd9 9daafdd849dcd80e1c4dff3b18d72bbc 9dab99380d78b94f60aa01fb554cd80a @@ -35903,12 +40065,18 @@ 9dae04cc8895a6d00a114215340d27ad 9daf46f525cf00c5100f21e9c2075f7d 9db2785dd2ee1045dbed408cc7e4f5a6 +9db2a27e5bff21060319cd4e68958ca7 +9db40c77a71bcddda367282db46bbeec +9db5589dd675271142702bf852fb704c 9db607c1f5da6d9afb22b3dfce7eeea4 9db61601f0efb4673c5be1b595441e25 +9db661dbae70fb4e186e262b5ff7a2c7 9db83d87d80beafd40d62460ee171512 9db91ff1b7a7001c4d3cb8f84307564a 9dbc8c7457e5186c46729239b8fb336a 9dbcba23b3bfc76648d971b518507129 +9dbf9f9b83899d3b822b202feeff4aef +9dc089c3ccb769578206c6fee72846f5 9dc11c9295c43aca9633b23ea160cc1a 9dc2ea6141a4440908d9a49b2d9fa677 9dc58faba8c34f18d3ce6e132814813b @@ -35918,18 +40086,23 @@ 9dced5d83227ed323a9bf163e462c66f 9dcfcc7a2df12f34022b0151c7d334a0 9dd00a094f41d53f106d9029b6059ba7 +9dd118b9c67421f249c9b8265a2ee349 9dd194dd70c454e38a2df74ab5b6a7f1 +9dd27da8d888d9a0ed27d4b0270e4a60 9dd33bef2522dc45c17b1e314c23cd5c 9dd35197e1953e68d664d0946bc96fcd 9dd3ff08414810f3989ccc381eedb4f2 9dd4361a8e88929f992a0469f95b2594 +9dd6ff790bbabc9b05d4225649558923 9dd8a8c01c49a12199a749cc2524bf27 9dd8e5f3418bfe4257d7918b7c6975b4 9dd9283587b5adf91d1168bcca19bba5 9dd92c2b143975a56fe6ee5882e1f811 9dda3c336471ba35e99884b6ae2c794b +9ddb6f08e718a1c3b690cab0bebc80cc 9ddd602f86f6f6a93fec09db4f683757 9dde12fe0967db35242c10c5b9a995a3 +9dde42ba9c989ab2e279f4cd9db6ed1e 9ddef2982eb977497b7138ddf2b71ed2 9de0d239265bc7b1fe1b96576085021d 9de1a0062bb6fd4b2e45f72417d12e56 @@ -35948,15 +40121,18 @@ 9dec6bc06c4e5abc29ab9b0499cf99c7 9dec8f95cb5a0587e1a63b5f16b2df02 9dee55f66b8d72ecea9997d37893c678 +9def70dbc84def6fc38ea51f0e7c6414 9df17204912109ac06201eafb3f0a28b 9df54218d3a9a22211314189d687dab3 9df7a5e1a54055104f962f191ff470bd 9df807fa61108e1e67b58e75f94419f7 9dfa66bae5176e99ea7d58a6274b09b6 +9dfbfbf0c43aa6f3c1f168cc233f0671 9dfcfd3e7e949342bda423eef79be5bf 9dfd67e0a48c312c9706f322c743962e 9dfd75aba46ea417eef17a532f8ec5f3 9dfd87493c53a8f6f6de6ddc40305057 +9dfee8b4360561dbacbfe033648a2b4f 9dff2e651bdd7d60559a1c84850752e1 9dff57c66e1ad292389fedde3dd370a9 9e013bb197bf50edb23b990950d7f442 @@ -35964,8 +40140,10 @@ 9e030faeea3284332ba47b540ff0de0d 9e03879007d8053efca40934b49b5df4 9e06a079e44dfc4bee4eaccee0c3b62a +9e06dee6095a6963e2144dce66725234 9e077ac33744093a3959d16dcead94f3 9e07802e6a029f49b5784a6fd02d61ae +9e08218744aacbd0cc695e0d218f9d25 9e092ce41566c93de012833804911d79 9e0a91f902379fd82139c7a9fee75a51 9e0ad8eec4a43ebb1d5eb04e0571d726 @@ -35976,6 +40154,7 @@ 9e0ed76620656caca82f8dfe17e67429 9e0ee38ea6f5674e37b42cf41548f81f 9e109f9cbef1843c36b9dbe13d9016b2 +9e12020ef604801fd4074cfa9faaab9b 9e1363d5a9cac2568872f4dd57432864 9e142166c9308950426e391af76ff4e7 9e17dc72b2ededdb48b35abbc994e8c4 @@ -35987,6 +40166,7 @@ 9e1f1fe386b62357defdce84d1fb4cd4 9e2003c91f74c728a302a3b9bb5ff9f7 9e20104848c4d81a4ff7487bacfd778c +9e2038512286117931e879582754cb44 9e21405ac10f995d2efaa873bdf0c9d1 9e2263ed5301aa806ff0981a576492d8 9e23d61942af51e35da0eb0f64092540 @@ -36008,8 +40188,12 @@ 9e2ea1a748f199b6e64eefa1596cb171 9e2eda1c4f83929dab40f1a2939bbfa0 9e2fd2975d70220b1be7b296b0cf32d9 +9e304b1b2ab84cbc19be3f57dcbf127a 9e31feda2692a26b35e84aaa3f5f2dc9 +9e325d34b5ffc7b7c74865fcf5d095ca 9e3487dd3bd320f9b2cff164ed4d632e +9e351b9c8a54b4a5a7152d5e095df97d +9e363196fe8ad17b285b7114277d34d6 9e36abe16a5a3cd99e656fe029ad38ee 9e3874fab35670418cc07f2c414d7646 9e396922c942e5e60714f6ef859aee03 @@ -36022,8 +40206,10 @@ 9e3d72262bf8cc77f97541926e1b5a58 9e3e5b4e133500836fea21c710313a39 9e3e5fcea9d6e3e6fd99c17c1a859467 +9e400b0235b08212e1206545f864342c 9e404573ddbbb8c0ac88b2c7da52f1a8 9e43a9f00927bea30bd780a117a17e76 +9e43d2c06d8fe906fd489211670b2d3f 9e43f9d05fb38177e10edb82c1bcad5b 9e456866be7057383d137ec8d330a5c9 9e48ee528f13794a4a9943d21f9b19f6 @@ -36039,6 +40225,7 @@ 9e5665e3a588ba5b536355a740ffbbda 9e56d410c89237b7ccd62a4e03261c6a 9e5712c955d89028108e52e13f5488db +9e59eea70b362077f69dba4851747119 9e5a10dbed4f75493226c16211bc4711 9e5d39a2dd55420a78a51a149a642b41 9e5fbe79cdebbf6325bea2f1a675dc2d @@ -36053,6 +40240,7 @@ 9e66ff999cfd88a3a232ce31f441372e 9e673a0b197001cb97f901cfdadefefc 9e674e3b3783d4a6a85f4a0337e3ec2b +9e67e0385d61b050b1a7479b4b5fbedd 9e682afc9e3e665634fa9f2ea801e132 9e69460ff1b8a9d872b3f7ed14f4018c 9e695cac5ba4ba9e130e1d72e9b7a539 @@ -36065,6 +40253,7 @@ 9e71b16c0d9caa9ea68e1b484220ee43 9e750c0912aa4f4c8163aaf7aa373d47 9e7517b00149d73d12dc81801b2580ca +9e75b4d1ed6a54faddbdd1d483491973 9e78187bb93be7cbf784d01650fac418 9e78a0a3e4688b35241c2a8aed02657e 9e795d1193b73dc22a1b28d9f07ac99c @@ -36075,7 +40264,9 @@ 9e805dfc4b440d26548b00f442471d56 9e8105e0a0aa5db3060f49843cf5486c 9e83164f9ab3f7d31f901e4cbcdb07bd +9e83f860e740028292a2b5b7350cb8d6 9e8407949b8f4f4ade4ac9a420cdd494 +9e861efc934fabf61ee66803e0756566 9e8769d40c03024bf4ca169489194daa 9e88ba7f25cd4b4f6e6127f459c485dd 9e896a007979c0e7ddcaca4969158f64 @@ -36091,6 +40282,8 @@ 9e938d92fd659cae26f2e70de70034f9 9e93d9a92ab65c337777fb11bef91588 9e945aedf671ec4ae1f1f82f2f19ed72 +9e953ed5c53e8dfacafcbcbcc0858375 +9e95b4f01e29650189511df7c51eb3b8 9e960682b1e4750c3491698c73de2a22 9e96dbd520336de7222e5018c4ca87d8 9e980600faee964f0b809daeddb852ef @@ -36116,6 +40309,8 @@ 9ea4a36bed9e163408222506300fb235 9ea6931d74a6f3d25125d5a9c4489505 9ea7829a5d5461f15b081eac68be11aa +9ea7da838dd31ebfb87ce0bbc0ee279a +9ea8058d1a09f8e3d271f3caa1144a0f 9ea93fd4b49046d774b32ee3a4e3dca9 9eaa0a513b77c3239ef6304862677e27 9eaa490848419efdeab8614b918fb34c @@ -36124,10 +40319,12 @@ 9eab3e760bc97ecd98a613f4632a2d4e 9eac60d7b6f0f0bba7d942f7daec422a 9eac6f0bd10fe3d00ee70196bc8fb226 +9eacc51e181f20dddc5b011a82b295b7 9ead152a369d3e55e2f4d0a5cd22987a 9eadc86f34491d47271d920d968b3d5c 9eadd00e5300e5657e1451dae05ab31b 9eade967a04df82a064cd81a0795f1ac +9eae39dcd0a225443ade9ccb8b2f7957 9eaf1c105bfa586c6fcd793cf314a686 9eb2f0af835e54478407de50af1c5539 9eb3ab58d1c26de69e5c284a515be34b @@ -36141,9 +40338,12 @@ 9eb9e645defd5ebe40688f97890c8158 9eb9e791e0bd2efc7db603cda00d0ee0 9ebace1f07ef14b0a385b1dec1e2e82e +9ebae6106c9420f62c2f7ad33ee96544 9ebb1e809cb4fa361a81e96671ed05ac 9ebb9f70b4da4bb87393af9c45337bbc 9ebc039ee7d4f98ce0b4db291ddd8169 +9ebdc45b42e38bfb1d0f46af7eec552f +9ebe0c81be0bce54793dddb4ac156f98 9ebe6394d67ebc50e06a2b1c91339a7d 9ebf8caea2dd59d21b96b47b5a5f19bb 9ec069c22f8166f342fb74e0281032c6 @@ -36154,6 +40354,7 @@ 9ec524272ccb3d8df11e4a76b883977a 9ec71c848cdd7ea2bb38f72f0a18b66b 9ec7a545caa1e4f2f631a60ce0a06c9a +9ec7c1a77d8d2750f5e532e8ffe71cfa 9ec7e5483b022460569ed90706810f1d 9ec8fa62a84cd0f16fc855307ddb33de 9ec949aeffbe3eda8eda3fe6bd7c07d4 @@ -36188,7 +40389,9 @@ 9ee8877450a0584c2929a1f47bc06636 9ee9a19588d35df27803e334dae77fc6 9eeb10506db1c8607208ddc0884a2f9e +9eeb174636b3be39c7b1d391b596861d 9eecc4004b024b4ce907da151f3ba1fc +9eee0521fc13df3c8bdcd7f8c972344f 9eee43584f1a2cca54110124b54badba 9eee94438cf6a63ddd668c1651b23e94 9ef0c0886415755ebc83bbc088edd058 @@ -36217,8 +40420,10 @@ 9f0b58de44b98ad75c0e6128a34d637e 9f0d102ef26d6a9eefdeddf8a75b7eb1 9f0d60b95a0c727130520cbbedf0f76d +9f0f3852c27a2707eefe7d95654383e4 9f0fc610f5f06a4fbf685be3f0314b0c 9f10fdd0ba7e9aac0c1233da980a98c7 +9f11150f83e31be8b7f778664c2bcd03 9f11a90b94c077da0d46a8949b94630f 9f1312481c6fa84a9783f34cd3d3a16b 9f131459b1a81e80322485cbbd0612bd @@ -36226,15 +40431,18 @@ 9f154a87e3e6aca6bc0174b780412bc7 9f165238e32b1c9040ba1355de7f12d7 9f16b70ad0a300b38148d5f20d4f6ecf +9f171aa55dd3a5b319fd4b996ef1c9d7 9f1741e24207ec85de99653036a9ce2e 9f17f176ef631dcfaf1dfb9d8728b95b 9f191088b6c278c4428268dd3df88a2d 9f1a00d4000333cd6145ba879b57c60f 9f1b780161faa002fd99a193962c8b72 9f1beac7b6a2d9550cde5fc502f1050a +9f1cb7374a2aecf904ad05bcb667067b 9f1cc2b639554923084000cbeba67bc4 9f1fbab35a344bd13e40b4267f935932 9f200e257386f251c6a3bc58760c313b +9f21aab8543f47f5c9ad3914fda9079d 9f229afb1cb04371508464560a802190 9f22ec6a4c346791eabe6b063482df7e 9f235f49d6d7b1f9df0ae0e0db09c514 @@ -36243,6 +40451,7 @@ 9f27ce549dad2b5afe31a8ca8aa4ed39 9f2851d219d4991d4c08bee1bbb6a4e7 9f296aa8cd3010e4b0a986e7875bad46 +9f2a1e7e4a641ea8c253e22711b9bde6 9f2c09e61e8b12a48da9bf274cc3d8a7 9f2c6b0d979daf69249139022c950a18 9f2d4c97066c677839e1911b80c8d2c4 @@ -36262,6 +40471,7 @@ 9f3b651213d6b9c0454807955dba40ff 9f3c3d05d119f58e6921f097790852fd 9f3c76784f0eef2ef62e2d191238ec90 +9f3cd856832a09da9ae90aa55ec1df29 9f3d8dba56bdef867427c5d1e7cc626d 9f3ec4095d498854483031b1f377cf37 9f3f091bf3db4181262260b9cba3a236 @@ -36280,12 +40490,15 @@ 9f465000cb3872e5ed7240ef2f78c168 9f466c7d4d01905e6d1d4dda47969512 9f488d2da29772f33246a3421c022a25 +9f48f1a3b38b91e7d03c825224dae754 9f49e9b5366b093494f2527d87b17da6 +9f4a5a9735e7a90627e7ce2da9683bc2 9f4b23b51a255f0378c74b765fd9a5cf 9f4bb452c51568c326191e5eb0002d1a 9f4d82fc01fc559f2abf9a1af5465e9b 9f4f7998568a5e77311490d630f5d6ad 9f51f0824a9507e7b994577f450fcad0 +9f526cdb022ebcc04dc65f1d2407a200 9f526d52fd5ccf112493aa3ace5e1230 9f533a0aab2252dba560ce6faac419d7 9f554f84ed931e4e79af03f72404189b @@ -36297,6 +40510,7 @@ 9f5f802f7e383091edf4f2d0c21e50f5 9f61a79bf942114640ffc67a925632d2 9f6223459c7a03f268fa274f25e96ca2 +9f623a2183de7a3a97494e5990aaa2e8 9f624ea2b8a931773fa243089a96d1a8 9f62bc6f1eae1ae3830ef830c995632b 9f6452f426be17c55d7f48913f018198 @@ -36308,6 +40522,7 @@ 9f69760134426376857f068f4d3c1b91 9f69a9c59067b46f8eb284778a610b4c 9f69da1478ec466fe325a5f6d94f725c +9f6a28369b062e6e36f8910dc5ee762e 9f6bea8ad9df9edf0145c77cf498142d 9f6d8526f6d3f07a36464b2954311623 9f703ad58fca11d8fe8a2415ccaee667 @@ -36317,13 +40532,19 @@ 9f720ab249687bce193c040394ba585f 9f72f4558689fe93a5ec7986cf218f9e 9f73e2e27d431644211607b6b280fa3c +9f7517c0b451215b23e33c51953eabfc 9f7a9ebb3ee1de201ecf85e86b770b5e +9f7bf7c9bdf50f078fea46ec0a1d0bf8 9f7bff7564fdc05ba1e00ec396939a65 9f7cfac24ecca104f50303a0a80d25fb 9f7de705bab82c8507c0b22353415608 +9f7e63cd3d0e983896abee8839d857a8 +9f7f7f173c7f020f23522849f7885a13 +9f80385afd62b418d2d6d4d4737d9bf1 9f82341fb405a64c44ce46c4fa058ecd 9f82e22e11c7661cbab19bb518681be7 9f844fdad91d93a3fecabf616026b43b +9f8460f2f01cb97f0c664b45a59e5c3d 9f85175ce91cc463aaabc94a98b8045f 9f852d318da591785dff8ae2558de636 9f85a90d56a7603fb225c9dcfb20a388 @@ -36355,12 +40576,15 @@ 9f971c9f0ff3314bb02d2aa2279bedf2 9f97d1b7b4256d0f1e399a7d25ac96a4 9f97f83a929156a29d8dda7dff115541 +9f9891942e3698e35af79d0e2fbf0710 9f98b89979b4766c3c7cc311f2fff4e0 9f9ba3c30dc9317968e8ec8f29de488f 9f9c8371adf3df86f84c480276563122 +9f9c970502d6ce6963bb3c61cb83e8a6 9f9cd9e74d283fc2c58b814ca0f63e38 9f9d2e8764ded15c47de7d0edb9ea34b 9f9ef883fc42ff7dbe9dae63054cebbb +9fa21228ecc36424a82a463cbd687093 9fa2e1b20efc133915582ae1540945e2 9fa40bac98bc767edf2c7947d106c7e4 9fa45f99159351c49a79a2397e3863f8 @@ -36373,18 +40597,25 @@ 9face3e2c2d30beb0a23b9aa56e6391e 9fb20ef0107bb08f7adf80847c465ab8 9fb284ffbb7fc70d8b572c53d0353811 +9fb336b121a8f9225498c167dd43c930 9fb4256b73ab0e09f82b717322a73c53 +9fb4fbb8850707e65712a295b6bfbfca +9fb55a789727940cc44fc196ffc301a1 9fb5dca763ef50ca3b480e4f30e66874 9fb630c9599530f5c27796fc588b0c6f 9fb631b1c919e709829653880496c3c2 +9fb65ea49449097a795ae6de1e7b357b 9fb7068895dc03040c3616eeed0bb44d 9fb7b489a8056be1f777bde3cef9e440 +9fb7c91fd3ccb49e6d4b8a1351aaea03 +9fb86a7df45470080d747c9fac06983d 9fba3568fe10fd78780a1a793e055ce2 9fbd8cc79ce854c4a5f2fdcbcfa8fc73 9fbea916f47ca09326b00089b93dbfe4 9fc04e0bcedd7185adbbf70272c8a37e 9fc19357977760581706234cc2c95d39 9fc3472f7c9f0aaf5bd29eece87fd0d6 +9fc391c3743aa99fbe634a314be6032c 9fc52ac044fabe8a05a8d2fb5872c107 9fc663b37ddd6c70df38bbf5bf9e24d3 9fc6bb135591e744247feec1f0319778 @@ -36397,6 +40628,8 @@ 9fcc3d94a08c688972c340c47773c41b 9fcd9a9189418c170e71d28b148c4239 9fce40765e603df47b369e83d262e07e +9fcec3b37c5fa46b43df4a1b7a8aaa6e +9fcef26d6976a47273623bfed8093d90 9fcfbf9c239031127eecc55625545b5b 9fd07f2deb514a30407cd165b307da6d 9fd3e4e469e7ca11b840bfa5cccfe15f @@ -36423,14 +40656,17 @@ 9fe70d38beeea21444ff97568dd1219e 9fe72fa11c0cb8cb7380cb3bb07ec0e5 9fe8cfae43f8e710653d048e96185f5f +9fe935d1c742239627cf75c8825c0be5 9feabb1cdb2285878947b1139ea32d8b 9feb95c7c9660e5aef21ac294e598209 9fee5a6e8f6b37ed45684c810dc0113d 9fee9c40ee1776c78161b1d26c522992 9ff04e7a817c17801164b9e17f3b5275 9ff1448d1caf6ea4b9eea7f684a483ef +9ff24b7331ea74d49a1ea2bd688d98f9 9ff3308a130fb7bc45916aa8c9794b2e 9ff5e7975f2a84c421e3d4d680c87732 +9ff7463876327c7f75e7cb13a288e86c 9ff8c9f18433037c604dc4f7e16ef9e3 9ff9f8fe246893be7387c9af3f42efc4 9ffcd297a413059b0029a8c4ba905493 @@ -36443,6 +40679,7 @@ a001aa53c992b8e1b44507178759bd8b a0023da9416b096df6b581a4e231f633 a003e41fd0930cf26defae93d0f0bdea a005d053267da46d0fbdf438ba2c50bc +a005d8a6f18fcff2b9d0186d7a09cd5f a006e599dd908177fae4ef540f9df517 a008b47d1cbc9bd84044f8b2acf251b3 a00bd37972e644cb0f4930710c866691 @@ -36462,13 +40699,17 @@ a01509f4cba02c116cbdc88d5665ca70 a01512a3055e7c01a51d4a6575e4c31b a01546bc3f9d2c1074c53cac38d3be1b a0157b399ed6aa6f47a254f0e5dfebd3 +a0177471f22018aa57f164cbebd4203d +a017d4706c86a32d8f4265270ec404b8 a018435f8894eda43b2ebe9e7b9252c5 a0184f28213ff985ad7ceb0a55f67731 +a0187ecd1359cc8975bc4fb7d3198862 a019661d3d4a64752d5fa024055b5a85 a01b069bb752667d25574145e5fe2d1f a01cd71c166efebcc3fe549a26fd95ff a01eb567c6f10c7b300116baef769c95 a01ecaea2a557707c7d59ef31a77812f +a01effa442e4cb16cc0cf9def754c136 a01f7348c0a554abae46ae25bb918c8c a01fd31fed303d81ac67ef85bfd51ee3 a020575d3895034db7ef52aafddd0457 @@ -36483,8 +40724,11 @@ a02b3990261ec355ee967411d6d9b17d a02b63f92ebf2937215b1c3cf31d7e7b a02ca6be594fa8abfb3b1f34a0fe2396 a032a5506ae4f1ba3ccaa931fe055186 +a03366543109ae953d4b8202ba628826 +a0339bf0dd2b5e481a92b1739f604c01 a033c3f2565a7b5364d347c61ecb3388 a034022394e00c130275f9eca73f86e4 +a035d72adf74ef9a0649095eac6128dc a035f04bb7f5218f6b8761633e0c8490 a03625c2def37c3c32fc7f4a23bfa79f a0368dc68ed3ea366ba3b0ab31dc8ca4 @@ -36495,6 +40739,7 @@ a0393a8e1bd94b49a5b04a742be0fcba a0399b4d8eaf3dcccc996c5c6004e62c a03c44a2db95349a2162a337a1c277ab a03f2b6a68b7b33715bd7afe74b9e77e +a0402087d8006981838d5e3f1477f70b a04085bca166150f1c20079eef68ae9c a041c48aa554e515255c8d28f7d43991 a0435489163daca68f30b971d5580f9e @@ -36526,11 +40771,13 @@ a05eaf38ada092177c2d6fdc001f6cd1 a05ed659b667478ce936f678795786a5 a05f4095f78bab74c641aca247c1b356 a05fa18fb71789c7b29eadb44c712a8c +a0603b82fdffb433e3f73ec574c86fd0 a06109b31d615e91cfc3aca249a6e9f0 a06140cc77eed5fba2da90990d0ba0ab a062f4ef27068c240a6ef78b12a1090f a064e86ed63628d08fb026a7311934ba a06502f70a918219709ef5fc617e1806 +a066c2d1d5165549694c2f60bfc23caa a06b04a7edc26569ccb181f7cb884eb9 a06b9c94dc37086ea32aace2480fb650 a06be29dbfb9030573384361ae264b54 @@ -36538,22 +40785,29 @@ a06ce69e36e8003de48dce635ff83935 a06da203db2d942caf24d85c2949440f a06e6a008270f161a5787bd834cd074f a0733f4d7f3e5d9dec3121a38ec73516 +a0733ff6d80c013110514abf7b168f23 a073cbe7149c286510eb0d1c03552f03 +a07537ec504d2acff645d978060f6a15 a07617d7680b1959d9aa44ef087240c9 a077f1f81587a55c832327407a907834 a078ff6aec7c9d585625f80f10e32cea +a07b55fe68e3ca03e1cc9853294dee76 a07c32d30456c644b471a81e864d05c1 a07e9a11166fd3b6103228ee2df311b6 a07ea6c526940edfdd2a1c4157202ca3 +a07fc18ed265f7f86ebd51339b44960f a080995f4cd0b80414e711722da2f29e a0811b7e346af11a89e5688bd2b2f171 a08190e8f3ff49935c00fa0f752a20f6 a081f2fe0fd13dbe1f1c54787d503a93 +a087e6d105098112143d1e35ef65c519 a08a46bb4eb2e4844fb6abbe852cb3fe a08a7b7dd858b97585b69cf0b2b94425 a08bea980c543455eb44abcb5d730248 a08cc02354932fe88bf9c7a2c7a09e3b +a092c52d04fae4d0cef70df838a4df33 a093860bbcb3f7cbd088e07d179def8d +a09397f706ab420e62aac95a380e818c a093f09c808a5ad4ea87889a37f47eea a094e410ec544f3e8e63ad7e2ec63901 a09529409e141df2468a91c665885e4c @@ -36580,19 +40834,25 @@ a0afc172c8c8af7fa3bfc0c4e93d2c35 a0b18d90424efe59c3373447204bc642 a0b1e3cc8a18d6844adcbecc5e36c178 a0b44b631f7a287ddd7b7644881174f2 +a0b4c4caaf81f9609b4040d1ce6320de a0b5c31a6515b263b0c788f74184d4f0 a0b62b3fa2d83db4dd2101076668eaab a0b751384383cd99025f9badf8df24f8 a0b7a1544775751254971721e5bc1690 +a0b9c0431a9cbe52b884501152b5443f a0ba8ce39fb5de311936be8510a9e259 a0baf29cd8730765c3a788803291688b a0bf49b1014c4e41749ee6da9cc8f58b a0bf8ec3da79de21be5b8d4cffdfb376 +a0bf9737e13c654e0f63a403e812d9b2 a0c2011b7df862e4e49ff37232965ea1 a0c45450b4bfc86da85a166c969e573b +a0c470950dda4aef39fac9d4aa69e7ae a0c5546ac5d1dc26284db9bbe62d286e +a0c58192fb8526e3badae23c362b8b0b a0c5aedbd48af78ac8d4cd50165f2930 a0c6a8d79b60fad32b707ba4441a2d8b +a0caaee1ac071085b04585d220b6d305 a0cb44fc35a9f0a5a8cd284cb88e29e0 a0cb46fa016ff078256314ab5d1330ce a0ccc63b8e22cb992175ea59c6438bf8 @@ -36602,6 +40862,7 @@ a0d28d63266f4e88457545ee4e61be8f a0d29963d6fae19b76a386e9948b7e13 a0d311ca4a24c970102e857f96d058b4 a0d3d4e1a1da0a93f39458becd8ef866 +a0d432aed6da004ef2eef6fa933f0d48 a0d5d7485a6dabc9eac9e87b624c1bd9 a0d609a8d35d9f3cdf7dfa6d097d9bd0 a0d69d7b821efbba78ad204dc0887f47 @@ -36614,9 +40875,12 @@ a0dc8f31145743b6723d07b039d7fa56 a0dcbcb3a8d3ee348552864ad52375b1 a0de164c6dba81562757a01f29cbfb2a a0decee73201290649f2a1ecf40f2696 +a0deef7b8f6fcb2a943691979723953c a0deff9176f6c2908bbf959c6bde46bf a0dfb2f9ba1d34c4ad819b00ee89c4b5 +a0e0b6c044e07bafcc26c8df4ec6a410 a0e0d745fb6047130de8deba180fb973 +a0e1c1bb08cf3d09db3bbbe2187b3ed7 a0e22194a7b00ad332e4d20fe1455f49 a0e3574df905d125b4a214de33be1874 a0e45e8c5d5dd532b5d8ae915dea04c6 @@ -36635,6 +40899,7 @@ a0efbc1d0dabcc87dc696805b074dae7 a0f1e42fc13b9a183686c53b27c59c64 a0f2b8b5175c510bfe0b67394d16d70c a0f3c060dae277b1e570931664bdbbfe +a0f4f847fefa69dc325904e02ce04279 a0f63669d28fb30900d8d8a14e282196 a0f683ab4bab6271d4d547b700f1d725 a0f6b4389ab0a6a1f8baa25fb8997d1a @@ -36643,6 +40908,7 @@ a0f7f49f290e5f26872de6e971fdfe30 a0f812923f9a5411a002d5e04c43ac84 a0fa317beea90acb71922dfde0c97616 a0fbb093fd688616f09650bb4815c714 +a0fbd776f3f69f31ef82b26f4b78b8ff a0fda27b7e28b245f25cad478199d1ab a0fe25961f113ca8846163e5930af167 a0feb511734a69d4c663eb48437dc336 @@ -36664,6 +40930,7 @@ a10725d00e71bc614e94f14003835699 a107dcaf5b8490d9caeb93c2b2916a40 a10987704dbb214b42c67a9ac0d9eac1 a10a02fbf914069d8976cbdfc46998f4 +a10aa3a50252fd960b0dec5e9ffbb05f a10c2a76372116de1035d30f6b4d64cc a10e41c9868ca874a31149dcbc66c9b9 a10edd8a8d6cd5f3b2f3a8b6a28b57e0 @@ -36683,11 +40950,14 @@ a11a0a86e4a961acaa3a86a3ec8e6ac8 a11bcfb48892d188750edd457343f2c6 a11ccb239c08914a89ceba9e1adf633c a11d9b7632170908595d27142b2462e4 +a11dcaae028c28b7001cf859024779e5 a11e7142b8b2eb09e09f5793466f81a5 a11e8309532499083a5443329a07d077 a11f13cb0db16cd1ba1fe2208655b366 a11f2032df30b5dea041105c2cfb54bd a121a3bfc0ada33459e87ae1519235e2 +a1220c959c0d9a59da6987c2a854a8d5 +a1232687cf3d0a4226fbe98c86b07805 a1232c2d54d60ba9ec2d768888b643ef a123309a557d414e980bb04b2fefdd78 a124b8c83a2c19aec0ea3c48bd57a867 @@ -36696,6 +40966,7 @@ a1271ac307f21e56a1aa1012dced68cc a1272007555bf5800838148e14c61987 a12a3b40d77e9dcb0335c6a0df749c04 a12bd667a302d14a36aca80393c34d37 +a12c04f5f2a825af5c69b2e687b961fb a12c27e78de35317dd25fa0f0f47d731 a12c3f93c99f0e1dd22df4514554efb5 a12c6066a53fc86acbf2e9d775630bca @@ -36710,6 +40981,7 @@ a136dd13e3df5ac2fd915d46c4423209 a137263d32b1ef8a0f3a006b6024dc32 a1373caef3d86d0a55f9c682393819c4 a1379176c82568aad96b337b7fded2f9 +a137fd15975197beeb367e16754edff1 a1386aadd6cf93519ebbf5957ff8d3a4 a138b796a330069ebe694f7eabe8e11e a13922e37585a74a9174e8fda7fe796b @@ -36726,7 +40998,9 @@ a1486f440c9bca6afa07dde6e6745680 a14a1c5220130b6c133f1ab184e3a24d a14b3bf7a94cf40227e8bf7e34a3b467 a14ba0695bf7e58570f0ef96f988b058 +a14d59981ca5dcc6ad72974c94caeb43 a14d6d92386aefcd783c636cf887e8a5 +a14daef51494c9ef640f9a80975d0496 a14ddd89b37145f35d36abcfe2b3654a a14e727b04cd31f115c9658c457a49bb a14e787b9d4caca45ac2ade19bbbc259 @@ -36734,7 +41008,10 @@ a14e7ba7b4ffc122d2af8b06a353edeb a14ea8338351fc9457098e44c61db4f6 a15397fc4949ffb6dc4781a74390976e a155422c453b0c4c371635ae33314481 +a157eb7bb41bbc0bb56c235fdaae4594 +a1581287b31d3f157d1357ae5bc23caf a1595359a12a89ff51ce36b5557c9e71 +a15c222086403af5db9efb46c7659d02 a15c53f51c8a5fccb39d47e6db9961de a15e04bd26b3a85d8dc511b4b3f64a1b a15e20c5db499250b4565a1f66609b2b @@ -36749,6 +41026,7 @@ a167263cd27b996077c677866ceb476e a1689a2b819145db32d384c5f479cb03 a16a6eda353a4e9f4053059fba8b24f3 a16adbaa6a5434c3c80526741d6ffa12 +a16c2838174fb8758dcbc7e0c62b3519 a16e2baa1e3c8c1cce0c932e9433e237 a16f21ad17310b4b704ba9b51f422f06 a16f3f16d0838c1ebd000eab07874f71 @@ -36767,6 +41045,7 @@ a17900547afaaee64722bcd7efb96508 a179866050c3a86ad0ee01f116a50a2c a17cc00d16ce8533ed69393468ed2ae7 a17cd12fc311c61498f54fbf363418a9 +a17d8fc5a3ebb847ea732f43c17ebfe5 a17da48a8abc29a54fcff471d6516fda a17ebf12deafa59fbd175c3fab32eb2d a17ef5c7cf925ee6aa20b6c800f8705a @@ -36785,6 +41064,7 @@ a18d3520c76f95e46cfa44f63db8d570 a18fc245b7269ea294a057dbf8abc8ee a19152a15598aad20488194474efae80 a194452bef5191d9953b4f7b2314ee36 +a194ea48ba8aadc7ea7fe9c9bf09b89f a19659fc95db10a9d5df4cad11b87f37 a1969afb2739bb5387bf312c96bc723e a19aab2fb3a506353eebb3c8d39562be @@ -36793,19 +41073,25 @@ a19c7b96ba4ea8eb13a7c41d3b7c14a5 a19ed9e47f0bfd73c9ace792bd072852 a19f6075f91edc39b9e22325aa354cc0 a1a06027c43c930431e1f9238a405d0f +a1a2bbabad8d9b4c5b245d1f253e06ec a1a3d35a6db788de0a19e05d0e8164cd a1a3d77cc43dd59743b8b511ecfcc5bc a1a40c3b7c92a7af9854a57876bdd957 a1a44cacaa0f848a06a42dc57a73aae3 +a1a44f871a1a25d92a256ec1b72bc812 a1a45925c361970f3e898ad4fa4084c7 a1a4c98fa831a2c4ae4165b9dca79104 a1a7936e6cd3a97d602fc2536c7e834c +a1a7ff677802639dcd1b12b7c522b4da +a1a85a2471fac5c4367ac423df0abcda a1ac1b30348043ff60e2eed52df6b65a a1ac43b58d9e2cbb66ab1b29702e0e28 +a1ad3e8033acf2aa193598bc0b726c4d a1addcd7be30562f5c9050e63d787f63 a1adeea36189d0ebf54268a26afd4317 a1ae194ae74f175fd247617c7f8b89a7 a1ae85f7cc770e0686b386c3a9d0c6db +a1af0f63b71ed9088ae866a68883f8e1 a1afd4ad9d0198947673f14c2a17e2ae a1b2632e1f2167b9caa6d31b5f1f0ab2 a1b307bd9934e9552636d7f30fd2ab7f @@ -36817,39 +41103,49 @@ a1bb2c812dbdf5f447ad889514b53d08 a1bbef8e278be6aef5bc6680b0dd10f0 a1bf596cb6d003e3850be6d9efbdbda9 a1c2561423aff7c1cd62f0bf2c0a8803 +a1c26f61c88439f52683395fdf584234 a1c28da16fde36ebc2a27a88ce1a5b82 a1c460f9e47a826b1dcb2fd52389bee4 a1c48f6f27509e10318d582cbd0ea848 a1c4c89851502becffd8b733f4f05f73 a1c4e3588503477f6a712fe7bda7f849 +a1c4ee56d8f7a3b4faa1b293f670cee1 a1c583799d179086c3327629a15d257a a1c5fe780a5fa5cf0d2e98043eddd9ac a1ca40466fa575cb3001673551f704f7 a1cbbef56aecb6e44f8092d3e36834a2 a1ccaef6851d55dac70ec6d373d3b5b0 a1cda912ca1f9ca3a0d8bebdcffccc15 +a1cfa5f4b53666604aed6bc380898c6e a1cfe9cdeb910a28fba7735cd6ab799a a1d05df16f3434664311a483bafd5f25 a1d2442c8ae623793e6658b8be0c9099 a1d31c40675e82dabeee447ea1c57bb9 +a1d3b86a0d7ff8ea5dad870d55e6ef32 a1d428c434e172b77845884d6b1611bb +a1d641ed818417a5e9aba864fb3718d3 a1d82a1500f8e5cb19feba2cebf35473 a1d94e1fbe2a6bcea015c76564b10083 +a1db17d14ad84727b37068ccfdae4319 a1de5cb72294e4494fdf5e499edf4566 a1df29107ef82d1a14c4b6cda0e23f37 a1e139c0352e76302d6941118cd8f3f1 a1e19f4169a29ee36314aca51bd7df0f a1e1dea2928e80608c5e6b53fbe92ea5 +a1e45811125f0c9c9d9d3dd9f0252a9a a1e4b54303f52ab0e514447b418b27d7 a1e55f79317c3583b12e8ea60ac3b046 a1e78d7aef8c45ddba47fc9b6d8b9ab7 +a1e8397762c69c1b4f366d30203df493 a1e86b77bb61f32cc0c1addec93f53d6 a1e8856ce6950745921c16dcaae4de77 a1e8e5c5c175e3bff2dc157c88e9015b a1e97286a2a71ae0d3c602966b8b620f a1ea0777a27a1b56ffa635c58900f43f +a1eae9b854d3b830291402d876434ecd a1eb345e271b8da84a3d8c0af5077121 a1ebbfb93bafa520c215099bf67236f7 +a1eeb9516248efaea8c206878c4017bf a1eff47c96fd7007a7e8474bbf3703b2 a1f021a18f99a8ae182d5737653e59c1 a1f1c8e110503f88e0113a9fbbece1a3 @@ -36858,6 +41154,7 @@ a1f417b32068f6a80fc8a55efd503151 a1f724358f25a1ff0cf7f7828597b205 a1f7ffa58718ad7e6f0c52ee562a34c3 a1f8301420b6224604846ca7e4b541aa +a1fb4acc33bf3c8091f84bdddafef1fe a1fb7df56deedbbab04db010cc2223bf a1fcbff031d5ecb02d24ad0f8fa57ff4 a1fe044a2b98cc6493f29736e27611e9 @@ -36867,6 +41164,7 @@ a2015a224442cdad71ddd6c02b6fe7d3 a201697f7dd18ff6cb8ef990e58ede86 a201a390e40cb5e2db7dec9c22be376a a201ee0d9122a01477d14c5c9512a328 +a204b6feffde1f54faf22582c266b1c1 a2078c1c11e09abf8a2b7c9e9ed82ec4 a207b29a98ccf8c33c592d7ab2157682 a208186f0a2a4455fc0029cfe45fdb67 @@ -36874,7 +41172,9 @@ a20a50320cddf4b10b5b424aff00765d a20b2186a2630b21be787ca1114dfef4 a20c20ada4018428e9d8efe99963b0cf a20c8de60acf1cc52767edd6e05676b0 +a20fa704f33bbb53468a5158b2577e57 a211a96b0f1dce614a80a31cb49ae95d +a213c71a93217d31288d5c347ece5b4d a21460302525000a1c9269abba4bf069 a215021aac06ad7108d8c938edb2b7d4 a2174ec6e7e77e76a5a5c3dbdec5509d @@ -36884,11 +41184,13 @@ a218d955c26b5a3717893b897068e703 a2192b0b3e0c6cb6c7901ae7eb21b962 a21a80f546079a9f57e921916be9e822 a21e92cdcf6b57f2789ccd9e53ce038b +a21e98d4e5f031c99731d46951748dcf a21f3f0dc29f59bd7c5fed932f913708 a21f75c18976726f78fbc748cf6e166c a21f8df7b1554351f74749d1e3d38018 a220e693061cb6a211a40af41b0fb25d a2237cb6f02e1b463f051e1a01af58be +a223e7093bdf0a50f6d70064f7d8eebc a224dc8fecd6d88c8e3d69a639b6d631 a225be17672a7d6dfd0e962240909048 a227fa183e4da14105978ce29da2c479 @@ -36901,21 +41203,26 @@ a230f419a6f46aa72acafdd4f95f2a31 a232bd4b69779ad14f9b43b7687ce376 a2369f88dffa7e97468255ee0fb207ba a237106f80106f4e5717c6c5c2860071 +a2373a7fb936fb2f9e0542a1ebce3c36 a23974ed2545825ae387d8048bf869fa a23a77e52e46b661603be079bd95ded3 a23a9b4e9fbcc6cf725607a137eea17a a23c2427544995664c63d3350aff3dfb a23cdc9bbb1e1018d1bf95f2b4ca9ed6 +a23d635cfa2e1341b515cc4d839f9a66 a23f3390439460b397920b5fc640d985 a23fc9b47b0a18683f64c771a68e97d8 +a24014c1ba0376219c6a43bd26952752 a2420036d5a6a018975efbe551fd74f7 a243d107986e4e0c1340c96a4af026e3 a244abd583d589f13c29a2bffded7af2 a2458b7bff22a1a44a958f9e47772643 +a245fb6f98ed0d90bede455012a0e6f8 a2466102fa7e26373c86dc6f67b95d56 a246a369fd52548bb907db6c057cd517 a2476549ba30b0fe4d84c360f8589f81 a247d86a850ad860c666c5931653174e +a248ced49f73756b6a8b3eb7b8c5f9e8 a24a6a223865a61626f0e34980581c60 a24affdca72aadd8f11ea8597cc00a11 a24bbeb2427a4566c3185a4897caf30a @@ -36924,12 +41231,16 @@ a24c9f862cc22db910c9f57acbd5758a a24e36abb47f907a09c3cc38b2cc1298 a24eb7efd340ba67212f645d3341a897 a2505f34dc1a893d79c863e37c81cf73 +a250ce957ed60c89d64d62fca969324f a2511b84b2475410148f5b7b3e33bbbf a251ce38493f3485e7f215dce24b8b8b a254bd2d62bd6958aad41a65ab339fa4 a2556a587ff3b4d25a03886b87068516 a257b7edd3db6c18ac7b3a2a59ff53bf +a25a1bb0ab8530ed6c45528cfe6d4e0b +a25b35cd7e474541032e80271093691e a25b854c62d66f0e4f0caa4acaf82b3d +a25bf6fe92524ee2ebcd1af7887b963c a25dbd75add3fd623e0070d729629ae1 a25df70e4a31a06fa5a6f9b8a928a3c3 a25e51d3bcf312125c0835bba76ed55a @@ -36960,10 +41271,13 @@ a27209cdaccea5d40dfaa1b808541400 a2735e239dc7bc7701a06bc91ec5b9a6 a273aa9348b34e813ff403769040e515 a273e30fa5c8b46720bcafb47832f28a +a27520e6c6ce30d5455630786b76b963 +a27619ecc4927733599c91148e98a369 a27754fc5ac425838294cde5d6d364ca a2786105cc3b7cba7933dda3a2bc452a a27930bd6c2c473037a67b1f5de77d52 a2797ee7dcdff93e84c63f458a4be892 +a27a3e3915f9a67a61fcfd00e7927da4 a27b6827cfa0810542908d0c31f26b6f a27bd3cdd88df2d097fe184bcad4dbae a27ca36048aacf0009343d53ce54eb47 @@ -36991,10 +41305,12 @@ a28edc7283cda80c1dec724da13ae32b a2927d5fcd5cd44189398abdd152b8e7 a293dffb5631dcd4e0fab745b146bd9e a29939b3ccf1d42781f652b8d9d41462 +a29ccf92070439539eaf49f9fcd32262 a29d13a9cea4a6875eb5db0e673c9d15 a29db23a8dcbfca6e3e5199abf231f07 a29db8790bfdd428f91d4a77f534ae52 a29eb4501a17bdc156dbc525a9bfc13b +a2a0a42acb8e645ca29140b9bad42966 a2a3cbdc810ecbc4404bb424d7dce422 a2a429a38286b06742433903cdaf2bc5 a2a4a6865139925800a95975a2625bcb @@ -37002,15 +41318,19 @@ a2a64ed63bd9c934de863b79a2c386d7 a2a66398c61f0f06beea7d320bf67873 a2a69781f1965590122fc5c65cf7d7fb a2a7f820135852c94313be64f0399d32 +a2a833d6a2eb9527d2c02ac247bafbb8 a2a858b2bb475c4ba4c81bdddb1846b0 a2a86698baa6eb467a2f0546530e3534 a2a90f16abe3dd5e69de9e5ec85ddaba a2aac11b515b35dc50b8c9321580ce0f a2ac6ba26acb00fd1c777b2d09921d22 +a2ae2d727e220797aaf92881151e5e03 a2aeadc4c2496f6dbfe369cc5e75877f a2afd40284e582c6b0f9311e3cdea432 +a2b0a1119b40ef106aec76f24196395f a2b189627da7238195c096be458a1c6b a2b3d69b4867c0ed89d8b6ef2e3f722d +a2b429e08301e2b36c777d4da7a00391 a2b4b46489b351f648c5b8eccc197a1a a2b4d31315674332ca854a6b6bded98d a2b4f85ea0ea909a5d4fb5e71df29b1b @@ -37037,12 +41357,15 @@ a2cb37454cbabe283b060c260a16ef45 a2cc34abcce9a1a4d6ef8cc3dac45352 a2cc59e97f2f9f63110e904e3770197f a2cc9b4f9046bdcc01052ca6d059701f +a2cd808a1b90a27bf48bc2d1bd19c061 a2ceae794cce3b67b4ff177c9d720cc0 a2cf3bd2583aa9f3946f9606cf775af6 a2cf49b68ab7597c32c23c9434ed095b a2cfa82c8660f0b5a3cf8449a0412f66 +a2d12fb4966cdbd2578d82b9c6ae21fd a2d3069ad8aa98b34a27fdb65df66d63 a2d3782bdb34c5bc6dd6078338caad08 +a2d5458767e79cae5d0c2d5ee17f6aae a2d54e3fab0111b1ebd3ee3baf63ea95 a2d5aefc2427c182c2d5ab28f1ad13bb a2d6fda7f19911b75b82884de9715a5c @@ -37050,6 +41373,7 @@ a2d72336824d5017e35a9cc1be5b2724 a2d728be00a62e2b232fbffa71f6e1d0 a2d95c148f997a849dd5bef871f8e807 a2da59a042c28e21fe258df0e8dd471f +a2da8442f8e7cb318922168e0d605a9d a2dbc9cfb16e247906b2b097ae077ff4 a2dc880685a3f4664bf447ed721f83cc a2dd967f5982dc627c4574949aba7316 @@ -37058,7 +41382,9 @@ a2e2c1f31c91e6ac0eb791bb2f98ae3e a2e307589c325a760ae66f8f6f19e6d2 a2e3e0d40b7d023a2ddd02534cc2dc61 a2e475a45944c84312678f1151292987 +a2e4f15156d635b1a4c1184744b6fc53 a2e5452725aa6e541d089bff0ef3a6a5 +a2e5e07ab07781a6da9c895c0b63bfcf a2e6d13a3d4c1a8f31874a1b76ae967f a2e7535f19f586b40624cf7f0928d3a0 a2e7ed141f54ce032bcbbe32a90af95d @@ -37071,9 +41397,13 @@ a2ef4e96e4cedc44c45adff20fa84700 a2ef972a833c7d3b21778c510fd14f45 a2efc5bbda097bf697788c791df4ee5e a2f0b358ba935c082179077f5eac8788 +a2f1a1af0162afa7eb72a8c4d64481ff a2f27ee9765a0c4e74d48dbe862ec81d a2f32026c072b39a3b803feda38cc204 +a2f33c2634c8e83a00c6d6a53149cc34 +a2f395401811dbf3135a46ada55966cc a2f41b6b1a00f4d20866b74121e35552 +a2f587272506b2341e30ed07d90d1494 a2f62be28df3a47a0abd0b7b9c99ca34 a2f63c22e3e619644d2a1e98c93b085f a2f77b93e28d5cfaf3e986298bb7acdd @@ -37081,6 +41411,7 @@ a2f894d394069eebfb6a1d054df75394 a2f8e61b61e1019ffc7826636e4612df a2f97dc9f065ffe83c41e507082c20a5 a2fa1e3a90931d9f57714d1fdd5eab97 +a2fa548d9fe15fe3ad9f4a5a42153280 a2fca6c69294e7d7a3c84d4f80732d2e a2ff75d8e56d1276c57e26a482781153 a300d0f4f7d403cd50e66ab0619b5cff @@ -37110,11 +41441,13 @@ a31acbf82158dfecd305b0db0850074b a31d16187adf6fd939dfcd5e54cd15b9 a31dbebbfbbfe952bfeaa02e094a2c34 a31e7c460ef44f0df12942171807fb3a +a3200c7fe32c3b04414dd07b231975c6 a320ba435a43a93ecd3e16193540b3c0 a3212504daade3de6125a05ffde271c2 a321c7bb48fa28e2d2cb88379a3e2aac a321e374b0036d8a7ded1900e3b9bd79 a322c5394972f72ce12ddd40146d2194 +a322da5f11afd537cebf6b77aad77cac a3239cccd4a8c02a96fd451f061dec03 a326605e7d21f596a47b227d39bee204 a32758b257703474913ffa47353a0fd8 @@ -37125,6 +41458,7 @@ a32877428a645ac790fa33ea24b12f2a a32878ae4d95c9a84c7ffe5f67dbaf0e a328f49725869fbd3e21f48ca9feb856 a329ae26787e417768b9bade028ef239 +a32b60976951766f1701e55a27f4388d a32bcc02566d1af8bee835ff1bad1c3c a32d3d9552908679a2db728632ca0af1 a330b5275ca0a78e11b3703caca0c1fc @@ -37133,6 +41467,7 @@ a3324fcbd49fc4b6c424c59b322b10a3 a333f72fd313ebe2855812fa2e36c5ae a335136a20e458ccb266edcec0bbd5f6 a33670de915a4181148951848063c02d +a336768f4e50735d0b7ab9e736da5e80 a33711bd6c9fdf460cb79a92b50cc674 a337e5bdc1701c80b780062edcf18950 a337ee3f2e74e2fbc263e67de45f9b7d @@ -37148,6 +41483,7 @@ a3462925df868689fde1b916dabc785d a348307d38cb095792e560546f157258 a3486e3f4013a38d66cc9cb59672c0b6 a3489db9cab7af00370767201a5f08c3 +a348dac5960cefddcef763fbaf4fc7f0 a3493715726f28188aa8c96cd7356f70 a34b2472dadba391bc4879bfb596879f a34b9041692dc647cb34570f59506e1e @@ -37156,10 +41492,13 @@ a351bbbee2299f3dc2180a2510c610c2 a3530b03fdc5b47955683bf9aa42b8c0 a354a5695e52642b1ced6f5f18ec750b a354e2f5330379cc99c3e7790cf27a53 +a354e561663d2aa28221d6df27705165 +a3578136e5effc562f863b865b368760 a35826b11edd9c2c0e0baa35e51b9c20 a358dba532c4da0477c25f8444033d4d a3594a37cdd82d5f77c90e3071f6a475 a359563a4d3c7c4e5de49d3b61e445ab +a35af8a43b0c77652ef8cfcda68faf38 a35bdf7834b84db78a180e0ae375d706 a35c0287c66b28694a69cfb9a83b67ff a35c15b07442c0393cee4a095842b9d8 @@ -37169,6 +41508,8 @@ a35f7b2c306bfb5b74c3651bb5cc41e7 a3634f26d9148ed79ea528f70e47a3c3 a363f3214267d1577038ba9cdfc5a9d2 a36587b9d2ee5ac4f92fe39c26e6f75b +a365bc80bad2335e7fb557ace0a6c360 +a368e1fa2e3ec0bd26c0be3b3d018c69 a3698b7480ee230e21b303392726ee7e a369d780dab3ec11b742af0183e4a29f a36ab9ae8f1901c82c597a90b84ee5cb @@ -37177,8 +41518,12 @@ a36b2ceb329885570c3960165d5edc4d a36cd7ad18294f9fb9ad25916b66c2cc a36d14fd4d82f37199c20b42e985a10d a36e0afb3a2df8b18af48fac4874b942 +a36eb734b59c974423983719c8580143 a36f112afaab87ee1bb28000c931113f +a3705e3eb0d0b4eb36d89de7d9d6f29c +a370a63134be17470af7ff9972db76c7 a3721e36f83fd6d375fa0174ce50da33 +a372885a1a362127568435ab14073f4d a37482e503177b7a35ad575650d2f10a a375011245d5a52cee9b3584e49c6cfd a3751de23d2a1bc97b35dab0af43c959 @@ -37189,11 +41534,13 @@ a378c3414cacad8344a152293db0c0b4 a379b0b92ee844a75480c841f4cf340e a37a784d2914eff602935ac0af278254 a37b00c591b67e443bc1f19a34cea74f +a37b142e9126df8aa6df9456209163fd a37b863a5bf02d4b1c3d543d95318a6e a37daf906d4bbe61e8d92d968cf29d41 a37dba8255da222dd4a2ac391da05495 a37dbe82ffb8a8368e8aea409e6cce05 a37edb9e1a4580b7b89d4262879e3065 +a38047c0d20c1fb5778eeeb8ebe2d496 a380ac9c8583f48d77d5a690baad941f a381a0ccd5f95d58407c3ebdbd104ed9 a3826415e48918abecd1b88be4b64873 @@ -37208,6 +41555,7 @@ a38b01d0530f14d7864d2cd9ad17e436 a38c1b466f6c496e98343398d461b307 a38c317877dfd3083444d25f216b0028 a38d0c02434199da8e92971aa4422f09 +a38d73dad6aa73b4519fb003b623bd7e a38e76d20d5e2ab5233cb1db7fad3847 a38e9979814fc15fcfe707249925f203 a38f628d2cb455adfa5ee55466f8bc6a @@ -37215,6 +41563,7 @@ a39062057682700d9466098eea366f7a a3916369dde6be2fb0b4dda782155012 a391685553fc7ef77a803160c07b7933 a3921e5a18902e4e24594dd9545aee46 +a39221647a5972fb4632a95ba90e200f a393651e0377b19f99619d791d50fd9c a393de9a54565414f62fd461460275c9 a394a2ccf170940dedaaa6fc1ba883ff @@ -37226,19 +41575,24 @@ a3976088f18a564c144ded81c9bdd860 a397daae52ef036e7e03d025baed03bb a3988137fdd555295bb334d7d297b52c a398a244e412a4fd224cbb62f68e8dd2 +a398ea7ea00878b73870ee94b068deb0 a3992ed3bf9e5c495c402a5c147d92bf a39ac8295decdbb5a9892c55497ebf9f a39b5affbf5b010ab7909d95fe0ebe7d a39fbf2bbc24e255ae157fec09c5a670 +a3a042cdfdeeaf02d7b802482de16c5e +a3a112ce8f5602fef088d49875665266 a3a30104b76ba3a368525fdcc417fde0 a3a43ff0b1efd9129dea540dfa3f791b a3a56045629d866ef413cc12dd6eb5f9 a3a5c752be91a0f07e90f0d723186664 a3a69152b33772a087852f63b51e31cd +a3a7570d35d2cad3bb2922837ab16241 a3aa120ef89d868db26bb4e266f6b1b8 a3ab5a0b368b618b7a5c02ab276eab74 a3abcc45c7332cd40a947754539b7101 a3ac400258f0ed012469accf65f21547 +a3ad771cffa5a58c1cc1164a0dd24c63 a3adb7597cc3038d0026f5af8108265e a3ae8c571eda02e42e23729532bcdfb4 a3b1e135f2b0865e2f6af6f9b2f91179 @@ -37248,10 +41602,12 @@ a3b96b28d05e1830d6f6429e3cc95e25 a3b9dc909b41d0df04c06d3e7b2ea6d8 a3ba874c8d8c673587e1131fdd89c093 a3bc33196cf63351d19b0d5f4d0c3953 +a3bd9bd24c1acf36e7db24898bd12342 a3c03a7d8577b5672404c169ce1ea2a0 a3c04b6f6195774140e757ae30d8a14b a3c41a40f82f32c5029bff42519e3d20 a3c4c435c5fa8ddd2f3a5a8a648953a5 +a3c50d87bbb9b5868d9c3f329481c81c a3c575cfb911a1709fc9aba6c7bcc693 a3c583e95ce93f69b8c53b218a10b291 a3c605865069949892a251b555131208 @@ -37259,6 +41615,7 @@ a3c656adfd2544447d72890e9297fb3c a3c69ee4b74c444183dcb5ec5775cced a3c991552eac98d9dc54fabfc5ee35a8 a3ca674816300d9be23ae855471093ad +a3ca99ab5bda3a49405fc0c300b5849f a3cae2d50b545d871f092b50e2b3c836 a3cba816aa3308521c133a3743a55a37 a3cbd78b5f3d34405ecb858ec5aab92f @@ -37296,6 +41653,7 @@ a3e6ce8347037ccb4cfc1486afbb0f02 a3ea1f6ea91944dc5346d870016ea5b4 a3eaa4fef9dab48b8d681d4006a63e0f a3eaf18332a3f84027919a28ddf090ab +a3ebc0e6eaa2f972b58d2c92288fb089 a3ed008cd86edc1b623cf31609bcfb22 a3ed74bca3cd465cf6393085bdf466f1 a3ed8fd6fbd5b24f739e9656c0f7939a @@ -37310,9 +41668,12 @@ a3f4be1caa37199b77ad412c9b333235 a3f74fe7fe757467099d28748127c316 a3f991d1fe812d9c077ce9acb2ad5df4 a3fa8f28e0e96ca0475589d720462adc +a3fb0a1247463ee26a8ec719a3ec0c84 a3fbbf92f1d1c2afadc66c3a949749ce +a3fc1acafa025fd447bbec47878b10a8 a3fec4e4a3a1c91c8b6fa543b63bcc72 a3ff734148161e14439e8e9a494435a4 +a3fff474cb0147ce8527d8b86686c13c a4004ae44d809b75163846255eb00fcb a400aa95ac89c4c97e3c21888b0883b3 a403b1ffc717c8344dab04b4f999e16c @@ -37340,12 +41701,15 @@ a4160af1242c503ac85733e59775d8b9 a4170c1d89958d1c4dedd06ffac13573 a41859e75769f2146f9cd2c355b9abe9 a41a1e8ead0191c73f00f839ef5894a8 +a41a3069137a5b2cf9163d797ef6f34d a41a512b08a2b8dd46a8365575d04dec a41b8484e0101426e18b17221af69d60 a41befb9171917fdafdb554a11347184 a41d7c155a135f0313fa2d02ee22d497 +a41f1af5ae098c60a88eaa6a7c347272 a422788bfc192efcc3741880904ab5a1 a4258d8b8dacfb95e79df3554a587774 +a426975422248eb4eea2a3d55e240556 a4279a13a95e53879c65350d814ae0e4 a427a91862ebed0f67a9ca07ca307324 a429071eafffea2082306301b93df058 @@ -37353,7 +41717,9 @@ a429b0d661b302ec43bddde128dd3e79 a42a33fa343a16bcad72d2c7e6663a67 a42a4aab80a3c28d1a5820b47649f8e5 a42b3573d1e31822c3fbb80d2eb065aa +a42e14a5c0e8584c51a90595d8b24bae a42eab6930105da2e2807fe6f309b735 +a42f32bb58ed6691dba59e3ff5a79a88 a4302cc20eb59ac7caa2680f17d49ff1 a430a1139530da49869220489a46f417 a431a78b6eadf7ddca4e01544730e225 @@ -37375,6 +41741,7 @@ a43eef9ee0e5bf1be241eedac39a5d9d a43f3b98b6e0b9b199788c25571457f0 a44325f8b8d00b933d0b7726414d55ed a443879d36ac5ae023c485a084474557 +a443d54505b2e77a375396ff9ab45316 a444f4ab2204174dd687786541e3d780 a44548150937c94204deea154cc73004 a446abd18fad4753741ff75a8825919f @@ -37422,14 +41789,18 @@ a46ea2c7973724ce4714ee7f9ae51b84 a4705a855ed70f80823d30a66c544db0 a4732b662d22af92d2d479c3354b20cc a4738da2bd3933dc40bfaa6e50a99dc9 +a474172849098e187474e79207adf68a +a475ae66d5867c761c1ce939e2777390 a475d5b03715c6f6ea0ae4f45ff12d30 a476a4cd5d0d8502192bb73c09fb993d a476b52909b88e49c41be3d9a60937a3 a47a0552d36aa62fd534d2d29ca071f2 a47ae23f48f6e022998e239f9984b8d8 +a47ead397fea7dca9f1ae9fe679fe2b1 a47f0ae965d95473f224e34717191727 a47f6b202260a2aca5a4637fda968a9d a47f9bafcbf5f45465402483cb36cd78 +a4801e02da996fbfa865dbf8549d25ea a4814f62d05f810fac6ef602a5c5cdc5 a481a09509000f666e7a5a7f25d3456e a484718808eb98fe0f318f0bedf3dbd7 @@ -37464,7 +41835,9 @@ a4a7b4e118c8f7040990c416c103be99 a4a81153fed890fd0ebc64e3369ad9a1 a4a8fc4d7adb760e2c6ba8588df713d4 a4aa1f5add9f67dcf9b66c533c5151f1 +a4ab1a04b31fa2593de796dee5672704 a4abbfb8f16fcbd250c960ab9f657990 +a4adfad8acc274490f169ebae2ead50e a4b072d4978526c6e499d5f879705c64 a4b2747d9b2857894034a3589aad575c a4b29072ef5908180aaf58e72f1073d0 @@ -37485,12 +41858,15 @@ a4bbd1e3df889c556d02c229dfe9adef a4bbee27a0eb37bf82d9bbe5b2c438c9 a4bcb34168a6426fde09fa3250c175ad a4bde247d19fbfab6f7b8071bd5815c9 +a4be6b709157a93468fc2f4ea4c25246 a4becf06a6d96ea349e7d43ad02d8cbf a4bedecd7acf6542974d0bb28b5967ed a4bf5fe5d7d6e76cb78e7488382ca955 a4bf711b391a75ac9b809a830ec2d6e8 +a4c10e49b09ec6c38cfe6ae538b0e9da a4c1750322e42c8d42130139afd0b6ee a4c272db221225dc146e3e396bed19b0 +a4c2c54270634497c0a5373278282c31 a4c39421c09a940f3ae9a9e83757e80c a4c4e60b53400717935bedf84ebd1f0d a4c51c47de24de70388f1b1239955b76 @@ -37539,19 +41915,23 @@ a4ec383f72f56a5c152ac1d8e0993b68 a4ecea027ecc6ec471da793bd6c82588 a4ef9cda7b55f7f220ffa4d7baa4606c a4f0a52ec9396ff20c6f67d5c3d3fe0d +a4f11ea8d173391737f1a37ceeabf702 a4f2cd0ea26b434ea6fbec4da3d9f3d3 a4f38ec6e8823ad9cfe4cfdc86c204d5 a4f412101763c05c4e089dfe5f8bc138 +a4f62253a65e0da1c0ef9a7a2cc98a63 a4f97bc93ad86cb900845beda8f0540e a4f991af22ffc6fd738e26a71b57c342 a4fb781aa749b6ca97ea02ca48a18283 a4fba2b55b650dd0b20eeedb2253c27d +a4fce3708fcc2113f78dfb19ba360b9b a4fef1f69a166e5d2e4deac9dd095f2d a4fefc8adbeb41cfb7794bb14a27e5e9 a4ff10c6c9db5e24ce325bdd48261670 a4ffa5f0c7fffd24dc93017cdd9e7881 a5000119cfdf0ab7885bfb4e1a79ee30 a500ae1072ed6b44e6422f912e842ab3 +a5028ad368ca7bf650d4642c88f1261a a5041b1dce7b80ba16db3ff6c69754c5 a504477598d90019ee9e2898393cff49 a504e96cb1ce1dd7d339e25c3d448e3a @@ -37561,6 +41941,8 @@ a508cf13830de3a9e9ca6098a2a31d9c a509e3c03541ccf97cb27aeb6a1c0635 a50a7290ec1f0f73d00f87b26763221e a50be14dc5dfec312735de378a06c3ff +a50d6e6222f5ddd7234303832cd1615d +a50d85c7846c400be2386488869916ad a50dcf5dbcc38258afcf7a19cad7ee1c a50e2705e488ecb19283a1a794c3cb4c a50e5373d996d45d95784c974d020be2 @@ -37568,15 +41950,19 @@ a50edf12b9e5d75a0a846303cc9f6500 a510bd092b2b0ea44c19c6092c55aa6b a51145d7b6fbcc43597785ccaa857598 a51195c937c1439f66f7f42756081a76 +a511a8055d12dadbf753fa537036e8d1 a513f37d7f46d5ec13a1d88d7fedcbdf a51534bcf0425380186a1e7d147ed719 a518589bd1e8e71275d94f55c2335d4f a518db31eacf6ce9c2bd5f6d37af79f7 a5192af6a0f00b168c6fbd640fa56e1f a51ca8c17f9487941945c9ff5fd4f61b +a51cd908e9097d1de31221f288a0caec a51d363c7cfc28541d6b2882edf58f84 a51d7094d4e8c3a94a8207af928e633b a51f0960322fb6b4381df61162abb879 +a51f1f46a36e96eaa4c8bac0a7b02050 +a51f36b188711dda256676029057a352 a51f730cb765ae8046b5b19da36b1848 a5216ce4c388a51c5ff5307861a189ad a522f5138c23df8a2d627bd528711e02 @@ -37601,11 +41987,13 @@ a5383bb03c3461e6c973a9f60ade7116 a5386ceb39ba16de4e8fa79dea8b5564 a5397a06f4eee4a3a9abc7a6f58a39a6 a53dfec39d271c7abd211b43ea560393 +a53f167592df9201db0b3770450056ac a540e3809af132b448e9b58533ff2e69 a541816a730faf173a113811325a1d9a a542c13db83d3e9e6b3db71d40aaa4c3 a5439c4fbc1e5292f960708bb76a2442 a54659d29784abd142bbee108fd61413 +a5467f7936dec01acb2f1c3179487d90 a548605c5c18e451ab2fa5238a880c0f a549c8c5918d6c6317cce4d00adaf99d a54a8c8d8b2dd73b3faba5feaf4fd231 @@ -37629,6 +42017,7 @@ a556f80e3e82c52a10f1779ba0bdb947 a5570a7e22addb8fc7b22662e67429a9 a55719db1c5785f03050e21db63f8fcc a557361366d6c9b892812fe2c52e15d1 +a5577fa00f6e187c18bc4ede513310f8 a558f56c776414658d81880395c2b385 a559413b860b8630ae98f9d362154c3a a559ea60a144c498f44f5260c409acfe @@ -37646,8 +42035,10 @@ a568775c41cf254c64f76223044f84b2 a5688dcf8872c18975122a3dbad37707 a568d201d1c98dd40b7aca4f5082e0d2 a56963ed55086bd1c0e732c92623b557 +a56a5a808c7912a4563f8c82473e23c5 a56ab23573041ef2504dd34ebd871c12 a56c66440f4acedbf462408f6c6cda16 +a56e1f43c6cb7cdf085368ac2f9956db a56f3f0805758fdb59e3b09f14284f4e a57028a3e7e7095c11a0461d970651b5 a571f2054b89e696e8d4e0da113a5f49 @@ -37661,6 +42052,7 @@ a575037e4e544ed432f8f294846deccd a57573dfcd401e66a5d23559ac751dbb a576a8ef3263e9020573562bf9d14a49 a577f1e1a44d3a0cacbcc4fa46000e75 +a57800ea4e949ef412fa05570bccaa29 a57a0a351cdc9edf7efcbbc6d5198e5c a57c4431b4ca3bd3c8a63b8691bd6f9f a57d5414d6b45ce43c5f05de4a71f475 @@ -37670,16 +42062,21 @@ a5866f57c319d8423c75fc85ceadd234 a586ec469376dda5dcd4a4c1fe49e986 a587d7798b03fb591895d63167f1a2f1 a588e21d3b46adcc5eb3bb829c51c46b +a5896d1e4ab8dfad4e73e3be3fef0543 a5899038fecc6cb31962afcddb547c84 a58a497d28bcbd05df4a95cff59f7fe0 +a58b091d4efd1fe142f0991909b130b0 +a58b2174b3a2a83a1a7af1adec148f52 a58c9c9dcaa8ddf717e699ba7dd43e5a a58f21d260a8a1b769479d2295600f61 +a58f72edd068f4c63b9b0292462c0501 a5907092e8a476dde856a90be02a63b1 a59092baac5c24b55aa1e46054a21335 a59105a3e94a657d119e904551a7fc66 a59264fbb291ee4a7e6c14f7d9a04323 a5945d4129214ff646db70d16d2ca368 a594e9d84bc8174f9c73f512785e83bd +a5953bfa251199bfc5bf438f20cca5dc a597b3bfeeb37fc6d2947476c56fa518 a5982727435deff54900adc3540b3c62 a5982b0dfe905bac0ec720cafdbd0ada @@ -37688,7 +42085,9 @@ a59a17876505130c4dcb87a7a06ae7f0 a59e15dbd9e53b143423adc9906d127e a59e734465c5e07e393291d7628aeb15 a59f592df7482d92d9e8eb6a8680c887 +a5a12b4f3596522e837ee83c5b0aa1a6 a5a1f58c80fae2c9af1db2e54ac97917 +a5a280113f30694c1405d0a72b0be9a4 a5a3515fe5ff58737010df98d9abd45a a5a378aa6f7ce768e005d2467d45897f a5a45f4857362fccb9a6d3bd747304ab @@ -37709,6 +42108,8 @@ a5b141cc9453c513c8fcf494e60f046e a5b1d1a32b2b41f184d9f8b57b456864 a5b349294fe7832d189a76eca3a20efb a5b4cdb245a6378658dfcbdd37bed055 +a5b60a09f5e25876d6839f49059c2fae +a5b7d16110814a29a64c4e0875a29c43 a5b899c7020c66000f2aba2740a0b498 a5ba1a2b2f6db09cba767ea1dfb2fd39 a5ba332f799080d6488748d3d5dc1094 @@ -37716,6 +42117,7 @@ a5bad6d753e622c1c112491bafdb26f4 a5bae1a6f7f66aac337c5d1aa9983e7d a5bae93cdcbb62337893ce59af31384b a5bbd521ded640306a5db08e72dc460b +a5bc1b0cfaf2eee0573f82d7339d6dc0 a5bdb0228f6e0ea85b2e0915716b9db4 a5be0d7c0bfe10a98d9547a281b82069 a5be22e1e9e6122a78e26df4c33e9575 @@ -37723,11 +42125,13 @@ a5c0a24ec152c7b56e4e7ed0167dd224 a5c65adee364c70ec860a9e058e4cdda a5c782086ad9692ce91c714af0951c0b a5ca66d88d5555f187798f0ed4aeb367 +a5caf1c6bfd0effbc8c90fe043d9c4b6 a5cb98d92f6866b36e1ee8147df77f44 a5cbec9aeba9d02b39fb7ca6eba05f1c a5cc32da980c80135e1945e6d7b7fb28 a5cc9a6593e478ceb7cdd3ed85516831 a5cd8d4546ddb90bd8533631d8cc14da +a5ce8b1687e179da4345013903666338 a5cfecbbf0db5b2923e690dc97918718 a5d006b7611a107bdf63a57f2075510a a5d05d21a5d367d76657a30bebad9c28 @@ -37736,6 +42140,7 @@ a5d1ef06e4dcd20237535ad389aaa232 a5d2f3ee53c7fde555e4c2db1ef0754a a5d3da1c263a954abba784067336d55a a5d602636c189438f48426d3b3db611b +a5d6c703ae0bc747354a3ce651ef7d53 a5d751b835b2d241fde300fe690b463a a5d7de5dbd907476dcf3cbaad0638afe a5d96777cc4af5aaa5dd4d8b065cf766 @@ -37747,10 +42152,13 @@ a5de414a55ff8f149af4d01954966aa7 a5df57edca47a1f717d8f6130a31d450 a5e2217c969e9c4e6bfb4832d74dca36 a5e223e6db6a961db1c89ba150017e18 +a5e26b2c3f99f50446bd46a055d5fa8e a5e3a30844d8eecb1051a42e35bcd6a2 a5e3ddb792ab55099d0c4b900300a196 a5e3e948ef40beaaac32aacbc193d848 a5e542dcc14988c0d96f2b481f9d38b3 +a5e7b688f5c04dece9011fba78947f0f +a5e8d809aeaa221c49b6c90315f0d74b a5e9199ba6af82a26fc4e6ee51671726 a5e9d92b27db72e73775af8acd89f364 a5e9fc25de185892b851c1fded5bebf5 @@ -37765,12 +42173,14 @@ a5ee1aeebceead355bbd62bbdee3f315 a5ef453ae71997794093b8d9f62f7659 a5f17a9ad3d65f7224e59e64ae049395 a5f1992ffd2bbefacc174520aea1fdee +a5f22a21264bec7040db674d96c98b14 a5f25d3e6cfaba8ad613303167cce778 a5f2c990fedaa2747ce413422a8c59cf a5f2eb996f7b1f67c948fbf9b0609db8 a5f48e4e0c0ef83220e634a711e1c7de a5f4ed3e58ad3b20ccb2dc01c99261cd a5f5881c8fd6a3fe2674375a4f25e68d +a5f71fef57a2e40f4a71ef76c0694308 a5f73e2a505e5fbb21c70dac238af374 a5f8d14eae46e42e2b6ec8d42a6456b3 a5fa999ac25f428335a669fe964379c4 @@ -37795,10 +42205,13 @@ a609305b13b6d3c156136689961a8de0 a6093f7d08b8c5b16c87271ec838afa0 a60a603ccac26d59ba85b40b6f726171 a60b6937538d756cf769ab366c211593 +a60be9780ac141f1fc70621959991b93 a60c598018d56688bb8572389934988a a60c82a8e03b412c2be5bbaa290f8096 +a60cca8c3b42a2a1918b43406d6c6474 a60ced6916af7ae2b72f2e9788fc923e a60df7d7961650e90708574d75faaec4 +a60fa64269357238276ef85b7372ab35 a60fc9a6dc9c517a0514ed4ed43b110f a6122bf75e8e20ac8cad10c724d3abe8 a61237deffae1fe283979ea379e72734 @@ -37822,6 +42235,7 @@ a622eca604019ad1eb180a568603754a a623475e01b5418782326c6f7d5a0d30 a624e1a75412b99becbc255954045ddd a6268449874faeb263c23243d3acdf0f +a627af77e62bb00a9eaf6f88dc064d27 a62901269a6ab3d0d9f5c895dc80819b a6299c78ffabe98f27498cc5398b2aec a629bceeb71553e1354623b9dd71418f @@ -37840,6 +42254,7 @@ a630e033562b2502f1f098ee858d0e73 a6313f628960c1ca462ea852f593bf15 a63197b3c93ac9bb909cd308b3667a4a a631b39a6518e43d8d906177321a9b88 +a631badb2acfb8c9f79f2f174eaa39e1 a631c1419e03f84d3d1ffc0ad3751163 a6328860f557c0ca5180fa123e3ca168 a632a77eaac00b70e7adb0f926f25c3b @@ -37856,6 +42271,7 @@ a63ed5460ecdd22ad282532bbb8344f9 a641655fe27d97d4216601df35e33fb4 a64207e2c02761a05cdddf99d0a97746 a6421cbaffa2ae3c8865adae238ee0a7 +a6436f1745894437fbad511231f65e50 a64373afe775daea0ebd31f6366e205c a644ef1df3c99da97cf8769178802945 a646a76d216e0feb00dac6524bb7bb9d @@ -37865,11 +42281,14 @@ a64baf29e67b1b3e3eaea1324462a851 a64bd99d41bd3d310ea6b329c6352524 a64d166f691e1adcea02d57c2ca15fef a64d1d3d35cb0a9566a232106f66e66d +a64ddf1c528d9abccba987603a4125f9 +a64e8bd149b60dd26650d1890bcbc3f4 a64ec8a88cb5964909610d9fcecca62d a64ed71f5d5d354be359cdc5f9172a35 a6500ed28412329959407ab1fd189813 a65088a4d6b1a07752250f5c7d2c1ea3 a650f1be5235bba5e3cae340675fdd3f +a651eb0198408a366bdea6e9616c742f a652a870100eccc9d146aca3a2ef102d a6536fcb5bf2b82403728229b28b488f a653919e154904e74a0b51ca9473d7f0 @@ -37877,6 +42296,8 @@ a656d003aa534d3ba64a2053fdfebf8f a656d451d4cbdd0389b431ff218406c4 a65735862a9203482cdcf3052d8681b7 a657627db459fd15f34a669a69dacc0e +a65848ba7e2c7bac66cc6dea8ce55556 +a658499e0ddcacaf0246c2d8c69a0146 a65928090bb4434056617f44ff06bad3 a659a565f37070e9ed99b9fcfcf50ffd a65abeaa00c047bb6ac4fe79313c018b @@ -37886,6 +42307,7 @@ a65fb7a591532dc232d88fc8312ccff9 a6603a401ca57a68d2bc9cac8bbf34f4 a6605e99a0565773abff44f1baa0d40d a661ec652c02185bd50427539d92240d +a6620b590ba904fda7855ccf9a5d4f74 a6629889a6d3062f76863856150d4620 a6635204797f76b63e0181d5e14b93ea a66566ffbccc7546de989d7a13c7b79a @@ -37901,6 +42323,7 @@ a66fc931e2dd5c8f8db1082624022ed0 a67041cdd3cca2b34bbbb3a855fdcc81 a6716da12d51b21652a316ec928404ce a672d722bf7d518ffc50ee4d5ad25681 +a675376671b113ca274565447ac98403 a6764b06e239d78f07c7fafcf0efac80 a677442bbd185712c60f40ad5a23f105 a6774df0ffd0aee5291ada10f8a3e7ba @@ -37911,6 +42334,7 @@ a678868c74fd01eb0418419a71e148a9 a67a666a8f52b5a264edcf53c779b4c0 a67a972dc93f5d4360f27fc1b506da39 a67aec050ce68048f0f90426bfa7d669 +a67e75814c12b3811cd34ad7d1ea33a5 a67f5ca69a37ca93ec9f566bef3d962d a681b440a53f79047b8a6a6130ea86ac a682c01fb330af148ba62a00c64f9158 @@ -37957,6 +42381,7 @@ a6a88645093db1fd6b7985353924634a a6a95ce6620756006862575e7a3ad134 a6a9fcc573e6997bf21ccdcdb0f7ccdc a6ab51c700214046418db114d198fefd +a6abb2eb03ab3e617f102abc082dc121 a6ac7a2da0cc3e364999a8a92b4ed497 a6ae4873004df86610953aeadc01a123 a6b0cc8b01689f46130885eaf4d32f8c @@ -37964,9 +42389,11 @@ a6b0e489863fd0949f04f53a0945ddb5 a6b1ba05e9ba6c1ca53e02cc9c162787 a6b2128800c0550e87229b850c5a7da0 a6b23694acf3a218388b26840bd59bf0 +a6b24bdab08bc0a5033fd141f0705f1c a6b3910e8f5f8cddcc98ed28ffde8eb1 a6b555368c35e680327ff882777d2856 a6b8b75ad1c4abfe721ad00128c88ce6 +a6baddfddbce0d6a26dd1175452f62da a6bb205b6ace0901bcaf3c1666d209e7 a6bb9cac2c81c9e071d229942fb30029 a6bbad8a6f7a7de8a25081209ed56a57 @@ -37974,6 +42401,7 @@ a6bc281c753db0e157cc694677774d4f a6bd31fa87cc99c4df00b03900deeeea a6c01329b79b489f217a1a2c278ebce2 a6c1ca3ac67d7bd35f840745d428e930 +a6c36d757704e10a5ffcbf5ca6333c67 a6c39a6db242cabaf3848418dc8bc62e a6c4939a89ceceda85439692be403ebc a6c7d0dbe9d7445a9ce19fde1c0a88e5 @@ -37992,9 +42420,13 @@ a6da2bf9a4385437c0579f3952d36c27 a6daa4f8838cb7946e335b639b23b6dd a6dbb0ca18539cd62021c1bbf9d134a7 a6dbd30c1deed7bd726bdbc4013c67a5 +a6dcb6609830a048727061bdd193e6a3 +a6dd2d16132a9ca02aecf79f3006b074 +a6dd34bd08a8f02822ede3131f31e0be a6de8a765cdf65b9711b4e546c34b365 a6de9caaf0657fcb4da8a3520914d6e5 a6dffa5c5d606e39a07cbf64339499c9 +a6e1eb485d23974319fa56be9eb68af3 a6e1f30d95bf23446248a72608108bfb a6e2bc568d50231a836073c3302605a3 a6e39c633840192ffb571794bf4a4d55 @@ -38054,9 +42486,13 @@ a711e9d04637aa322351f1afd21c5a52 a71379944b401d96cf290d19b750bd16 a71437e6416bd9e165ec4ca4f673fcf6 a714c1e6dbfdb204a389c42c490aff96 +a71558ca36e7cd8e0e54c278be9953bc a7170f566984184deb59eaac1c0ead63 +a7171dd3264d7fbc0590eee1d7a4ecd3 a71833011f93ee64074a33daf77f5538 +a719a2b67b67b9ae5517d879e69569a7 a719f420334dfd10890f0a75febffac9 +a71b15881568b05a19845c4043746c28 a71b51b50c37cb13f94dc3e401e3e382 a71b9a8ad7380328940b221883b4b346 a71da3db30fd21a1400162dd2fdbb27a @@ -38075,13 +42511,16 @@ a729719668427d3b66f91d630c1e4c78 a729ba205852e597bf384b6f8544373d a72a27b2bb8e2b4ff8c6263428a99e71 a72aa5b78adc0fbd042c98602520a44b +a72b52233686443ca0f9b23a981f7efe a72be6c9dd856f5ae05b927574179ac6 +a72dbf5dc22407d3d41a66eb5dc2d2e9 a730061b86f005f7db82e3843a68c3fb a73044310bcbfa32e05db5c3e16d1a1d a7317dedc7fd56b1b3db8ac32213ffd9 a733955e3ed3ac0efe6dafd8ad530e42 a733ca390be5db0a096af14b33df73c9 a7355e48d98f1c7f6e05457c549a4c92 +a7368a347306f01cbabc19e9fe603dd5 a73731f00577ed707664ea5a47b62415 a737b54dffb1dfe5d50101f9d37be83c a73bb73c108ed63bf2e6e697c7890604 @@ -38092,16 +42531,21 @@ a73c75f4b7885704fa7d17cf6d18071a a73f0d690b771fddfe68b2f46f24d48d a7401f7495ea5945561450b2f9836a00 a7403c9bf31a8bf1f759f8c1b42c1657 +a7405bf9f99ff24bb34294dfcccb9581 a740c568b1d7e0c96eda85aacc4bf631 +a7414d677f8a7cbadf3ffd84724e0100 a742071006553a4f37fe44457a9fb709 a744352198e7260b6a091e1c0536843c a7445663e47203be1bfb9c21165d234c a744ff73c8de24e5daee397fd225a80c a7450f77c348bca9cab77fb93a9091a5 a745118a234df6c7d6d48f6f78e65c74 +a7464fb7f5b5e8030c3fde289b2c0d11 a74699e359f0d765168219a4d6239089 a7469eeba20a1a2a83e29e85aec024f2 +a746dc7515dc33ade5433e4a367f74a1 a746ed980abcc7fd6ef265c4169d170b +a7476df1308035c411c15d3a8c0b8c70 a7481c5afb0977324a19bc4ba123b78c a7483cbf7898a617a17cb1d997790680 a74948873ca768881142d0bf8dc63982 @@ -38113,6 +42557,7 @@ a74d0d698fc12afa4526cfe1096bf222 a74d59a1d4a67a7d706aa7e9b338d1fd a74d684b313f74bfa48db095c264e908 a74ee47c03c57f4447d700f9083ba182 +a74f88820909ea6854f5e52c0b2fb713 a75138a67818690b647a5025defabd27 a752f3184fdf0dc88659d1a822936bdc a7531d3e8877bafa50248a6256cdffe3 @@ -38134,6 +42579,7 @@ a760a8860e41c4412c643c3e6c0be7dd a76139ea6391449c43f519ccdea2347f a761ee2504cc0fdbcd90ea44121bb78b a762b3b65286d14df1d30d3cd8a509d2 +a765d4a6dd5bdc508b71bd0a91752724 a76668e9bc6bcdfca036eaa187a1e955 a76726a1bc7c504c56acfa0809421bb3 a767943204382fecc21056b63fe4fdb7 @@ -38144,6 +42590,7 @@ a76f71009c980003eea2062414ea11b3 a7739f3e11d00e949dfb8e8404816878 a7742a668365d60c9a44495a4329e3dc a77445b146425d6f1376a0dcce77ae6b +a77468d0e8772e8de09f5458d9ebad35 a7748015c29aea4bd98eaedc2a8be721 a7786698b995f1d3e19823a834537dd4 a778df9c7856e3117b89e997b24a64e2 @@ -38155,26 +42602,35 @@ a77e0fb08d10f652b73d61b72f85b606 a77e874fdc8ecfa7ff0ae87ea7e0a513 a77f7d310fa589bf4e192fa26832e87c a78170faab9a90fd9e2a93c24d19ba3e +a7820679dcc2a00676d1de679f795851 +a7822db04ce0f6880c385f5aebedfc0e a784761d6d59569d87a53b4276f2b6f4 a78486efd35cc0aa342bbf5a838b98e6 a787556b06450160ff48cc66a8264377 a787e1e19a6d1233a104ef3a30b5ec85 a7890923e6b2af0b5e0e4b942da647d9 +a78917ad94bf1499ad8ac62849d7a58a a789fdce26fd4f54234c8bbc93965c91 a78a49b0eaa9fe221bb461e783da55ee a78a8f882fbbcca29addf5e5c1b21894 a78c3df1755a65913e38773546b78537 a78da4f37ec9c67bd4308b8d15e00701 +a78de3d6a505c79380b5f2033a927bb8 a78e3270e3c099b06ff9b33eeba090fd a78e408b05897458924dd1efbd01d0d8 a792ce0512dac39632a41673b8976cb3 a79318e43a4fabcf92a962abcfb43aaf +a793629d2868c75ad598c8f8d55f0e97 +a793b79ca50936aee3d94e5973ea6d4a a7967cbe792110c24efc624f15a55c5d a796db57e69f7b5a09400ef8edd9b0cb +a79700faf04538f119205b71fd2c898c +a79779cf2ef77243632a893bf1c4be52 a79aff4d86a6eeea414a372c6c5acfe9 a79b6c73aaeb39826652e9a045452f49 a7a1b2b0a5cdb213e40141cc6f93127b a7a35a3e5464c0ae3c535988f6630f16 +a7a361068bec9b01816ba52c4ca247cd a7a3bbb1de7838e037ecf5109c05d669 a7a4e5ad412360adf690d4ec93b275a8 a7a5aa57fcbba7aac17a114f90343e7c @@ -38182,6 +42638,7 @@ a7a67afd196cba822d575c0decf9ed1b a7a703a2d060297cfda56f90af1bcda0 a7a71bfaa697ff117f264b4fdabbbe9a a7a8757ce72ab5b2e5fdab1345c8b4ae +a7a8f7b9f03cd7446c6a5c9dee985b69 a7acf550050922572f474cef0a28ea4c a7ae1a9068586521244eb11e5221ec0e a7ae94667d76c4e2f63596b80246c0e9 @@ -38189,12 +42646,15 @@ a7aecce8b6a6b1b2e2e9598f0fd48639 a7af00a6571cdff703b4fa4280d2e783 a7afb9aa698ced4796120f01619eba96 a7b0706771033b27660113a764d72257 +a7b156f39f719c6e877e915584076960 a7b2b07d0d0080ab189d6857748b8ce8 a7b3b36c0dd819dad2dfa6253abcc750 a7b51868ba51e047d72b272bf1a711de a7b5574538d2a224748763e8b309a722 a7b7d4156dc3ec2af83fa2ba1a322473 a7b8209a7a1fa7b98ad3a4f8ba991985 +a7ba21cb9de7eff4d1a1afe5c7c6ac75 +a7ba938360dd5127a9359a15cf12e78f a7bbe9f61cf29838e970e909ec025786 a7bc0595121b98ba6ee6e5abc4cc49d0 a7bc1e9b464e2e126a9396d16b0e0810 @@ -38213,6 +42673,7 @@ a7c7f697212f846e21d8191784959217 a7c87ab075d9e0aafe4d8bd1907c2106 a7c8d8e1204b375d2e6264baecd4b4f3 a7c8ddfb3bd055fe217b0041103c4ff0 +a7c9a7d96eeec2a7f68be91b732aec6c a7c9dd52af173616fc071c6381fbb0d0 a7ca170e39ab05879f4ac8a449b69d7e a7ca37f5bcd32d1abc732ea842e83d6e @@ -38222,11 +42683,13 @@ a7cd2d3b32f69698938f4d1d8154511c a7ce33e2861808e15812312bb50e2c35 a7cf42b2c72aa45d0143a57316ad84f9 a7cf51894b8bfee1be3bb1d27a7ab215 +a7cf54251bb16cc90960ed0847d9c980 a7d059c3327c62752d0d4ae3a725df7a a7d0c7f0bc0d0b45c98d111e8225e25f a7d1dd354d6c8f00339464b6cd2863e2 a7d4257035253d0a0b8c4c7f3ec8af09 a7d549859cff9f0271c4625ce7a25b3f +a7d5d64e2fec691f42f38ebb662ae9fa a7d7224a34d7e5a5d6de2bdaad2ed07b a7daaa7aa5ee6d4f6870cb435c1dc83b a7dbf18feb9278bb41e7941ec16f8477 @@ -38234,17 +42697,24 @@ a7dc404a9c96b0b73202212487003d5a a7dc7fc792fbf7a677f194859a43d584 a7dd49820cb00a76f7e9a44ae024f82b a7df267989382fe6328426eb03c39318 +a7df52a91ee0a78789b9bb220e44d04c +a7dfbc134a7088d1411d8fae67f0c7ad a7e097eced828dc7b20946c7d21cce19 a7e0aaa8995edc2d1a26c96479232536 a7e16a26bfc9ffc01c640fcdc5b4c99a +a7e3c0a74d395aa8b36bf55920259e15 a7e47d018632e3033a3797c33bd3b10a a7e5216dac1a21eb81e7161bb1026ae9 a7e543c7b97d0bd74e16404326cc9d2e a7e5611fbe7d1d74e94c2377374b4236 a7e7ff7ee800ffc3ef59e2692fadb08d +a7e8064075b1c20014cf662b16a49eb1 a7e9404e3814b03ccc32853bfdf84c6b a7ea09dd1056187b020f522425202386 +a7ea2473861d64b60d644a83fbe451ec a7ec5024bb58bea40b36ff0b01ac357e +a7ec9a7c2e0e757ce5218294a624ea09 +a7ecf7dced6d6cc31403046ff3ab1d22 a7ee06eeeb4edeac3a9f3c524cb9de8a a7f55092a9b7b14531c0d47a41fcd49e a7f81f57ea82196d9007eab2ff3276b7 @@ -38259,6 +42729,8 @@ a800e90378934446e443bbf1e60dccff a80132df5c45d5f68ab8741656176fcd a801a107b8a4cc69588d3608bf964783 a801bde7b013adb54761ea8de91233b3 +a802cd7d87b04413f1c5ef644bcd8df4 +a8044685a9803c32fab640761956a7a1 a8073fcf91ebc0cccc01f0fc3b75d697 a80915e013b2c8c92c05f1065a3f7196 a809655dd2609d7035f8679829d79725 @@ -38267,8 +42739,11 @@ a81057d6f57e75e8bc28ac0b321bc1da a8127c4bb076387ee98257022f66c503 a814335405fa135d8bad638b363cd701 a81547743d0a8047bd66265e5f85e6d9 +a8156cf6b2822be4ed2aae7ec987e9b8 a8157a7d0e3e260cb64a51cff47b5509 a8158076acb1d0b0a296afca4c71acfa +a815887fb16aa023e00403a78a3e8e6f +a815ba113db1bdeeb8b2d4b07216004d a81647f31a1cf99ce576e3735c280896 a8170abb2bae8b1288566b5fe754d3c8 a817ca6116109abab0d9eac781e39136 @@ -38281,16 +42756,21 @@ a81da28b983324bd0fa612750d4bc1ad a81dbdb709afc1d586f0ea8dbb693616 a81e625437e235d331ea942018ea0158 a8203abf1e658a7ea30939118a5e0b40 +a82055cc92c2b1f6788dc1ed0634d2e7 a821df64e4782cf47033e48a207c6b45 a8240276d7d77f56bf359465f02c2195 +a824d6a45a4c15b3d865d2072c099588 a826551ab6f6247902fbff6456f1ccfd a827653e01cc5c3184418385fe599e0e a8279c0a4f1860095a964327700ff4df a82871d0cc9546dbd57d46025b1926d1 a829836ed37c10c999004f0e2664c287 +a829dbb998c78e8f40e03dd477b0d7ae a829f6a7bcd56075cb922a50875ca871 a82aefa5dddf63ec93b7ba3c266d9fe6 +a82bcb25c935e1dbe0d052dea896c47d a82d95a8d8006002534ff6a00de73338 +a82dcc93cbe04841f7c9f2d1f9fb28a1 a8312016982daf3be83a0fd158ff15c4 a83155550873db875032e27ec788864f a832335142c3eb193f76595b47755466 @@ -38314,9 +42794,11 @@ a844dab44ddee9941902ca38e7ad55b6 a846bb26e39cd27d986dd30f12f04f2c a846fe176e50c9e3b0e7e51a05db8d4e a8476727289c3c96ebff9158d9f479e1 +a847bb3dc10b9ed20de278ba8cea9c54 a8484fbb5be4335760489d6eae2e2e48 a8497a29a88c27227f251de5a28b0afb a84aff98c850bc5ebd0555a9333ada5f +a84bbda74e47e5f02680bc7f8c6d36b7 a84d4b4f38fb136dd5cd8d0457c30232 a84d8f93302e971a8bef0503d3d40b50 a8506fcc5ec0c54e2b843fa88faa4ce7 @@ -38346,13 +42828,19 @@ a868ec15de8d8a6cb40fa32c1b49ce39 a869a5685c5a5c51a9f31731a9b69ec6 a86a12ab1f377bc959e830d2faa6611c a86a4f49bef16f0e7d7004d0be4b3be2 +a86aacc7c489513febe7bc3ebb59860d a86aeb171959e769847870e08169309d a86c8d7114b8e15a8e15c2bac1303d80 a86c8ee394f34766141210f5dd15e9ce +a86d996bea3c5f4359941ddf795875a2 a86dc14b0553ff9303d948480370ec92 +a86ee1b9f016105fb53f195fee4ed306 +a870eb04244eafe361ebfea0b3adb9bf +a872408f7453b21f103b842632252bdc a872489cc32e090eb9c1ac2361efd85f a872a06d97356459875caea1ea589aa5 a872e4a152ce632236982f1dab918c1e +a87367d0f62b6dfddd4f50762001a784 a873affbcbe4764ff96b432609271b8a a875d696d204220d40e159c97ad910ba a876f5234fe9808cecafefb0970c9661 @@ -38364,6 +42852,7 @@ a87d6df7c3d34f0ba9beaf04857ab1a2 a87ec3403d66c8659211e14733ca6533 a88055ec6466e99a715f271223593894 a880c6ac3c72e1a5ce3be7ab21b48a8d +a882592337fc749b007f917f6c02b89a a88275070380ba9d690d0a63af839297 a8830baea821b9a392b34dce6ddf9626 a883716bdbb98fe2cfca16c4167e7f4c @@ -38376,6 +42865,7 @@ a88bf81cdabfc3c1022668adc9bd0889 a88c04a5339fb5b03fb8426d7712a8b7 a88dbc442302c125ceb12c06612516ac a88de304b8f3dbd55bc76c77724fd081 +a88de33de12e35d1de28dc0dababacb6 a88eeaa20fbd5476eebbf86560244b15 a8902b45095f2c0d4f7097c7d1a7a890 a892a0f4b3bce0c4042e399cdb750388 @@ -38383,8 +42873,11 @@ a8935081a34db88ada82054a2b41d71f a893582f19784ab1961180ba387e4aae a89481425054e5dc6b805def6568268c a894b716742a49443118d32cbbfec570 +a894bdbfc88f6834de191de11320a069 +a895669a2948cc6da6f217332165432a a89579dec31af404ba7935d6b0d00e9f a896b4fe578ae7e848ec13979755bd11 +a8976d6dd315a7c36585104d977070ea a898772f5af5d6d6110bf9a0481c639c a89a1c71bf1582e83cfa62659f66812d a89d0c7b304d3d549a82fc7307d2a851 @@ -38420,6 +42913,7 @@ a8c23e02cd31e0fb5b5ccb497931342a a8c59828cb92a9ec28fadff351b79f88 a8c6e7ecdf3e371843ba5f4de4179668 a8c6eccc64df09225ffe28197d0089a6 +a8c885ed716c60d5132443e1e311c189 a8c899b7aecb9ac02006f2270e1dff9e a8c9436e53fb1b8d07780f5049bb19e5 a8c96be24390dc7884ae9f609efa496d @@ -38443,8 +42937,11 @@ a8de34a78bd57bf560a15f2de7372c56 a8dfcd71ebecd5bf6a5f0f92305ea84f a8e03ca309a0c6679d8479e63ed002a6 a8e6291e981f4ae2c4ae13cf21ba10d3 +a8e956220cbc69304d407c0549895707 +a8eb2d96b4162cf4bf90de5f6df831a3 a8eb76b4267a4b4991f69a1ed2570b64 a8ec39e07edf3439c208d912294797eb +a8ec43433ae46cfffc63f3d74a9cc5b4 a8ec4ce34b67baa8be48c75ed47beb48 a8ec9963d57f2342a547aff422b4eee8 a8eccdaca5fee70ca3de439c29fa8c15 @@ -38457,12 +42954,16 @@ a8f3099b51b7a7e0eabc4b1b46a7c69a a8f35bcd4d447d2761349856fc68b586 a8f3a3f16162fb3b63a112eb07fdb9cc a8f5c71f90159a16d57c53feedfdb1c6 +a8f5df997be2825783eefd9b82721961 a8f60f9f3db81585f291d9fa66fe1fa7 +a8f6f909901ca6d030a560c5f9c43487 a8f7ec1c8548afec196ef57f137a1c4e a8f90590e5453ac8d33552abb5edb37a a8f9acb5930ed8c99a3e3abd2651ee6a +a8f9e99742feea018728d9bbfd6dfd33 a8fd96e132a38af7969cf9319c4976c8 a8fde0e5846ba67cdebb478b0e2ae43f +a8fe3757f31f17fe1c6996bcf21d3a68 a8febd7f0f1892e8dadf646b3e7450e2 a8ff166ff37c3a9bfc8256e43882a300 a9018fd2ee5b961cabae05de88cd2dbe @@ -38473,8 +42974,10 @@ a90925102fcbfbf539a75fe7021da7ad a90cb389f99a58a3979a81e1f0df9556 a90d05ac8389010dede7f401c129af2a a90df28c9fe5c6cdc3c073ba77ac4423 +a90f59bf0ad348ff9efda923e6ddbcdd a90f9716df8663c2342e5ef9e7b2e0a0 a9109ccdf160ba6c40845fe75cbe8640 +a911394f0a41064d55de236ddd3b8f55 a91366d280b90b80e26a6c52b8517e2e a91468acff13dfdc8556d26b402335b0 a914f3159555514c338ba3fe76b70361 @@ -38483,12 +42986,14 @@ a91560e1485c20baa247d63144912396 a916496ba165f42c9f4cf9c2d34a6cfd a9177caea8003d483245baf02d6b300c a918f9ce35c37500731b271712e7cd37 +a91a5fb89476719b3f437c70fe1f78c5 a91a9af3964eb7c7dc2efe5229c0e17b a91c0a5342a0a34dd101340e40af2b22 a91c983170f6ba2b792070a2dc8472db a91d76834d3333cec545c8d03489e52a a91e5890297fb9172ca1ef83d01f9629 a91f1fd29d379dffe32394666a4c6d43 +a91f7194b0709729cfb747435323a072 a9203622b38560f5b5508750b2617a8b a9236dc56e9938602a4fd6e211c04e1a a9241c05fac1c727d4c3bc1d3ca409d5 @@ -38500,9 +43005,12 @@ a92a648e812a9b648eee33cccb3d8f37 a92ab2064d3a9620bc45c641d19c6b4f a92ad81e14ef68a7efa446cd513f6528 a92c86b2f88bf3e5bc78966ccca5124d +a92da6c0c82d27ff60d52f865e6e64fe a92f0e3889be852de30921305280ddce a9305ed156746baf3940f6f020d6a2f0 +a9315219c2d704b7430ada0e273780a8 a934743f78797a646c63cc2c96c0c7c4 +a9350e09d5a2675d78cf83d4c5e728ec a93521740c5d6f1b8a73212bbe466892 a935a16872d71036bff8f310489cb4fb a9363d386dc3f1757d21fd1df75021ef @@ -38512,15 +43020,18 @@ a9395966cebfda1a2aa518a1114e12f3 a93964e91f6f0d45d7ac80af6c9e4c28 a939fd6e1cf08b74dd53f12a6fa46645 a93aa0f5092db97c64012dd62437d575 +a93ba5a6e72e1ee318d90b603b9adb11 a93cdec32a1ecb03f6c08672d327519a a93d2180529cc19c278ee31b947becbb a93d35765116314f01efc647bde9293b +a93e8b0e13035dada531396ca6435893 a940307cd0af50624f8151352fa658db a940f4dc341a9b03ec8c2267fa59d68e a94123c4983ff6e651ca7ade95caf7da a9431a62b7ebb044b489e3a6b1d0691c a94397f704e7d51ae3e62517f2f4d440 a943d5befcf7a0c9b17e39ed87a43b5b +a94589c6b9eee892562e90f00ae2e9e9 a945c65f587d79f7da325a9b1b18af91 a947fe5a2c165ae7de2777ec8b0f2411 a948b93756b0a8a9c93598cdebc905a9 @@ -38536,10 +43047,12 @@ a9514ca80c7067426d808e7d6ccc4298 a9516e7961aef0ab8e55f4fc1b2ea685 a9547293af267606043dc73619a1d8bb a955fa0d3e02dec7f1c59c85efd88cbd +a9587e9d1e122eda709d1bd2a35d4f20 a959baab9b0e84bd4055325fabc8382f a95a19382bfb2266a49565e819d03536 a95aa1fc4fb9bf3f3cabeadfe16c8cca a95b9e4510e0084d70ed7b6afc496df8 +a95ea78f7f64475d4b413ea53aed2532 a95ff95c5ac004b21966e94465fe325b a960727fb14449c56e0daa264aee5623 a961a3676f696ea19149e5637cf41fc2 @@ -38561,6 +43074,7 @@ a96a9163c99f95eee3184e213c0ffb23 a96b0d7225ea68bc857580cab75bf633 a96c5b4dc0d366d0df8a1b5da978163b a96c5e4475d607f97d660743e4933dc8 +a96d5ddb92b198d8c5256368ebae025a a96ef51d540da4168a405765f06a906d a96f0ac06470f8bb462a17d47de91fa6 a970164bb3d2f3f4f7a3a81581e38115 @@ -38577,7 +43091,9 @@ a9789d1c54f68cc87a734fa67e97ad23 a978bd2e500cc447292995c9fd73fb4c a9796dd17e6dc5d2d3d87fec2131057b a97bfcb7debcf883acb3557079856942 +a97c54cd88166988a8f58c325ba8eb44 a97fa0dc0d75e4ced6efd919c07ab20d +a97fa7f534a97b30a3b406a711fe9c4e a980a3cf3d5c2815c799b487c336fa03 a980beedda8b3937e1fef38c9c66c531 a981108fb102cf438f9ecc96ba4c1a8b @@ -38594,6 +43110,7 @@ a98606af4bc7987021bc38d6df6d6bf7 a9869d8d719995a6b78f59ef881770bd a9871f8539751717b9564729882c7374 a9873fbc8581d66af8e8b15d07da1e57 +a98994be95ce48ae7e4a39884b5ac0a5 a98a7fe4f15d47c25db9cf857e266f86 a98ba8459a1ac27aeb7107c6c083c91f a98bd690ba41b5ef011afc354010137f @@ -38604,6 +43121,7 @@ a992b98266ae970060bde8fe03fc337e a99ab318f0efeb20c129c4f9b6368277 a99b21d6a3b75c48df947071a96a2966 a99c6cf0e9b1338e3565333658f5f780 +a99e0e3966733bdb93d1e1f2df4d4486 a99f517d1cd2a623f096c0b34c1a5a13 a99f6fb54acc674007f35f87040b852d a9a04fa1b877de43d03175e2347f3919 @@ -38613,6 +43131,9 @@ a9a1f7e196dde3c19751a6f5e58e22ee a9a323a339bffca65c8fb68e8084fd5c a9a44fe1f7b040ed2f7e1ae6bd3a2f15 a9a5edcb83c4498a93d8f9cb6fdcd5ea +a9a7d7993e12f179c33c009dfe486a48 +a9aaad5cce4caab442147e6df93c7c6f +a9acebbd263f3dc219a90940e2a22aa4 a9ad2b4357b50f807aa85f970aa4c84a a9ad5a84cd4555f1582570742883dc9e a9af1cb992cee0bf785e0117ffa5ffeb @@ -38640,6 +43161,7 @@ a9c506cf4bf7c97fe61d7af25cf34c88 a9cb2d0559d60a8118805e74034ea428 a9cbad304eaac856439ea013c0849206 a9cc6c747f977a126ec1dd9f4fbe389f +a9cd87b9473a8322234d658dd647795c a9ced68ed00774ab8fb76fca3c8bb21a a9d4e04db2bc2e1e3fb2257d53f25343 a9d57efd56642588b2681f19791391a0 @@ -38665,12 +43187,14 @@ a9e30b27994298003028140c318dbf50 a9e3d000c5820ee245692af81a0669e0 a9e412bb1870f3d57ed3f15ad6eac7dd a9e6bfc3905b24446b27a607db6a4bc4 +a9e81d16e228bd94db6d2df98712e331 a9e9439d16ec1408318610c28c80241c a9e9a7c0335d11b48760a0149bdb0a5b a9e9c460b5b891ac75551a76e6d454c9 a9ec20e25fe5421de79bc80c974ef427 a9ec6656315c8709427a24d2d323379a a9ed0a1040f7f6607a4f84d973141491 +a9efb2f48732b892ae7b6fc54b41f794 a9f1e42db6a56dc3a6d7cdae3b961fbf a9f2834c58e6901c05c15c7c529755f2 a9f375ee74d459af12c9e8e72f69e54e @@ -38685,8 +43209,10 @@ a9f90111525b29bf5b8f9e1f93f6ab31 a9f971ee54c6efa85682282f24a2d25f a9f9d19a9decd58123659aac38568793 a9fa8f65d9cdb8cb80086f8a96e5126a +a9fb4ebb325a334d061273768f014f86 a9fc20eca9bfbed94b966f4d5b443760 a9fc2d8f200877e5dd46b1fc64a5c97a +a9fd5f6af8ba70a522462c94a09f3eb0 a9fdd91cf4b7df28917160fd53b85099 a9fe223319a97d9b04baeb1db2554deb a9fed8e7520f16f28baa0d55b72b649e @@ -38704,6 +43230,7 @@ aa13891d30cbdd13032e0dd9f4e495ea aa147239de586bca095a9f74a5c9af7e aa16444c37aba77d3f90b3d854a7dd37 aa180ed9f313885d16479388050dd171 +aa189f01cab15da0897c62e4d8c03adc aa1a37dd2258643005515da16cf9ad8b aa1adfd5010c0b9044498a9d7112dc82 aa1c8ecbca40787d73f126261560be37 @@ -38719,21 +43246,25 @@ aa263c0ca2067e09d9c49b9e27a70f96 aa2644c4ce977cfd002329d6796cf5f4 aa2973f8234a93c95ee1f902569c27f1 aa2c7513e80737135ad4cb834c411f64 +aa2d47e17fa8f4fc513c5142904a6c77 aa2d895ce7fde04364a79a4af041b488 aa2f4104a0a9228016c4c16bcf8ce950 aa2f4e0e91d73db77274b3b5ac6cdcb5 aa324de8ac8eb7c3c8bf6e62bf156e2a aa32d862bedfa43deb8a6f65f1955457 +aa33528fb4db65cb6ed9be0f1eb1193e aa342fc6a49c8dd6a2bd8b0e03e27594 aa344e681e46d8a6f8cc070bc386ea83 aa357de3bcd5b163d39cd33fb4584b1a aa35e40ab502bdfb28ce07d4eaceb515 aa369f1823db1bc950463fbbe78aa4d6 +aa37417bc4f2838f96bb3d0de0d611fb aa38a59cfb309eb04c5e19b383d8eafa aa38b0c91abcb07416eb20e4c280766b aa3aa926c107191b1ad91eb488c2ed20 aa3ec2ec91db3af5829e3968a81e9d01 aa3f851f2ebe97c73274c2cca2f0c1dc +aa405ed2d9ccb0803c2b6240943b524c aa40cb206b6259d2e601200f81f3f79d aa40f4728e5198893886391cfb769c67 aa419b288d43e70bc7ad8a68e3f30b1a @@ -38741,7 +43272,9 @@ aa42a33b3d4a98540b89387486ca3314 aa43f3472a459dc2e04329adfc7f57fe aa45a4e4a3293d4fcbb17f444fe61500 aa46daa97d1df13201ef13a2bb3eac9c +aa4b3e804d8701a031dbedc6731f3720 aa4b40a6795c42fed6b3e2f4d7fcdd9e +aa4cedea8339a62f8f999075c0acffda aa4d1521b76ceaf6b62c505ebc2aa276 aa4eb21df5b479c2414d8e36c3e73c5a aa50e72ac0b357b3da25bbe48948e564 @@ -38757,6 +43290,7 @@ aa5a9646ec8c4fdd60982e2e6d5aec40 aa5abd33a2c35ea275715775044bbd94 aa5ae2ccde0854b3953f640a2bad0c20 aa5b61ef389a3e117da5091fe05317a3 +aa5b86500183fa182f97927d639803a7 aa5d77c54b85b330ed95db2c41afd394 aa5e5bab42e8d10d88efe8ed58b9a487 aa5f42136161820cc6a1e653031b415b @@ -38786,6 +43320,7 @@ aa78fef8a47c2e213c86f18111249462 aa79a30769a53b9b3c11ddb4546f787c aa7c4d4872aaff986876046fac4039fe aa7c640fdcecb35c9e909b846720a3c9 +aa7d22da176a210c607f7057b600dd8d aa7db2ccbadb2d7573475c60df991363 aa7e2a515c937bf9a877ca76d41aed1b aa81a46a1f1abe614a6d40f7730d72d9 @@ -38793,11 +43328,13 @@ aa81f3ce07b1174e500a22d3354e7d35 aa84de4e9746fb29fd9d0cf3bf7a0dcb aa856116bfb065d4aef6426b70414c35 aa86276448557a68d6d5a67e2ba0045b +aa87000cb885120f25bf09038233c3b6 aa878c6a95e5e2f534e053768abc270a aa87ed68989f095482cec3c9d687a1a7 aa88f995cdd6086b78e60c28d7599b78 aa8953b9c0cfc171501c0887d557f53b aa8b4408f52c076792b7eb6e43f25ebe +aa8ccad64b3ec33637ecb344d40555a9 aa8dbee4a607a46c169c4b65483f5095 aa8f5298abd62760dc6e1f00789b0012 aa919bfda305ea4f8d7e6993e2c147da @@ -38812,6 +43349,8 @@ aa99d13d49ac869e49f3eb55eab97384 aa99f3a89bcf08b710bc90d1c4aded3b aa9bd6b2993118ca922adbf92220106a aa9da09f08aa475c6d4e826d4e67d949 +aa9eaa35d86a96ce07c5f7a0a12af4a8 +aa9f51f158a488f07c8010f64c7c1b80 aa9f750b091b415f1d72baaf20b42d8f aaa342c030fd6af5c43e768b54fff29a aaa48e9a63a7029d48b0db26dcfc24ac @@ -38830,11 +43369,13 @@ aaadb1a660ec7ed66241b79af909969e aaae39dcc8c14702ad3ac1252cd5af9b aaaeb9a04d4f7278d27943861f223fba aaaec8af41400b5425aa88909a99ad34 +aab00312f1eca920d488511d75fed0c7 aab2120f486b8ad58bd72e73213df058 aab3c095aeb1a3b4474a4adcb793a522 aab3cde778f752605e69b34f238e0c1f aab44764c79a1ef274052d5ab794c0ed aab5a1a520ba7f28870638bd772e2ac6 +aab5fc4c64049423ad1111cc5ecf77cc aab6cc77cba38b2ea2aa5042ae8c445b aab853cde57e032984af70909c2bbe36 aabb972c314f2bd7a539a579a615a7ce @@ -38844,15 +43385,21 @@ aabcfa1c431fc0ae765fac01d9ae706e aabdcb0c6b01c0f8193fb5de67e30fe3 aabdcd686e8da40ce49d68344f6d5a60 aabed767c8ba8b8d09a1c8a4e8738fc5 +aabfc145cad5389d2a0adb5bb501c009 aac023ecb0611b208cc27472cce4c1eb +aac092c15919bfc186e524c2721f4955 aac2305652bdd48a89f72b5a19514874 aac301604ebc388f17550eddd56a298b aac3a0b0c3f9b427d55e80f8df428368 aac3af1599bd96446c809d06b145d7f4 aac4e926a05f2746e20aaf34791f1710 +aac51cae611dc985789900951a7a437e +aac5221cf75494e693bd25d8da0ac781 aac7417953ef285ca17cb25e4346bc69 +aac7e09f5c1463633885dea92468cf64 aac96958138ff9e4a9da07565986c7e3 aac98b01c8bd0c00b7709ad5388423c3 +aacb1ea7b12b6184af0ec23d37be433d aacb63dd80bc889a4b66718bad1e5dcc aacc0cede9edb074f6b899af72bf1e83 aace982196217136be61368a3c12379f @@ -38867,6 +43414,7 @@ aad45767427d95af015dd3a1c99ad4cb aad4939a5a4af26ac88ff8e394e86069 aad7a29325659e62b1e040d858a50ad9 aad8908cd15c7084935489e2904aa8a7 +aad9ccb12a7f6f1b6cd64167c220b76c aadb0566bd02aa321fa530f74bfb77d2 aadc8a42f28346015200d9c2681aacd5 aadf0e20aaf99c522f547cea603d8203 @@ -38874,6 +43422,8 @@ aae08c272c8db732acd0979aa47d5864 aae109a785b410a4a4a87346f756689e aae1339a205bdeb1378aa607d7222da3 aae21c652e844583b797f659ed29cb66 +aae2f3185d477896ab2c3e1e946e94a7 +aae31f26d71ac6a6ddda4713cbe6ae91 aae337ad54410abe22085fd79dd42421 aae3e0c0d866b2de371313c6cf6bd1f3 aae40bff1f71abed179f65e31987da0a @@ -38909,15 +43459,19 @@ ab0cf798bcd25076ba80589dab6fbb94 ab11fef8b20d3c1cdb8e265505614a16 ab126f27cbf101fc3d6b29a00491b687 ab13bf2ae39a5224001823fefc326e33 +ab13ffa69188c2f8410ae36274b7b873 ab146112363d155d72e31698a0d55a9f ab1822ca2c501a3b7016bb01fc34b592 ab19d0b708953035a95954fd4f28204d +ab19fc1ae9394d10aaa5974996081270 ab1b52d263f54da00c37ed6278acf0e7 +ab1d11e86e27dbd05f9c26011af60bd4 ab1dcaa6907d46cc9ddbd359f6948b94 ab1fd36040aaf26f332bc4b0449b7b33 ab207e8555d07bdb112e36542bc43d08 ab22a662ae82fe8ac369dbc1e80106a5 ab23f37a476d5ece25036f9039532fde +ab2408d5fd66584b8d00c622eccce294 ab24b1b9397699dfea0ace179be3cbd4 ab25fe34683e1120a564bb204b3f0baf ab275ab49cc962bbdf78f2975c31d092 @@ -38930,6 +43484,7 @@ ab2d8538b7317a357caa451049590266 ab2eb5943b07e7f168719aac9f2064e2 ab3023582c42a868a77a586583ae2e69 ab31f1c5412cec32e24e2ad83fc9120e +ab34d05f886b4a273c0abfb6e67c881d ab3580351a825e266a0d833e77e4a9a3 ab359fc09c68e94acb68661cd9a5fb80 ab39f6032fc72c4d3b6808fd6656de74 @@ -38948,6 +43503,7 @@ ab43b5c1dcb0b87d62f70cffb53b49b2 ab453983a49fd8f19f44ff271c75a927 ab4638b25ca94f4d22f516c5a6942660 ab466924b64626a446e0c0ce2522dbb4 +ab48731d5236a369aa51fe0225787be0 ab487b762f5c6672465271a96884ec50 ab49359189b8100fb01be81d65790343 ab497329c6d10dfdd9ed34ac1814888a @@ -38955,11 +43511,15 @@ ab4a1437954aea29ac6df34c2044b6dc ab4a72b3e62fc18f91b5f7e510f2fd24 ab4b8218027f959ee0becf44cb80c2c2 ab4b90145ef236eb341768795b6f0236 +ab4ba77d3590be51a006a96148b582ec +ab4bb59155ff16fbb5661206c05b5981 +ab4ced6eb259f0ff93a5dfbf7dc016e3 ab4dbac9f96ae9f14aa35b792e438771 ab4e511b3aaa31e853a17713aa8c1b62 ab4f06f5435ea0b25e18a0d693fff731 ab4f519e1ec9740333884dda90730c75 ab4f7418b6a11287a87f9e0307cea575 +ab52adf7a406a9af6e44926f8e04150a ab530390b02bdfe54a3821bfecc7086b ab547502c6654a7341626f370c8c1bb2 ab5759d607181185baf91b5d5d0f76cf @@ -38974,10 +43534,12 @@ ab5f079048d33fa150d567a493b4a648 ab5f0a63b94cda6c90a0615c6c24782d ab60f63c792d6507ea43bdc0adea3101 ab62f8f380ecd91b11c588d7f58a1e5f +ab635d67ec4337f69a01b9858833b51f ab6602f682faafb05ad3793808afb478 ab67c379eca16650b69e51b0264a6955 ab67c7aa27f10365d4bc9aa132ae6e81 ab6aa5c71870daa409f2c72777b9e11e +ab6b55e69af3888b40d51b2ce224b955 ab6cd0352e6b4c4e1a79f86bcbe956a8 ab6cfaa7db2639c5d44a3ce9248a74f6 ab6e0578dc15aac24a70cdb94c159a6b @@ -38994,12 +43556,14 @@ ab781bdb74df08a595424c2991f10f43 ab796c8922b118fc1b4805c911e4dfa2 ab7ce75e17897292d8f1b63f56ed2160 ab7d686134d63bf3d7ad3e4189af80c2 +ab7da785534373e27caa5e61e8a689d6 ab7efb741ebe11f62e69eef259812fa4 ab8019ebdf6d9b86a48a22e0c0694062 ab8083110ae110de368adc5cd118f27e ab81188554f057cd054aeb379e4e6e86 ab8166d0a47c797c8b11f1b86b7caee3 ab819cb41953d8d1d2f971617f0f41e4 +ab81b4cd05b619cfff06f086faf3b18f ab842a5d3d3e59a0d4ae5ced387d1b28 ab86614227ef57697c17047b85cf01a9 ab87b7227329cf76ad58ce85650df016 @@ -39017,6 +43581,7 @@ ab8ffdb54e0492226702eddee8354e9b ab90fd9601b769e9466d174a5553cbaa ab912910ff3465fd5fd042095715ac9b ab92086952e96de8cf0e0e73362d5f65 +ab920c2d87ac4eca34ef5e0f0646eb60 ab941cfc4a558417c1fdceca53a00f55 ab953aed3fc16cf00619a5b6c7ec5065 ab9715859c554cdb0d4121239922e224 @@ -39031,18 +43596,22 @@ ab9e3b3a74f115efe8c9eb7f5a0226eb aba001bb2e74fa171e54a244c8f4237d aba0a92adcf8c5c52f73a89e02e1f7ca aba30058484749643439fb4f6a06b3f4 +aba347a1ec5237090c9e7b14fb37524b aba40c1226c50fcae9d5faf0b6a3c9bb aba785e363309bb720653834b30c5b69 aba8945050c4a94133b8f1f4f749e97f aba8a6d3d4697dc00afc77f730dcd29d aba913bf8fecb68046821b21d32a753f aba947b0945cf24cff8fa86a03dfe139 +abaa5a127640864d9be9f87ef6db1752 abaa709b6fce84b4d35eb41e9a0bae65 abab2daa60952870f3f2829745f60dff abab31c3f484c8cc553ca98449f96961 +abab3587b182b0046f0d7b609c0e3a22 abadb7cd92bbf26e67f672f168d5d486 abae8f0a5078c1a7f91a1a6dc2dc638b abaf519b0c3c95f5f75fed1f9795b8b1 +abb0921e7eb2e979e4c622123e8ff5b7 abb0ffd13a6155c03bdd0b852640f81a abb142234163d8b88cec2476bc4751cf abb2c76617a43c0872d45ec706ab199e @@ -39055,6 +43624,7 @@ abb87faa9f57c2296b528eb7efa09697 abb8e5b549fafb761720412b838b6e2b abb928191cda054fb7ac7cd5c2b2304e abbb4352833fc202477949001b392360 +abbbfbf48ac31681c13692d2530ddd19 abbd479b8eb1c22278107d57f738d8fe abbdb194ae74dc24bd2927f6503a196b abbddb3e715f767107803b9d9be1d5f6 @@ -39063,6 +43633,7 @@ abbe84788701079227278da9e6211f13 abc2b43737cdceab87ae36d7c700620b abc3746d8f56775793acef08f6a0f962 abc50aa3b0555db74b7c59fd52843ad3 +abc5f42d0ae742b0c2ed2067635ee805 abc633b1fae5de5e73a043a20d5b0889 abc6a40d7a041a8d8af371f13124db6c abc702dcf3673fb787b5dc721719a718 @@ -39071,6 +43642,7 @@ abc89ea022649ff305fa8808316a6f2d abca7c40c2798ad67bf1b1e2d236758f abca8bcfa8de4d13c74a46a2e8973d3c abcbc22893182c9aa7edc407be69e800 +abcc1b83dc2b9ea38e3a42d6809795b4 abcc73fa62c3cee8cd6d19f4a1058440 abcc7afeb67a0716942b7f24da60142c abcc9968955473e2e73f9a3ef9a89d1f @@ -39106,6 +43678,7 @@ abe78538c5936ab6feeec8050fe80dc2 abe80c9c27308dcdb1944d035a85da51 abe840e9d6ec8cbdce518530bacd6f18 abea56a2952a72f2f3e273a1421888b1 +abeaa1642976661a4d8b406d89945f7b abeaf1607620e64a507a94ef866a3c5a abebb62591ceb269ed826357257c32b7 abec859bf830284bf254c619098e851d @@ -39134,6 +43707,7 @@ ac04012918c454a69b09c37d791dbd1b ac046e469f522769c052770e8e406c5c ac04a014fd416aa5a6681b54b9163571 ac04e6c204b06706cb4dae5aedaea430 +ac08956bb9ac9046e5e5bd189e666539 ac0c0dcd44102e4b01f893dfa20e97a3 ac0d219f1c7cb31e4f3ce800e88690de ac103f058fbf23d6c1a1f363745d31c8 @@ -39147,9 +43721,11 @@ ac145be49a7e2b5be53b552168c6bbb7 ac19290319dee9314c85a94e186c63fd ac196f1b80eb226bb649e0ddb540c3a4 ac1ad7b78d91158bd576079f39ae22a5 +ac1c7136a8108fc62ebe054d05592c15 ac1e077c3e4624f46d0faebb67ad7a65 ac1f1756f2bc49281603e34193d116cf ac233d953c1ddc8c8a7d971adedfd74c +ac23673b81e8eae6ae3fd3b59dd15a6b ac25a190bbde4df80f35972fd5131798 ac25d27d54b470d9fe812b5a76ab2e84 ac25d8288f2f00ac28b6694540a092f1 @@ -39164,8 +43740,10 @@ ac30d1c6bd45cfedeba2dbaad1a5fad6 ac34fc54ca6610442f71f334ca32cc4f ac35812a45b817afbe552c3eb4103abe ac3773cf8d5cbdebf6cdff331440b4b9 +ac398eeb555992832684664d208811aa ac3aa89b2785a4a8adb0f90bbe479291 ac4046a312518289a6cbfbcc9bb005b1 +ac4058717d7831fc428ec0a207ca8b3e ac406dd73ee55937847b3b9a3aa25e1a ac41bd6af3cb9c85d8719b4499fd12ff ac42f67d218bb47d22db32a79f0ca25d @@ -39195,6 +43773,7 @@ ac6076904e1b62ea0605d9d615d981b0 ac608e35d0323104d2b93a2a5398f152 ac60fd6dfcf0808d8a625dd4dd91f9d4 ac612b90ee172edb9d877f322af41230 +ac622ceda219aabc8aa18d5a229eeef7 ac63070c14f9feda5b38ab0b7b63c8ed ac6367ad90687659113bba6748bc54f5 ac63e2e4fa0539d8b91080575847fd36 @@ -39202,6 +43781,7 @@ ac645970af153cb35b54890404cfe169 ac64f17e5843ca400c4314e3d3903950 ac653bff39f4394820b00dbe385b91fb ac655934e88ae84c41f994023c44a92b +ac65db1337ce4c857f02a34168d9e424 ac66054d11c1753eebbcf34716c27a2c ac68041cb82908286eb17a5b0ebf1614 ac68447150b34f70117c16ab0f12d29d @@ -39213,6 +43793,7 @@ ac6bfc2b1f35723980495cb51e6fd05e ac6f6bb847524859dc1d592b80e8e40f ac717f2d64c53dafbd0df0ef0360eb5b ac7206149e4dfdeebef959d53da27187 +ac733b9eda01547496b9621a49940dbc ac7631d6d4b1685f1dcf317fcb89d66e ac765dffbfe1681d0a5984f76a43a213 ac771fd042e4c9798b3bb59ab12e3dd2 @@ -39237,6 +43818,7 @@ ac8c11d89cb78acea9d3e79e660dab45 ac8cd92eb91cbbdffeeff5fbf982fe0d ac8eb3df595580580f25353eda07bcdc ac8f1cfa55e155bf2564b051f7a88c02 +ac9065319282d1ef705e6e38da213180 ac90dc43447df370f4831d3d8d5d3915 ac91b2ae9a20b5c3610c396a94355ec4 ac9324243e6b465d8d694b25f263d737 @@ -39253,6 +43835,7 @@ ac9f91831c99a9c6cc2b3a35f66a85eb ac9ff79b5994f5b7594fb39bbeed56ce aca1252aa52cdb29db67cc7e31056a34 aca17eeae333ebbc2823daf6c47bd6f0 +aca186ad3717dba7afb89df00fc319a8 aca1ac014e7d7fc61ed4679458e1ea7f aca1de9579dfd73ce031fed056cd2e0e aca3b381e583bbd6e5384cc3ad0b980f @@ -39260,12 +43843,15 @@ aca3c9b53983fc67b9ec412dd79de20f aca5fd46586ca09ad7ddbffda70e7071 aca626a311e659f5c5a1b8affb65a260 aca8e9bbf5af1e8ddfd379aaed19b56f +acaa46750eea72ef2719e7d4b34943f6 acaa80b1088bac61a21e9908dd970ebb acad05515ba97e152a05eee364f7f751 acad0fb65d48338634342567e95ec514 acad5009ffdafdc88cb2b10620696838 acb0570aedfb89b85529db2b2e195e66 +acb0fa296ab8e289fe99817469fffcd2 acb1e69defe8ced0c37b3403310bbff6 +acb30a84848bbb028412ec599256eaef acb3dd445b5f996747edd8932121d0f8 acb52195c2d2c6ccf22522b907f1457b acb6d980aa022c4f96ff66e757b47bea @@ -39313,6 +43899,7 @@ ace19407f8860caa886d21086866a44a ace2258446a48c7e34a9fd48007cc166 ace231c6db2d8d3cb6a75097d803660b ace54221fffa2cb8c3cda6de994f20da +ace59755caf3a8dfc048921378a3f4cc ace60b3dea972144255fa5cd00061330 ace73b793bd6e1eb0b84ec88d9c76dd5 ace7caa7ec2e9d2f0fa19868af6a48a1 @@ -39331,6 +43918,7 @@ acf00a723f41e74185b1609d0d5a3b23 acf1e740f3d218d8230e928f2aaab8cf acf3dbfbcf81575e67aa4941579c7fad acf4fe2c658cb763d040cff18346f924 +acf5ea727fa6a11660d5e7d3662e159f acf60d32d84f3854ee363280df76aefe acf6a22fdcb22eb45b8ad8bbdca72ea5 acf7438e262cecc4a212edc2b63785c6 @@ -39349,9 +43937,11 @@ acfd7d8c5c57b41c3d6fd73f1f1107fc acfee8ef9a37a7e626ebaadcea0cb097 ad01f7dd22e54bfbee6bcf4de558b57b ad021bf050257ce3e735d404f1354946 +ad02d145f86d042a1e9a3cbb93e8c383 ad03709055e2c557f86f083dd6175d6f ad048bcb5ffcf89885d78324a0df4e71 ad053d3d508097f71015bd35191d11cb +ad05f133ffc915ad6143a4413f349497 ad080a692a622b71e64d3a1ad135c90f ad09cc1eec02ec5cbc1db48206ea6e1d ad0c6e9eeb25b982ca6cda00586d051d @@ -39360,6 +43950,7 @@ ad0cd68a36aaa9f13f2a008e87baf3f9 ad0ddb0e6e11f4348ff4eaca7e86be79 ad11cbbc91ec36ac61404971d9f0b3ac ad11ecf2e0256ef72a6042a4d76dfb7e +ad1289103b4c5e2023999e35b6d6d658 ad13c05c9f5d5f82cf07e79f8f7c1676 ad13faf6160fea96c2238ea00b823100 ad14bbd7d355b53bbabe73ea39a0881d @@ -39371,7 +43962,9 @@ ad1958a7311fb6b7cf575332339f08bc ad19e7a2ddc7e4a5bffd421b377090d3 ad1ad09fbbcf4901723a31bb714ec576 ad1b826c14e52d9c4c6e2b5991d07546 +ad1d5a6f83c2283b49dea6125c53d79e ad1d6532b626dc7e2419f2980791ba53 +ad2014b9433ce7fe1b35ccf0849df28c ad20b0aadd7469ec05c462b027ff6323 ad20d46c66beeb14901eb3b1ba47a9c7 ad21a80c07bfdff100a6dff26085f27c @@ -39379,6 +43972,7 @@ ad21c0600d1fd58e9cd764d313c25e7c ad220ce16a19c06cfc284abe3f35d04c ad223922daaee509ab4b533bee252155 ad25824bdf852c34104d66218b040877 +ad2716d35cf4760ee916c2f4078b7dc1 ad283a73622ea98494de620c16d24e51 ad29e082c66369976c8c2d7d836c0ac6 ad2a528243394dcffa7ed8ec4cf5815e @@ -39391,6 +43985,7 @@ ad316ae1cc286f5f282e3b847f2d3419 ad3175dd9b980e9b384c4c0d50b6a949 ad31b4b9fc4b42a6cd4ffe344371f601 ad348329ebb9a4fb63c48803a2a6869f +ad3655092ea7dbd117eccc7f4efbc424 ad368f9ba7b30e5d57339f85364ae72e ad3c3123f6aa18f7f326f38e1d604181 ad3c940839ea530ac8452bd3514ca6f4 @@ -39413,6 +44008,7 @@ ad4ea360aa25849a612d20526c892608 ad4fa03740340c10a2321d1e6fc20b06 ad4facb83019828863a8b9989e68ed6a ad4fb99a250e233fec9f5ae7634a43c0 +ad5043eb973d784626195a3d18146c15 ad52099399c6e6e10371ece7bba7838e ad52f9984ae752ebbdce5296be45f4ae ad5604233b57e2355e9747aac0a0a0b6 @@ -39427,14 +44023,18 @@ ad5d017379633df15994a6832eef23da ad5d8d7216b8a5f220d02e59a1f8d3c2 ad5f27fdce108ac7e002f4be2d67bc05 ad5f98e857392cdd6adb664954200aed +ad606c30a6fce5dae4f84038505f4670 ad60ab7e96ef726b5b4b8f56ea21c0a3 ad610cf84c8d83e7800d634209ff5eca ad61703959edc2de8b45b8f38086df0f ad61cf21e0d9f6b48d426c625fa75d88 ad6333e7214ed8c9f2a2f993c20216ca ad64512d66b20e6dec2b522b19a865f5 +ad64d853966223698d4876c5baa5e197 ad65fa45e548091ac6ed2a635e29eb49 ad678244b6e0d50e418356b2eb8b0e88 +ad678c34b8f8a9358b73518e556b5503 +ad6797767ccb9cb9ad631cbcb083b265 ad697ecb628335375d33d6514eb666e5 ad6c8ee1006fc80b74200bd9879ab88c ad6feef7a7bc2853ecc2057c2f6fb720 @@ -39442,10 +44042,12 @@ ad71cd75212a86ebae5f204ecaa3d22a ad749fb8af47517952a023c67ca22d1a ad75448b18fadb47bf6ff9b0f0300ed1 ad77092df2fc7fb21bbba6bcb0b85d88 +ad77169e62289f3bdcfa17f9ebe6bf08 ad782d3a43068728d1cd4a68a5583d17 ad7849e611915dc9c52152f687c1d3ad ad794692bf7695dd01f79f375fb29fd8 ad7bddb59c30d36adda54b0503e5516d +ad7c0c5adbb8a9a4efebb3e29c9ed301 ad7c8b08e90b0bb156c63d11d36cf61e ad7d94adba8f1932fcbec926dfc79dc4 ad7dd855065c8bb1c3a98cbf2e1fd4ae @@ -39458,6 +44060,7 @@ ad816389533699098ea36662483cd523 ad8252360f79ccc527a83602a91dd317 ad82f82f770b441ca546e11b402d3b22 ad8398647add72e8d9dcb15514c3a549 +ad849c1357256667490d32eaa38c42df ad84f6298938d684a727887b727ea564 ad8556798acc964026c7497b384984e4 ad87c1648f62143e685bd1d42bf36706 @@ -39498,8 +44101,10 @@ ada6a66ddec509fd3707d7fb5ff85fb7 ada6c3b2ca9f237e44561f7832b7f498 adab23b34d43e86d7029804168720938 adac8b89defa83c8ffb1c0cab96cdb6c +adacd6a814307f39c541d255bc0fe2d2 adaec35443e1bebb6656a19906d1de14 adaf07f869fa7906e921e560b380af69 +adaf2563a16c161e68903eaf441d6cde adb0811fc6cba841637d7fbcc8522984 adb10258e94823bbabbc0000058ce236 adb19a03e33381c596a46ed1eb573972 @@ -39510,10 +44115,13 @@ adb59586c40a3b9f4bf4df2e544d15c2 adb6370ddf7a93a90a75a6d59dd9ccc7 adb8ba0f3e8ddb13bb6387534a2d73ca adb92c35569a116b1aa1ebdaa50305d3 +adb9df19a49a410c19cb06aef27e8d4d adbbdfad0ac4bbe96f2b1ffba1c468f2 adbc6395b2e35d3aad97d1788292b08a adbd3fa587191e293206fe816549ed31 adbd42b12d1809e7a6530041ff6ebf3b +adbd7ba6ab9aa7e462799599a7a90101 +adbee3b3ae7d78d6767c4c45711f9c94 adbefa5a0455aba391fe8b6e41d10075 adc06a24ec0eeceb296fe9eb91421971 adc1974be058cfdc05e71baf2015b211 @@ -39525,6 +44133,7 @@ adc4faa690815f5bb94d10994b93aa78 adc535847a51b67d005bf20fe7b61858 adc5640b393ab96dc096f4e3b63c22db adc639271b164694a62408f965420367 +adc69039a007fdeba2f50094ee405759 adc734f88e6c66fcc336fe5703c1776d adc7efa7a9da7d984887e74ec76b506b adc8abac0b07e0f880f093b6ebf7b1d2 @@ -39534,9 +44143,11 @@ adcbc5246ab68a58ad7fe679c8c298f3 adcc47bc0fd50b2ca64b476e2586e658 add0b76340904ca970959f1f621971a9 add1dfaa6baff517756455d6fd4c9725 +add1eccef12a6fa355c7e3cc2cdb699e add2fa8e3624807f5bbdcc19fd36bcdf add3286015badc972e495be212e8d148 add334ebb888ec68c58eaae56e6ef49e +add4408d7a12cb2ef8788e35902b6c77 add49ac7c2bf5cf2062719ca1c5650b2 add4a85bbf1fa492a7aab49cd39ddb3d add54d8a75cd7ad828927843caa3bd69 @@ -39549,6 +44160,7 @@ addceb8d02a96a1ebc5aed1f168cbf5a addf18748b98d177c55538733d691453 ade14a86707a2576c5e2cba801bf8ab2 ade183d9e1f12adff682249023898054 +ade1e7b1fb7079b9f272673c6756eb48 ade219b866afd6617fd0bfce019c25b1 ade339296b2378ae07cfbbd8c4ffa26c ade4d81dc21ee53a5943e8fbefd28272 @@ -39556,6 +44168,7 @@ ade4efe4122631da2ee20778cbf8207c ade63187e6b3f20dfa42f2feae24c6f4 ade664148ce481938bf38b23b588f8f6 ade822c462822575f4bc49479571f5d8 +ade862b9efd9786da6957c76de1d7e7a ade8643c6d2a18d71141dad6a0e4dc66 ade960391db6bdad4752e9845a72ea28 ade9c82c6a5c7d209f1c86fbe8c1b6ce @@ -39566,6 +44179,7 @@ aded2156b5767f1bc12664fbd4f37a6b adedc7c241069557e3b6629f268fc244 adee254ab06cfd81a7b98a9bb468c7b7 adefb22fa12271199fc33bfa0fae693c +adf0083bd38e766f1012f38ff4e2cead adf178add825348006f5bc814b48527c adf32e9561f53e14c9157f827c7ff1e6 adf361d64ab1f5083fdebceeb2121ff3 @@ -39582,32 +44196,41 @@ ae023a3535192a8b2826918786cb8140 ae0278fb2fadd69532bc5a35064a39fd ae02b08686deab4907156c787e6130a0 ae02f25bb32861d87a6917a7b38ecf6e +ae03d404736c0a21400831f52939a481 ae04ccd6ef643f10b17146bf2de5217a ae06162e9d6903cc4189de5d7cef59fc ae09cb5a38fb77a5b524b48b84fdfbbc ae0b46c78b3fab232fe8e1bdb9bae1cf +ae0bfabbc61e24941bfb54f2e4dab5f4 ae0c84296748f1be1b184ebafdcac6a8 ae0e175e8a40e9af970e71b980abf474 ae0fb809153d29fe5cba4493cbbbdc76 ae0fb8ad3ea7745342cfc76e49951cfc +ae10fcea3ff4509cc8bee5bf398ee10f ae11190f2856340cd99ddc636ebe2983 +ae11e702d94fb2fb8134c89da0a07bd0 ae131cd6ecc3cec04760aeacb769e991 ae13a19016313ad9fd07eaa95fdb0ee1 ae13cd87d94c5dbb26617e8ea32a00ed ae14d4909d2e423dd301b5a0c5b04803 ae1524f2024ede5b27448a03bd1e4bf4 ae155d7cedbf68df21a26d50d06dfb88 +ae17226c595d99daee7521197f870173 ae192bdf5fcb12deca3a87a7fd2de7cb ae19ad4b9f418d4fde1a8f97ebb51e1c ae1a873f4052075429cb4c2f392cae3f ae1aec0c1ab9d770c757b172d06b2375 ae1bb2ed630d0a4ecea9999d3af08afd ae1bd75ace7d7a7a6bdec14ac7b534fb +ae1ce8d4f5132fcdca5758fbb47ffb41 +ae1e67f9e1d8a5151cfc9d5fbabca6c1 ae1e94859aea651395cfa52d1b1b269c ae1f4acfa374925f30a986ddec06559e +ae209cd046d7c33e9a2d0de38cc8fef9 ae21364ad937db64853f70be9384cf29 ae2166cef4787d2e7700103ff0638f8e ae21bddf711101c6b71a22e9849158ec +ae24de8f0fe232f3ca54f1b904d8fcec ae24df404469c8091734d00fafc813aa ae26d3ab43153d3d19d7623992eece98 ae272c5d7309ad85d06d622fbd304930 @@ -39631,6 +44254,7 @@ ae34bfa8c80b39adde7dfaf949958362 ae353569960675888ba7cadde53bf921 ae3693f203c0be9a08bbeffc36de9281 ae37562807db588728c5875d9af48294 +ae37dd89a03a5b163a03c1eba0de54e6 ae38670267fb47052afcbe3061a67132 ae3879e0841d5358cbdb34a293c2f506 ae389e648696122f783805890297c2ad @@ -39651,11 +44275,14 @@ ae4836d71786a0be2a97d6eca5e09bb1 ae4867312f826c33e1fed2a8154d0f27 ae48d254072c802c8499ab55077b2509 ae49b3f58a0309fa6601f02a6a39cd51 +ae4b64c3a470d2873b45d09047192361 ae4b8a07015424861e38c64be89fdd7b ae4c10ee877e977ff669d6e7ae43e984 ae4e4ca52249f236d4c5197a798d6427 +ae4ecb1f4445cf4bba57f53baf30ff1c ae4fbb531c95dcdb3ea7aa70c0be6a59 ae5052265c022c2581386f107883078a +ae537403d8235ba600ecc3b711a2352b ae53ee7a67650c8e1812afa473fef168 ae56dc13019dfeee168801c8aef772b7 ae5773d5a29c1e534220b14df7f7d1cb @@ -39682,14 +44309,18 @@ ae6f14aae96cc6817981032ab634663a ae71371b59ab1917b2afbd73d06818eb ae71dd72450506109babec4984448c09 ae725e1d31f41324a912433bd041197e +ae72dd91d282d4b77e801116d0ca96bd ae732674959eb9d03fb9a1446868b1b6 ae74c4d454025f2b9fb3d2a520927867 ae760f8296881bfb445c5eac148453ec +ae7884d09ee501245186bec5f9f4ce5f ae7949709e3bd67039231d80a9ef17eb +ae795a26616e8ddae7080a0aa71f08b5 ae7a7c5719d1b9afecfd2ae584dafb6c ae7ad526efdf0d81c40f1565119dfe60 ae7ae7e1d305ee5879eb19dc704281ca ae7b59d95a263c81a60677cd305fe30a +ae81daf43a0e01c59ef5e1000fc6b04f ae8218025b7aaef0e8aebac4e997ab7a ae8432be01aabf5271aacfc4e108f0d4 ae84cb309f66305a3c5f159b5f28b5af @@ -39697,17 +44328,20 @@ ae84dd57a0f0ba7ea460be47c9b9c034 ae85dabac4c5ae07adc6d4d8bed4d4a8 ae88acd7cdd5e5c441e14e916e345c89 ae88b142e3e3cc0a21acc28099aa47fd +ae88d892730b0154dcdccd3d1c4f6dc5 ae890c77dcd028caf8586ada7e7f348f ae8a2724fdf6f20f9080b2d85b40c253 ae8f68ff9f59ccfc5fab1e7d3ac8dbc4 ae8fbfe70e0b170711dcdeb4f1c9bee9 ae922a8c860e7bf2910b2f98b4a9b276 +ae92f9c2144067c45d4b4ab84c3cb894 ae95878a8a2703f78332ca217400a35c ae95f812ecf0a91f22456aff6fe4a19c ae97debbb516edfcedfa4fa046b5fad2 ae99d123b7f95f4d40613aa4d7f3ef58 ae9b24939874ede0ce138534c8569b44 ae9ba541d00f5c3b7dfc66f9a8f0f23c +ae9d7602d16a93c3e37ce9bd88ab8657 ae9e3da6bba694fb8737d48f74542a80 ae9fb1e284b0514df9b8e22e1ed9aaf5 ae9ffd410790661b33cb161ef79c3d87 @@ -39720,6 +44354,7 @@ aea54f95b41875a7181e99cdbbf2f638 aea5ffa9ddd764609abfab8294faa429 aea6efdd4d0fb75d74295e9c27759834 aea7dd28abfeb2b7992c60fe795d2225 +aea86bb1e0cbe5c481a4359f435092d7 aea89fcb86ee0374da2f0f8f78c3effb aea8c24e33d76b7c1b8c58fd0c31a454 aeab811d08a5c9144d50bcdf487a5636 @@ -39730,6 +44365,7 @@ aeadab88a5cca99f1ba7aa3cf9d29d60 aeafc902ecc74da18552d62fd6b4ea9e aeafe412fa8ca0082bce20ff64cd6e37 aeb0da2d6263773e3cdbd8d0bd65058c +aeb11c932d754d0cf6e8db42a5d10d0a aeb156613e8a11eb58a80f0f21e60ce9 aeb1c952199e85aa1085e72ff78e33b1 aeb1d6cff99cfe0999b6ed458d91091e @@ -39751,6 +44387,7 @@ aebd174bde2d7190f3c931324c41a802 aebd72deb8765aee82db647b205ef86f aebdd410a225ce92066b618d89f73dad aebe2648181f6de36855b0ef91d09c72 +aebe8b03a97e3c6bfabc765f6532d457 aebf3e0b1b8d5711e482e8d60310aad6 aebfddb65449d2b8197e868386154c83 aec1207b96bb604f422e25be1c260b32 @@ -39770,9 +44407,11 @@ aed0952f9655247f3b71a750a8f5e748 aed0a9e04484e61dccf499fd400c9390 aed0f5ed42272f679e2964a3455e5606 aed22d1cc9c7faa735e5225df5ad361d +aed230ddf22450a63b8911ac81dd2072 aed40b6675ef6751501ec826d4f86ebc aed452db601ad487b54ee1431ec81d64 aed499b6cfe24053972e410e72bb167a +aed5b62a5a67b14bc896c35fc90bf2fb aed7511febd66ebd0c2b8c195f79a364 aed7e67246f4afe68d37c9ae66e08b38 aed9770f0387b6ca9a829477c9908461 @@ -39793,6 +44432,7 @@ aee746816534167083de1cfb3b067fd4 aee783d964e8ec665525c46e24744aa4 aeec0e035f96091a5907c9da6ea4a81e aeec4ca9663ffb64f6584eb5b5ff5d08 +aeecd22f2cb8b726c26c13f26a5c93c8 aeedb242d9e6bc72647f0aa73ef328d3 aeeed96207535fd783eef544abf3970a aeef3c1eada9d73a2c3cc414dd96f614 @@ -39808,10 +44448,12 @@ aefce60666af56b305caf43be4f0eb58 aefd6ffa0966b94096f92f81568e9fa9 aeff5675b44a005119a165e0711d0b2a aeffd3180e61f4089392517f6cbf8b81 +af0140e6cb40f995bc9c7778a05a4dff af053c0171955f2cfa91aba294b0e309 af0586016ed4111c728e55be41123563 af0600bad7dc3f190ca6a64f90422455 af06103ee9ce8f64d9ceb6bf3edef0d8 +af08b58385824d209b85872072b33aac af0b2e380dcd647356345d4b43a7a90e af0b4ee4ccbfe51263eda294d112802f af0dfd62cd759715e9a7db665f6e9c52 @@ -39834,11 +44476,14 @@ af1bc6c08b9876410aadaba0f4f74605 af1ccf8c770f402eb88fe4e64ad28606 af1d7e023bf7c67455e63c37d941ef94 af1d9b2030c56ce93c94a4453dab61f4 +af1de80e74ef2001430b8a0ca535e2eb af1e1d2c516d59473b56193d9597c9c6 af1f26d06ddfdcf118a6162f768b0dd5 af205381068f841068c102455031b93c af206766a15f4bc261c83bc61dffa5eb af20a0bcf312ecafcb92d7d8a29600eb +af2595b1218510df349545a165e27269 +af26ad8e9dff430c1160aa7c663f6ffb af2851144f41eaa76970f000fd5c018e af28a9ce0c334117f23af86d07b33311 af28b1255046e259b3f4416ebda9cdc2 @@ -39854,6 +44499,7 @@ af375bd40a428956c470d73dcea1ded3 af3b6f3c6ee0966f5b2dbe57d2d9eaa6 af3bccc1c35b0d156da6ba6ead314ecf af3d6374039b5ce62b08285a9d63a9d3 +af3d6d0fce900cdf556797acf26303fa af3e45ae5efbeb209b8d167b14a0aaaf af3e93df44ae4b1a3fac1bd8fd6ae58d af3e9821e83926e72345b82c96a1924b @@ -39877,12 +44523,14 @@ af56971fb1e394b06d8e071d4ce2f93c af570b40cb0bcffabeb9f14375c49967 af578e2c37c78c0001639574bc191f19 af59039f7fd030221accf7065d289c8f +af5a35278108a297dbf02cb0999474a5 af5a49d34932d2c221fbc4ca6883cb56 af5c97c9ad40069de547879cc34d371f af5d934ba16b3198bbbb2eb0eafea2a6 af5f8ea812f6fade2069847b33ef2681 af5fd4a0b138a7cb3d722648fe9f76e2 af613462c449e884fa4227bf487b1107 +af6193d1bda3692a427357211000590a af63f16cdcd507abe954f7194f34b2a5 af656357dc7ca3f568e0c6331495128d af67340f0d5ffe18181d9a356ead95df @@ -39891,6 +44539,7 @@ af683e9bc3d22fcfb02bd187053d9cb8 af6937dc99f7680d089acd4662d42166 af6a1e18a2de837f64ff43b8cd026fa1 af6d5f77e44723c048f572f25c26bff9 +af6e906086a603950eca42a1cec641d5 af70b45a63934595714c5d0287768946 af7163adbcebe9cfa5ba72ab93c6f51e af718385f5d6cbb52022938fe4d2f62a @@ -39906,6 +44555,7 @@ af78c16d879dd602b8e8391369117743 af791f3bcabbe62573dd841e59b345fa af7c31d1529764e002a45f102fe5d284 af7c473454981a3b12b3a05149d5e5f0 +af7cc4f3b402012b6ab856df7d19e45f af7dee23040e91baf82ecdc37fa53915 af7fd4187e21d38124dd09e855bcbc17 af80d54d7480ed3282498d800c1259f9 @@ -39920,9 +44570,11 @@ af8a20fa2e5dbcbc9d34bb6299843100 af8ad2a3aca502400d97c2a817722aab af8b0e32d4533947e0b84e19a9636836 af8b952be71c4b996b0be144e1a9ebda +af8c9d6fa2c8f86c73d25a9f77ade4c5 af8d34f8092bf7e2814f29e7451699df af8e95b1b259cfba760c45921413f9d5 af8f9af08f94ac82a8fbee8e4864be7b +af9000d7ca2de31b112414405eba6ecc af904077f32ddd4b38313ddd22a5e71f af9052a91b0bbbd6a7ca7484f11377a9 af91105ced6018c87a6c2cf02595a5e8 @@ -39960,6 +44612,9 @@ afb731fc7719f91be6efc9db877b896b afb87468c6c063885211cec76bfe506f afb8a6e143b47e6113fff9acd55d10e7 afb9db4a6c7dd6c22fcb3ac4b869ee29 +afbb5a2591f2cae605518ece5310362b +afbb6e790b0af54ea5ee71bda925d875 +afbee33c94cfa7b6aa40e53d9e251431 afbfb800505efb905db2604979d8d8da afbfc663f7f7d801d2df7911a50aea24 afc2eede4485470309be7f80918cb30a @@ -39972,9 +44627,11 @@ afc5200bc6c6f8540659cd10501229fa afc59efd427a340f6db7406fadaa31a0 afc6533924aee63adb52d7a23869e26e afc6a99acc64bf94200bd85e72fcd7f1 +afc8eb43ba08c7510c3989993ba8d487 afcc9b763ddc89c48276bfde770b2e5c afccdd1649487197fefeafff49276bc5 afcdc47eaeb2a195d61de28c511d3fa7 +afcec2b1771028f99f9639d31a372776 afcf65c47bab2a7fd1d95b7ea545a3e3 afd0c3b118ffab2aed4d6075ff82afbf afd0cb290fd37a0249caad0374c1a9ec @@ -39984,11 +44641,15 @@ afd1c74be55be88a9781b8f962879d2e afd21138154cf18add1a4f9e53316fb2 afd354f01ecc1199b2fcb6edb1bbbfaa afd953bc36ee0c000ba468d37e8a2ecc +afd9f0e4ceaea8acd93aadd4ea875008 afdbe6145b7501d418cf83b6f2172bcc afdccea40475c3047e19c184e7d25a7e afdd5c2586eb706e9a01101a4be81a9d afddbbb0fb5020f66c6038bfcf60fc32 afde971233393044fb66d1ebefaa67fc +afdfcb634bdebd24c43a63477bdad54b +afe0e62934dd8fa08de6d55238fcd8aa +afe19c969a09e42ffeffc4eaa1ca0961 afe1b7788c9ab0b179df23329f54fd53 afe34384c2d2d83951034f2502dfbe9c afe374bfd19f59a0f34f4cdcf07802e0 @@ -39997,15 +44658,18 @@ afe5661f29269bae1e4fc100eb87bdbd afe63e5ce761c9b5c1606818086426ea afe716550173ea58269f9082473dbce9 afe79c46ef5f6f534637788213eaa71d +afe7be5b2a1095eb991911ffffcbaa0e afeb389bca3db6b06725ea6fa254d778 afec409a1a09dc74f37abe9f24019130 afecd94e5fe149ca84548f37edec98a7 +afed1325b0712701cd64c3798cda62fd afee52a413a1e06b9af67dd327d27cd9 afef92613a1e163fbd92a1d206f9afe3 aff0f59b9bcdcaea8d88179f28123910 aff332df93f83fae2a57def9cee31381 aff34421fad7716605f355d494ee7631 aff39d197de0aeafd2df7799f280b535 +aff5ea4577c2b7c72ec10a4f59a35bfe aff8c719cd55ced4cb502ff56ec63f83 aff95cb6a570b4b458963c6b6a121510 affa0819d9bba047379711759f108f96 @@ -40016,6 +44680,7 @@ affcbc60522cb62a40244e54e01272a6 affd3cd81beba94b562c833ff185a052 affe379686eebabe93fd0ecba27037b8 affef8b9cd9c7614cf2539a69b9e775b +afff4214ff4370bb51ac524a4f74c02f b000f1faa07c64b6f51463300962853e b0023ce545c557990da3292d3352ef75 b00348062392a28fb6f64f55f8bef5d6 @@ -40051,6 +44716,7 @@ b020f0f8e2be76262a30fd2cce55cfb6 b022a4e37a5002bcc96270a171460b17 b023eb5e222a3d1c6952b25671b55beb b0240f075ecf03141e99b871362b2915 +b0247d6ea6456d4965b8d298920ef223 b02668a957b127a28767597757afe13c b026f167e1713e0b7f92db52311fe100 b027c1b2613854b6c4bd3cf76bce6643 @@ -40060,9 +44726,12 @@ b029d5fff80b63b7d0d62b783b457668 b029dd4ff5784be726458f57f3bae466 b029f6fd93590761b64eb0660e3f41b2 b02af3761879800b344a37b4eb16e348 +b02db3385baaa447649d2e769b05defa +b03437532c835ab8c4e4f4ebcf1dccd7 b034ff0fbd084ba84446212d759f539e b0351b4c8544f7722b160c09f40caa4f b035416c67fa432c05b66846195b9da8 +b035f9570cae5c3e6af38c6416e56f90 b03613bfd2f07bb3d8ef6570a9d7e7c7 b0364a6530ad6ca190c86574a519f55c b039104a7ee918f6cee5bc34b9cf7a25 @@ -40077,12 +44746,14 @@ b03c110eb71bf61c60a052aac9cfbd06 b03d44fc8726d3ce3a43abd1c8e35e3f b03dd4051b0cbee245194248d69fbd7e b03ea10ab8bb65563fdafed5c4256835 +b03fde235bc96899acf8604dcddab526 b040793d50e24b294be205372e9be74f b040c895327b8bf967a7ef83ca9a2fa3 b041039fbf449f6491ab15288170f269 b045356ad7e691813402832fe64d4d28 b045cc5ce477c6e665eca3fbc1de562d b046fd7494c9a18e8d8d459e2c0b2079 +b04778e7dc5d1348a7957d98927bf8ff b047d2f50c4a95574b5431cae512c88f b048c3b0dbbf1c8eeddddad457fb0fae b049787e6e808cc241f385380647f98e @@ -40091,11 +44762,14 @@ b04c85705fde19d1f0419c99c9e3ddb2 b04d07a1fdd8827fe543dd85033d266d b04f262825dc79e7ee0285ad80ecee7e b0514a23e8823ebb4034462c0e1de9ac +b052a2127953e570cbee72ab2c661b73 b052e3e4690f1d6940799ff575a5f9c2 +b05340423febc990f6cd71d241febfdf b056397089b834e4f6474c5aed2c02b5 b056b92de176f2139afdbeb7a44cc839 b058217afe87cedb1e9e9e40e7068939 b0593ded26ba8890112d73ff96cb69c6 +b05a8bf22e7d52f610708c25a72aa788 b05b00e3875ff55bb77cfa33e35146fe b05c7550a2c4cb538286278027e31b78 b05d3eb72a82650871cbf67e50969ecd @@ -40107,6 +44781,7 @@ b0612e7c90242f97499b9fb293468ba7 b061a36e84457ce83f7f8d2b398f9754 b06361edc0b57bd99992513dea2a3065 b0636799569acae92f33b46faf3fa02a +b066920b97efc957e37370a2fa714461 b068d4a6dfda7e6cf507078ca3748244 b06938bf8d1cd2e5acf1d43eccf77bcb b0694fb3833a352815a0e1177e0aa21b @@ -40118,11 +44793,13 @@ b06bc21fceb9fe01427f93c14476371b b06c936a8db65c6fca6a28881c5e416c b06e959dc57dcf57f2ca48eb0b78681d b06f07a58bfe9d34c56589434bc8c3c9 +b06f199f646b204913fe66b3b6eb6bcb b06f5b25100a9f2afa1cbada975ad0a8 b0707696ba91652a6b27917609c35424 b0722d74a9a440945a8007825c0f729d b07382b8dfc62fa4a670e5d4182333e2 b0746851d28842ebdae9af419f4febaf +b0779b91d6fc6bd803d23f16769425c6 b077d1ff85932951f1032f8e5fe7d495 b0780a49b7e5b04d3097689b3a5bb0b0 b078351a0b0a1403f0441c64206decd2 @@ -40138,6 +44815,7 @@ b07d97574aeaf22c3601f39151bd98f4 b080530f232dad697b74c72b0484ba62 b0819b4a1273582d07adf4173ae67814 b08361a4d7b1607f0932f25d3236efcc +b083b6887e5909491bd8846cce575121 b08524449b18479855098142e8f5d3b9 b086a7d1cfe08f0f0c97849fc6c55405 b08cf561c431095ec9e8808f72511170 @@ -40154,6 +44832,8 @@ b096b88f4e68cfbec253eec740fc4aa6 b09724ccb17f368f6dcc7aaba31cfdb1 b0976d5d8dd3dc219b8bbd70529ebc93 b097e5b0eccf0a2418cc0e77af464caa +b098b3a6b0e496275496b426a533bc29 +b098d6644586971774ad4d5adda1cdc8 b0993338620994c0837ecbb50fac12b4 b099c5e1e0a96366b4b63fe6c5a6479b b09ae8be9397fd08c04b5442c2bc63f1 @@ -40165,9 +44845,13 @@ b09fd90a299fb244feb9704aa8d9f939 b0a0b2dae55692f71aecfa096f4baeda b0a2ea7b5b85d90d01c4ec9bd25ef39d b0a301443d5b422ae3e82f2db0b12ba0 +b0a38470cc41990aadf1c3aaddda0ff1 +b0a390bdcb2cc528e765cb971d374167 b0a49bfdd92a7166aaa22ae88ac73aa0 b0a6681ad69eacb7889e1c1e5f38dad1 +b0a7c582d87a1d1ea55618ca90c7bb52 b0a8e6f685eaa127be7efa3a093cd20e +b0a93005e0bce2583051b95ef1b21032 b0a99748474ae701b4c885414151c9dd b0ab76af879d8c92086d960b476342f1 b0ab8fd0edc0fd8b8b6da25ec6f4880f @@ -40186,6 +44870,7 @@ b0ba0aaabd9b12161d4ad113987b83dc b0ba458141279b798b7d1335425d8ebd b0baa056e5ec62da32e2828ca4fc60f4 b0bca52f0058c1d955ebb636fab93bf9 +b0bcb62e23c5dba46daeb3c73d524f2c b0bcc932257d2e424e99d829da4ea248 b0bd7153629ba0fffe5bd096035cb8ae b0bd9570275dc92a3081a078d74fa3e7 @@ -40216,6 +44901,7 @@ b0d3d748bded19d1d51edd133df5f02e b0d41fbf8342564f05b26890975b2be5 b0d4e2510795aff0607768296bb54413 b0d6090d6235adbf3ad65cfc621ca100 +b0d63efbac66bcc5dd4aaca39ed4bd23 b0d9791b91ac882436688c897b1623d2 b0daad94ad263f2529f77efeaa966948 b0dc2ea4c80c28d484b41f195b2c60fa @@ -40264,6 +44950,7 @@ b10746410f283681e0d57340f3656594 b1086303daab73e5d71521440a11a531 b10911ab64751005db4aba9f63d9df62 b1096783b76241b5a561b9607ed25dd4 +b1098be0f3bf1bdea9d9cfa827783530 b10a20e1b7e60ed31daa8ce2c4081b7b b10c5149baf86d384efaee678953756b b10cd2977c108bf70e124661a477fb90 @@ -40276,17 +44963,21 @@ b112cb81c94fcbb708bda0b9055e5556 b1146dfa8ffbfa6167afb0a0b9b605e0 b1164f7dd0212c7c414b4638fb7d186b b119518f9b3376230c5dbf8c3d7ce9f8 +b11b0a5c35a47e67b25aa53768ccaca1 b11bbf606f600ab50aa2a5ad8cce265b b11e01526ae9dfd2e509617e6a33864c b11ff28b6159ba51fcfa219c7d773aa5 b1204cc92defc8bf3e64bab30e221a70 b120ecaeba6e2faa5c39360704b4acc2 +b120fe614d49b988f0117326eeaa464f b121205ed9e49767c22426d9e023fc5e b1212bd7805c3cbf6e1fe5cf4ec98d69 b121dcdad5ad8ccdfd768f493c071d04 b12378cc4e6cc89228ad7b722f7a1025 b123f27f2f28506814444361d585017e +b1255ba0f21e131c0a8885f446e563e1 b1267b221819f8d9c7e76eacff83cfd1 +b1267bbf5227614069f1ecdc52d3efb1 b127c1787614cfbe0462055d0578aac6 b12b7b5f3619697297464b2931fc28c7 b12bcb43d36f80e32b5c7d85b9af4754 @@ -40299,6 +44990,8 @@ b13097efdf6a87fbb494aa7e212e4f71 b131041da698d9df6eb243d147e25aaf b131c13318299709402bc08df954e568 b1323713ab6caa4d1ded14c52e49aad4 +b1333175f1c00dd50720ac77315a30b6 +b1349c1e3b4d41f21e19b1ecf3309dd5 b1349eb094b84c14f892679a7581fbcb b1364872987a21f1ca39f9886479b7ff b1369900c235d99f3c57dd84ee394933 @@ -40315,6 +45008,7 @@ b1418b878a644e73808d0d156218b215 b142e024f80a40c441be9cfefc3dfe05 b142e705b7698693e97f020262602f75 b144145e0e1eee01becaf6c668cb7cc5 +b14482f906d618b3a8d2aa27e88ec51b b1454cd29b5e5d49670feb9dd861eb4c b1472d0aeb8839b61d94a10ab32d481e b1478a119fac333a3edfdc7567d2ed1c @@ -40328,17 +45022,21 @@ b15061937d59e6e102203c896ddfe95d b1507baead651d7e9e0c95eae3cd7063 b15210d0eff633e3b526f1db2b4ebf55 b1523499ccc81c42ac681e3e50b1a436 +b15291be666e5195ff6ee9b12e6676d7 b1541ed4026c7b929bc1fdb978fe9450 b155036cae26b5c5a44137a0162b543d b1569410b74419dfb0f7020e98f60eb1 +b156bc622df248e417c88eac544e29eb b157b93be085c79207c9422cb7e9e33d b15913f1f5f5211b28622d9dabd2e7ee b159938f15e78a4cae5175030e866ad1 +b15a58aafe4d517835c8714e9b4db95a b15d2c6d60d43c50c7df2e14c74e251a b15f98082ad7f490d45f5569fb499e33 b15fec3050984e101a00e0077a4a5a5e b160692237247be24409094ee0ad95ba b160ac12c2ad53feab264b045bd64d53 +b160e2acb6fed35654c19538114e76c1 b1610be7216ac211e6e39bb65e566cf0 b162385a2d1ead6e03b5f46fef0c9cb9 b1630cc1b27834047847ac61599e4c0f @@ -40350,6 +45048,7 @@ b16691447ba9ce77b6961a8a252f795f b166d51fd6a36efcf180e30482c20793 b16775eeb4430de4e9411fb6ff3ccead b16961ffa3a09580846e0412fc2eec95 +b169f28d55b9cb67c3ea86626da7b5b8 b16b0500d47b9cab6ca74d0f3cd9325d b16c1dbf1578657ea2525e8578dd009f b16e2091359f572b9de1102cdc550bff @@ -40357,30 +45056,40 @@ b16e252e1d8bbe19629453fa8e678ac0 b16ea9bcb14820d44a718f767d1d8f66 b16f48be60f8969b93bc85f966ab9b86 b16fe83a264f55b75222032f5e498177 +b1710bffcd72a07eeb22ed2f34d01424 b171888a2e924ef45be770688dfc7aa6 b17204f54cfbc161424dddb9c8bd2529 b17207c63ccf0bfdbd655ef3ec5dd384 b175297ba0062f0a6b18a8af20ad588d b17541fe46aeb075ee59e3a8da16edb7 b17778b3af0c4713b713d54972898a6a +b1777f2584cc488bbdcd800f0a0bd69f b177899a9dcc68a8f64152894bd45f22 +b178ac6bf04ac5c3d0b85749faef39c4 b178d786d18a89a60484b690fc1aa064 b17912a3ce4ea0b7222e4739909f1416 b17994e00ead525d7b5e9cd70c2c70e5 b17a84254b6354f6dfa2a17a1e844b3f +b17ad25259acd629c6ce3a07712e0413 b17ad3029651aa92ce2cf1548921ca86 +b17adf0283513e5f60aff50dfb31f744 b17e33d2688e58b9b1b7f1426c4dc1aa +b17e445bd1af07ce9040d61631d47e2c b17e4eee58f92715f75b9befeb28a80a b17f54be490696f08cd562947a030f41 +b1815a788f52b607d2cc8c612786c511 +b181cbe5813a2579a5be56e7579224f4 b182f3eddb71893945976d4fed27ba84 b183c425efc80d455e4b166d0a95bbdb b1844047e652e2bcaac591314a64a52e b18458f81a7548a99dc34f7edb25ad16 b187368ad3a084be10545137637bd00b +b187bc60b682c984e28ce88b6a67e986 b187ff8c3fedb0480c850f8679a3eba5 b189290e2586c50046c57f9a17226ea8 b18a51c6b4d88096cc397e17f9fc8cc6 b18af47104fb86ff8687d9e30f1da38a +b18bc764ac21be24c07fc6d5a7a587dc b18c5428034a4895d9e465fb9ccbc4bf b18cb5235271aeb30c25bbd92acaca75 b18d9ad11c1c77784214a5725b080e81 @@ -40407,6 +45116,7 @@ b1a1b455b5f123afcb78ce1e221d4850 b1a4bc262d04f9e4ad523f087e32d5ae b1a85ed495cf5b61d74742721590d872 b1a8ecf2b7210cc10ca489c4fc658fdc +b1a9ccd6e614a4a26b30d95c18475d37 b1aae0148f6cf59065d0888dfd4a246e b1ad7001fc46ab778fd01254d8ff4745 b1ae7467e18cf98d445d08d93ebf90ec @@ -40416,6 +45126,7 @@ b1b035e30af19c19ec5f86f93e674724 b1b09a1eb5d6dab64a189ff7cac08b5c b1b1f620b43bb68b2e2895f7c521129b b1b3787eed2d7316efe50219a4e06c39 +b1b5df0d55d6cc01cac06df1f7f26274 b1babc0de4c2c452ae1bc8dbba1ccab3 b1bd0a9bf7ef833367f8ae66155d7c21 b1bfa2662017f2fe7458a218117343b5 @@ -40435,6 +45146,8 @@ b1cdf4ae749fd3f4b2916f90c207db12 b1cef8da6549dc882409685648317e4f b1d09265a28154d9f6bddacc6d0d2097 b1d0e3b5dfe6e31dc1a3296bacdcd723 +b1d238fbbb6028365589d4aa2806c863 +b1d2a15643a9456e1273d1b3197c9234 b1d2a9a4ab2f1de2f206e138718c1536 b1d484d850eafad65cf720521933236d b1d7e67bb53c64e2e50066bc03173505 @@ -40452,12 +45165,14 @@ b1e475e11d62d09578f399dafd7214c1 b1e4a759ff1a2707d1313415da657516 b1e64f85edd44564a7f548a417712f3d b1e75ef9f125bdd179ed9c88f2c6f3bd +b1e7aa6a9fc532dac5fc58bdc3f31f39 b1e7b26754d159dfd3271a240b1a9cc0 b1e8bb9de08c3d0e7f7e5181ba0f3a63 b1e99f5c9f01cf49553bdebbe3ec7cf2 b1ea0ad84b715e3fb6595bee5687372d b1ebd7a09526460a15d0ea78660ee50c b1ec6b81376ab48db730a3283ade2ec6 +b1ed23924fecce6b546bd74abe5189c4 b1edcc609d242c8ce75b56e8ff0345e7 b1edf08e432c30fa477621170a843b4f b1ee7c162b254ef6281ac4befc68f04e @@ -40468,9 +45183,11 @@ b1f33c30345bc9e1287eb488bfff3716 b1f346d4add415024bba3a5ccf00bbc8 b1f47e0666338c8c283a992e0f13fc20 b1f4acf9c73f5957510f91758c804325 +b1f5453a651a879514ca3649f06de278 b1f59caa1b42ba87703b722c6567f4c1 b1f638bb8ecfac7c57e2a4edc090d7c0 b1f7fd7f20576c15c5ecceedd93e4b73 +b1f9216a4a6fb006561ee133247737ef b1fa69f9271812d7881637c349340e09 b1fb1204abc0ffc3abd78e2de7e8b57d b1ff0d219255972e58380c0d1fec53b7 @@ -40481,6 +45198,7 @@ b206f33679ea56623c70fffb7f6e7339 b208e919b9fc71610e35bc8ab0b07892 b20b22c4fda7613b966d835779e578c5 b20b37d23657c5f0f190b7cde67d808b +b20c627da6810ecdd927df1565aaf939 b20ca06916722956cd45e162021cfc08 b20cde64bdb7efba64390e9ffffd8eac b20d0e523b032b58b7233ab399459e0e @@ -40492,17 +45210,22 @@ b2159d6e2fa22a96d0c4eced5cf5f7ab b21661fdb6098ab88703e6e047899cd6 b2171461dd57720d7fffa6bdbddbd8cc b218790ad42a8fa55d27737892b534a6 +b218cac1a2ce822a0acb5b5f5447740d b219299441cd30789315c22206c7ae1a +b219e57bb30193256f8079e299fcf135 b21b5b19eb5b75ed9ffa662c4496378b b21caf6cfd151255c175131506b2b8fe b21dd16b20aa780fea8553d86adb9552 b21e8cc81a67417ebd457ab61c912c4b b21f5410179264c91cda0ad877d4f1b2 +b21f93fda26d8959c1dce72fc85b9752 b2206b53794bada25140ff32791d2bcc b222164f1bf6042445355af1bb5c3595 b224779d06423b6bcf61ee8879e23476 +b224edf3d9310ffdb7bba97c502a5278 b224f95a3d85b355015ec7f293671da2 b22682010e6fbeb4f7ae518caef82d7f +b226dac2dfbbf76823ae6a7751a654cb b2295934af2a48ab0205ea8f6dab9517 b229fc292c43b373fb6ff9f35a1722f6 b22c63290111e73906a8f924d4fc7360 @@ -40519,6 +45242,7 @@ b23d30dacd203346b063dfe141adf749 b23e10b9da1f7de481cb8581dc713e12 b23f0964bb3a6b236025de57d0cc3ce5 b23fad36f1d467cdccb5cf578c8df92a +b2401ae67c5f3fdd2d97c12aee29f400 b2403ebc657f8fa7660a798ba6d5f923 b2405c0d0232dc7c8e2e2c2e5b01fd7a b2407e2717defe784a20a33fa232fb41 @@ -40527,6 +45251,7 @@ b2413940be04b774de28b69b11a97646 b2417b1f409bd52495c0c61f7c6a594f b2421eb448b8a88d367e5d1a5f263855 b243d0d8527a74881625f348e5c3543d +b2444aa912d3fe4691e25ebe88d051cf b244cf417a638b78a539e19b86bbf249 b245a11852555054217f06148ae9ff7d b246c26434dc02103c77728270365f4e @@ -40547,6 +45272,7 @@ b253ea3aec6c3f496255b36414194760 b2541b1046bf5bc50e71f72e33b07411 b255a2c46b058a72812d31cec2aad1a1 b255c0f8ad30b74ad8d3807ad4add3db +b255fe2313fa32ff877b6129f782a593 b257806b24ab69d3b98bcb28ece0450a b25816af2c7e4750fc35823e691375b4 b259b039bcda9cee6d016dc996bc920a @@ -40584,6 +45310,7 @@ b26e7b47cb3a968bb4a23890b67ce9bc b26eadc04e5dc2cb71b0081c96a6b289 b26ed655283a0973e9b1429f816c7126 b26ee8bfe6e722f020de7c35aaccfb57 +b26f33bdd7c0efe3ee14dd5d6655a62b b26f4b2bf98ea446a4c10fe6b258bbc9 b26f799b3244f1c25b6c47600c170967 b26fdffe21fd612d141a0ba803b0c306 @@ -40592,18 +45319,23 @@ b271943c993ad8ed25eea48665bb80b3 b2746b4834d18560f364a503ef2d6e2a b276e04bbf3f76f937e2079d222d7938 b2783532b85acd34baf4effa385cbfa5 +b278613006c882cd3e134bf2f72f7fc4 b2794d1e3df2b53f09fed8f2dbc1dd18 b27b74e34e5f9d55452d5c28f6998c74 b27df0e92d9c6434841f1cd77d970879 b27e4e1c5932fe4f90ec29f6da0752d8 +b27fc75be62b2d36684bf8afd7f0aefe b281b0b28a6721fbb160c3297a26ca0f +b283e48af8bbf86827a549b989281ed7 b283e7bc984f4ffb13fbc9c1f9e95465 b28448e7e19e0a27766b400ac289b00d b2846ef1ec126c594731caebb39edc9b b2852e31126c1cb04f8d28269def1b06 +b28574d539dc9435461b5c2903665d7e b286056559b84e710f2bb5de7a848abb b286aa60904b4f09cf808d95c668b1c5 b2884b48912af2eb391652f4d1739ebe +b288a42c520627b7edf3842d04595660 b28943dc2bcf8e7ffeac05577efd8a44 b289b76d12aded2f7dff14342390bb70 b28a830a3f305b46079e5f0558ffef39 @@ -40623,6 +45355,7 @@ b293ccd904eff216f617eceac55021c4 b2952be343a9d094c56b8e0454e17f8b b2957bb54ea6cda70766ee5c79069083 b295b977571d7800306807133043ce21 +b295eedbb4f398e3d50a3b0403d81355 b29603401ff2cf963c1b01a75b9ba5dd b297bf5ad8f77e916569ca8d79286aca b298d9a269b571d14012a9f92ad902b2 @@ -40652,9 +45385,13 @@ b2b768aab2541ed7ce410bdcec42958c b2b7df3af217f92e5883f199ac962a7e b2b828becae0720e08781113659db0d8 b2b91fcb593c9938503e82d74d584bfc +b2b938639c764eacaa94452721e78abc +b2ba683d67047849f75cf773aee3a82c +b2bb27246a3424452b1d2b0f01a6e3a2 b2bb59bdc79a692e5b6352f4af2b5ed6 b2bcff107ca4017c577ecff3210aa7f7 b2bd6d0cbfcfb7957bb59399525a1b4c +b2beb252060f901386f50ced3088b187 b2bef5b72202e3383de81e5dd04b71b7 b2bf3b33e4445a983cb2624d843df7e3 b2bf4f781ee87299528c4c07688314f1 @@ -40680,7 +45417,9 @@ b2d22eae6cf3e4e8d676b6f4cc2c5f97 b2d32450751a27dac911f847112faf6c b2d34faae659cd1687d5c1ad8b4b12ac b2d47d6c8644d4d9c6cf51ad42fba077 +b2d4a6d2611b77433acd2534033132d7 b2d62e396e63f2aa68ae86b8986eeebd +b2d71ba111b06d7b4cfe0cd06e26705c b2d8d1eaec313f9382cea7eb6c59c5d8 b2da1d6403409e3dbe467f2f58175e46 b2da9ba5361135deee3b3e3f94b06f58 @@ -40698,6 +45437,7 @@ b2e8fa0582800341f74fdfd75aef2007 b2e9a90ae7b1472aa69e1bbbe047efe9 b2ea5fd8a2255664bf489ece8bd08f21 b2ead21f627d05c3e716e88b73c46938 +b2eb0ca01d7ebb83f8b7ae85acb195f5 b2eb1cec1b6b65b087a9f0aa75261501 b2ee2d0d61c73a85f2b78b1ee3de7473 b2ee301e895fcf2f28fa3396287c8ee5 @@ -40714,6 +45454,7 @@ b2f32125c2b9ea6b03c035444adb7a40 b2f34ac7291278ce262722a51b11e5bf b2f3dc867a977d034fc474238fef30cd b2f4a81fd6ccd56861fb1a832dd44a00 +b2f53ad6b39aea4fa9a30c7532418808 b2f6898028f5b08ae2b31ea1036e1e5f b2f77f628e54c7bceac9123dbb6ab5e1 b2f851925f34079598579720a749ba3f @@ -40723,6 +45464,7 @@ b2faf7db82d342a63c2741b07e73dfab b2fafcab71ed8a7c5e5d56c14f03a716 b2fb5294984ddd83d6aceda2e628d114 b2fbb1b6564afcc28f4452a8627071cf +b2fd303b852b98c64a92de191962239b b2ff2df6120948019058bc658c434949 b30280bcaf7f7e5aaec34e9e6ef772f9 b308a4532392e70c626a49ef870bb25f @@ -40733,6 +45475,7 @@ b30a8ddb8e5a4bea22c4bd0700510151 b30af080339e55e1531646746c429dcb b30cc2d5b12cc00ba0c6f44c4a9deef0 b30ecdcef6d970087958cecb4d1e5e11 +b30ff656cfeb9db37251b3ef1edafd29 b31050f021495fcf590dee249288bd1d b31102c192fc4329ad23706a654845a4 b31198fcddecfe65aebeadb7c4c814d7 @@ -40755,20 +45498,27 @@ b3239775eb92271717b89fe26ddf3b0e b3248e915320ef82fd72140822e1e2c7 b324c5030e553f8fddbf8872e5cd3bc5 b3257f9a3924ab04e3189c483737be73 +b327c5bd3d316b223e82e9ea3b82fe31 +b327ca7960ed781528a40bc1b97bdf8f b32ba919d581a91cc07c00c53a25c4ab b32d46f87ddba9e1faeaf325319b2dd9 b32f4cda774346878d27b030e002af0c +b330266f616144bf7ba80f7d27396d7a +b331bafb0376f26bbc0c1d97ea2d62e9 b3355357bbac407d8f55cf9daf00a3f5 b336de89d93e6922117671168d1d94d3 b337284e11c74c891b605f1cba3f3fe6 b3377bdd94d8633203e51d04d9b78f7d +b337cd390a9b64e57e7d3ffcacd5d5b8 b33820c6be19412dc6bfe3f1c517d3b4 b338418c1aad7c529d610587efb7b386 b339dd91f1a530daf17c2050c870252b b33a12d455a2b127b13f797c478e0959 b33a8af991c79e4582e5aaf362ebb1a5 b33c575a82070921d8e15eb93593b587 +b33d2015e1a6eb361517fc1879812dcf b33d8e69fe9eb1444d17e1a0fda5411e +b34250f653b9141d1e878cb86b399048 b342d2b7e8575cfd5258fb339e08341c b343417d9448957e249e26fcbb28786a b343fbe0b8ce802e2a96f6ea5098a747 @@ -40798,6 +45548,7 @@ b35be7a4c8f7c757d74608be9995e9f3 b35c2611e6501346039f059d692e651c b35d0e271c00acf51797a0e8765a9fb3 b35d26f8387ec57aec5f1996fc7a606c +b35da3235c0bda2e2ec1da5bc9d1dfd6 b35e9da52e25354519821579e940920e b35ec4d713062489be967eb54122a436 b35fd122927103cd9f100c903e7b4f1e @@ -40809,6 +45560,7 @@ b363c384ab9f241d9e276f8f3f56562e b36648884e93784c844e0a3a1d43d45f b367b0358f125f9afe1fdceb1c01454b b368c6a80d83570d679da36d388efe66 +b369327574f1aae062ffe0ca73791c8f b369353de54c8384a2292eff88082896 b36d96665f578ca728f63710668f6b11 b36e201727bcaa234ecb197268095eb0 @@ -40819,6 +45571,7 @@ b372ba10255f53a089a04f1faa7183f6 b3731b1f430de79ee8c5c693f42af1b2 b37455e8605029af34b292bc5791793b b376fb1036220f96e52e3f07b8c0f0cd +b377d765b8d6a244efd6d2e3d87d1060 b379b06c7131405870ac98db03c9da1b b37a2af17bcbc7bbd869c156dd1fd7ba b37b611018b37a889ec3c7088a8c3cc7 @@ -40831,7 +45584,9 @@ b3804f3e094b363b66d007edb2a6e1ba b380a03bd791054659ad95d6b7c47762 b380afa9a04d01fc1dabf68545b08188 b381533872948313ef7e22340849b98e +b38221c6f65591f9b2d10f354a3568c1 b3839855294d6813115f3cfb4dbf4e15 +b383b182ffb8eb970e0d65a914677e0b b383bc465d064b100ec3e909625019c6 b385080e9683b2b182587017d166b2c9 b3851ba4825844148b27f8c3a9acfbae @@ -40843,6 +45598,7 @@ b389f7dda2cb51b28ad2a4c32eb02e5e b38b66a31066c8942c0c2b63e1d79fef b38bad09955b601a0c5ccc06b936219b b38bd2666e54749f9174c96e74feb7a3 +b38bdfdb62a81d2e5875905a8abcab3e b38e4732f884909e683c09e772ec2404 b38e5603d32541abbcb6601c399ceaa0 b38e86f5351228e3a1e791d0839ec254 @@ -40858,6 +45614,7 @@ b396a05072c33d62d4a38e106fe6af61 b396a416394e7b2a78cb2ac2f542501d b397862b0eacb677b0d0bb1f7c8730b6 b3984ce51d18b9bdc9ea9a60f4f90281 +b399dd671dec30b1afbb556fc31a86a2 b399ec7d1c2af23ed6d671927a346902 b39a925e242c3a722784c58cc18c355a b39b8d9cd84bf7efc8136c4c4d816bce @@ -40867,10 +45624,13 @@ b39c39f2f10f80654a47fc971569a6f2 b39c51c6ebfe70f33ab91ef5f5b3ba2e b39c69740e04821b946c9b1d8b843a62 b39c6e2725f3aecf70a6270d2f9f6307 +b39c8af9097219f7183cec1e89093ecb b39d8a4d52c0d5c53bdaf1cd2f819a67 b39d91eb144ea2657b90cbdde4055ded b39da5fd535c4abff3ba6158db8f3082 +b39db28b14f505d794c88e974f43d12f b39f6909538e91191905245aabc3ee55 +b3a0e4cffec7b53dfde87b8e99a6b8b1 b3a2d61c908ccce317ee5c8c5cf8a114 b3a353aea9aec2c321dd31a0686d375b b3a437d6b6c8604c2fb733758cfe63c0 @@ -40885,21 +45645,27 @@ b3ac1706158b87c313345a03e7eb3c1a b3acd677a8b567c3498bd5363833ca9c b3ade0e1561e9f6e2e05cbd65e80a9d2 b3ae49e4c3c9cbefc64af37ccb7071f7 +b3af816530d596e3bf08e23a5f712aa5 b3af9c6e2e2df6e4d7717adc71d470ed b3b19940b79b98862a36a0f8b7836073 +b3b26f31bfba18e80ba69277d228eabc b3b3dcca29282bd30b4d4e43f62ea505 b3b4303bde4ddf5cb4e8d2325792debd b3b4475c9ecb71496150bb76306ce07b b3b62c1891ab5e5ec83492189cd81815 +b3b8fd5832972a47dc28c2046ae05aae b3b912c02fd00001e61f3d39ecf47e08 b3ba0df9f3ffe84696a692cc13290bdb b3baf1fa0a1efcd0e335ccc484062040 +b3bc1f15362f171c25f0525a194295e1 b3bcb90bd3ea737faae306a40783c946 b3bea93f7d8399462899a0189fdc1e8c +b3bf0470b40fad610a694f319d7e1dce b3c0bcb764bc8dd61fee703642206373 b3c0f70df9d89a6cca003e4e4425c544 b3c2db597483d5e73b997bf753efe220 b3c348eead71afb318844e86af0dc216 +b3c46a90a823135ac751d45cab5ebe61 b3c75837643c153f1ae614afbcdeb2f8 b3c782ace700e94996283a66d939ffd4 b3c8104287bdd9d55cf13c3cf43e9d95 @@ -40909,6 +45675,7 @@ b3c980d6508fac57e7ac6292db15b370 b3ca9d6645b8492028eecae144bed957 b3cbb0242eb8852820db3e708cd91237 b3ccaa5501aa0c9923337af72d7afa03 +b3ce97fab65f44aa3e0c0eb22582f580 b3d10b70628f81b01d8a3f59464e9a57 b3d17c6a9b587e3c2da96f8db97c751c b3d4080e7a3b1a83c93d390b5d98db5f @@ -40931,6 +45698,7 @@ b3e8f3f7fe6f134edb4fd4c9921841d5 b3e915831054ed3db24c914854548f25 b3eb0295a2f8db8caadbd200f6b02edd b3ec29e659abae7e1afbd033ac87c6df +b3ec8b020572a720c1aa5a9787a96c92 b3ed09d9861879c3cb065dbad834da3e b3ed55d740051389e1e78833da10a284 b3f119373ab8588d38fbcd36c6aef51c @@ -40940,12 +45708,15 @@ b3f5830586a4a3c4fdea2b571f6165d3 b3f6f71e0ae171d7b63c3fb49fa65ef1 b3f71215faf9c295cc3a1609ef43d825 b3f88279551f601132dab0e491b2ef0b +b3f8a5126d21e87b4c204d49441fa02b b3f9fece9967896f7e7965035d059b2d +b3fa57a3fe8436ec309509c3c78b4a33 b3fe701ef807b5e235ff5d06b6261c7b b3feadedc512fc98bc0dd82c3647e651 b3ffb216160b629d196243237e8c7aec b40093d3104f338894652e6cf9499e86 b40125848de812def283ef43248a3231 +b40417483e607a56e8b67c1e27ed9c10 b4057835bdd097e6a275ff066b747468 b4059286e09974abc18a56ba7fcc9eee b408fc99792547be484d15a1489c4a0c @@ -40956,21 +45727,26 @@ b40e785a0f560db099dd2e43fad86e69 b4105031581b675885258fee502cb93f b4105e8fd4dd071f6d53b5a916cd1117 b4115e04295c8200229a424f9f28bd6a +b4126456d742bef5c4e41365e61b102a b412d20a429ee184fc9a29abfe284bff b41311297789d82d2e3fc3fba2256b9a b41336ac875f4b1ab44d9a3ab61288c5 b413c3b17aa56ec1183a2580b8f75929 b414d2ecf5d93c31c5aa64c3393fab56 +b416aeca2f08dfd9360729211d32104f b417c733f1584d7ad4157a533433b29e b41b53695d9294e78ad1db2c484b6110 +b41b72d02b56f41dbd3a141e5a25ea69 b41c82d9583d00cfbd280a47273c9b32 b41e43eaf64b569f92fcafa829c2412b b41eca7c43bcf76d88b5eabaf4381eb0 +b41f096f480ac7e78fa38787090863f9 b421e3adf0d21a655520b2d836d523a3 b422d3a3e5cb05ebe4a76ef9ca6d97a5 b4267f08277b4d621afa5b4737277a80 b426e32a07a144477c28fda7168fead3 b427a23d2c25ddd3bca012260e1e3912 +b42888c2d2ed5d1e9f6401f39327fdf5 b4290d70b61e0d597332ae1f50633eb6 b42a67502ea1750e07d4429b229431fd b42b315ad85d4db83aec31b71be45de5 @@ -41007,20 +45783,25 @@ b44760993d5e68c1dddd5d4e1202f5bc b44779b8ade846517bcdf87b47896e2a b44ae3dc383bd31f5ff173271b57a8a4 b44b462e92b9e9f9ebe7a3b82a9596bb +b44ff7ff1f129630bb21a5f5ab57704e b450f778ab866ee81f2bcd880f9df1ca b45101da2048e5ae86296b68b0f8fbdf +b451179f178867fbc8fc9ce2e6ee5d29 b45207f22bb3e8e6dd01f27a76ad76b8 b4526b938108f3b955e5053b66836f90 b45395dbdd076920d52dffc2a08d1b30 b4545232fa326af6cc232ff0f61cff13 b4546f2a6cf5d9940d422911bfee942c b45637bc8be31c80c3972a69f65d035a +b456abff3ee6d2e19f368b45a57e39be b4579508a77a30a6c18b309b49203d9e b457beb9e98059249b5cbf39c4806fe9 b458b08731fd82c6a7f607972c8d12aa b458c00f3c0773108310c4c6a128e23d b459b13e3d883a8e178b6931060489d1 b45c295cc8248528c443f8a7132455a9 +b45d30a467450406e2672abdde94b355 +b45ebec3f04f59a80c1f35bf3a826c8d b460ba547cc5db53bd1ebdff9b2810b5 b460bb75d2d0d7bb8b6751a584c2e2b9 b46156b26e88aedf422e4355b11a3db9 @@ -41028,8 +45809,11 @@ b462126448f28580eec56dab77b5ca99 b462cf1332c2e747411e4c3119404f74 b463dda52c68877b8af8c8d9e5b8f8fb b4649b456b52a4eec121775323d3c7d7 +b465abbeef7a4ac52219fd185213678a b465d209e0a93e81c10413606447b405 +b467654d5533cea904bdd84282d40498 b4681ce6f72143bbd086dff973176654 +b469a54469cb700dc4590b951f0e6dba b46a4877465265919446253fabe682ee b46aebc064ce478442a7a96f649d803c b46c3b7e1bb9be9a90fb6dede1f5aa86 @@ -41038,10 +45822,14 @@ b46eecf50cbaee849d54f217ce26a123 b47217003f968a3818468548b7977a5c b4723cfebded504afcd8ead7d396344e b4746f5c18501ca0b22356f18ea2497a +b476d014055af1b903223edcf4b8c99b +b478f1aa69eb834815010ff2e8390e21 b479411cff2f43c71e035fbe7969e446 +b47a47ab415c8cb41d46569e215abeed b47bb9810c7a8d91c947651507e9af57 b47bc6c98fc5934dcef4154de7f45d67 b47be170f77c8a79ddb6f40e4443dd9b +b47d7601c4d97ae9c929583ae0a46698 b47e1f8db1705e8ad33cab9adf3d7972 b47f07d5d9b3131d98344b461cba7e95 b47f109833271c4a720a6d5542452843 @@ -41056,12 +45844,16 @@ b48884312ccc2e08bc372759bc2ff668 b48c7364eb69f9f3dd65689e88937581 b48e2ae01454db9ddae637b957fd32a6 b4915eb38286404f2671908745165223 +b491ddcd7e41af76db55dd296bd13cb4 +b492f64060422f89c3fcc350fd15f5a1 b49616f90e7c8e803dc9d14063b06b7d +b49703f66ceb0f5f5c83e676099c8118 b497d5b8d3934cb154876a4f717fa87a b499d8ee3025f85279f0b8ce5a4987b0 b499eb96d721336596fff8b0e14c9a3a b49a81d18c2a7d0bd3d0e7b5bf89fab4 b49c0dc3abbc3c0b8989376c8656606d +b49e119a22005b97e80620e627d29985 b49f1e6dd3903709ac293ff78d063b87 b49f7a1a2977df47f8463fa588f43240 b49ffb80b22cdc282826558e89044a17 @@ -41071,10 +45863,12 @@ b4a4465ce878e1a27c980c5ea4399e26 b4a457570eec841f39f5eba22fdf9ca5 b4a4cf809e635eb019cecfcfd330de46 b4a800dadf83161a2a105f15a1ccfc19 +b4aa240c6226079980202a5d211e6b0e b4aa5959f778b39940e9cad1549e61e7 b4aaf962feab9458903e7d4d116e3cb9 b4ab0c96048fd7a61c96ad13abcd2015 b4ada0b891a86a790b8ce7ee2108b757 +b4ae4504632d4e5dbc3b177dd1dacfa5 b4ae8196b54813839672e01fa11d8bca b4b04035a24c51d7943bffec4814ec64 b4b0a403e012fd5460353c46ef7e83fa @@ -41082,8 +45876,10 @@ b4b180e0dad7c69d859ac96af46972ab b4b203d1b0a6b91778635335a8612218 b4b233f8cbb6d29261d2e8f1126ac9b5 b4b26c990b635085f4e6bd5727b176ff +b4b4165f908fce44adaaf9335b6796ed b4b427b932ae2f03c622d7d690c43de7 b4b499b76b1cf8375e0f57fd82d86ba4 +b4b6180567da9c59565f6c421157bc82 b4b61e88b33fc603dfb6de6fa1e5f89a b4b6a22183963af9580282dd6c4864cd b4b6a261fb3fd975f2e01b444bd6c21b @@ -41100,12 +45896,15 @@ b4c03a5aa38a0ac13cef5af61ea3564d b4c07fcbfb5d101cb311a1e4aaac37e0 b4c3f55c8f7611b27925baf355e8918b b4c4579b066f45d4215cc96b63065fc3 +b4c63b76fd8624f46e0b79fc01339598 b4c750b2fdba20efe9fcead42d0effa5 b4c7aaecc573311196e6a0062c6b6d87 b4c9645dce46dfd073176194acbd8f3b +b4c9a3474c5a21493368e960b93e1e6b b4ca2154ef7960f8973c4deeb0e70355 b4cdf3714c945823bf106531266c292b b4d03e19b002738cd7ee5aa4181d45a7 +b4d047a04949d9056b3eadc99a136582 b4d088f0c59da4eba1d619dd8b03528e b4d168236c698ad815d1dfea53ca2cb5 b4d16fc6080150cb7ffeebd2985ad760 @@ -41125,6 +45924,7 @@ b4dd300640127a4102a7d381d5346e52 b4ddc5ec2c73af23a97e25058cfa9f54 b4de5daeed519e12b83f30c57df33769 b4dffd69309687df9c3c5741cd262a3a +b4e24a57130e47c4b221defcfc87a4dc b4e28271ac834ab253210f00dfbc2ab1 b4e2b661179a85af3341278b2f69eed1 b4e3ceaa438567fa7133412db3f4d8c4 @@ -41145,6 +45945,8 @@ b4ed82488b7eb85cf6c37499a7fd4996 b4eeb6bd5d7e3275c6bc0736dc027bdd b4ef9f6a2a08d6e950461c4c1be9c174 b4efad7fee8ed48ed90f5ac7bd6be61f +b4f250c89795694630c4e54070622c78 +b4f25418398d5396a3d3674b45e73467 b4f37e044ae844d5df97e13dbd4d4b16 b4f3d1e8600ce693824105d22e8c742c b4f55b683db13e62bccf9cb7d3216386 @@ -41162,9 +45964,14 @@ b4fd3bc9366a91a4607c09c6e4014bf5 b4feadd55a39c7a7097a19ed1f6c647f b4fee6a2458413360c42248ec60ef61d b4fffc5075cc9e8009099a3fa36acd70 +b4fffd265587670d7cc37996e28da406 b5017363161e802674ba90177b9ee4a9 +b501f0fa3dcbddcf10aeb616b2ec7df0 b503f1e476910a3eeb0b0294e94384fb b5044ab4755e739c22b9ea450d662b53 +b504b8629161122907cd17cf87d39f24 +b508b3c124700229e62093e27bb3bd7a +b508de9a9bc397d6622eb7bc60203ed9 b509a632fd34830e1a33dd9f3359de1e b50ae85ab8682c05625f2f5661eb5d5a b50aecc2dd0b7f8b71413fb9c64c24c6 @@ -41172,6 +45979,7 @@ b50b7d08c4d9ff7b54aff68c8aa1c708 b50dc9100ef2b5120252325308279b1b b50ebdb71786e5d03bd7b2dce857052c b50f1a448071135215cbfc7f4057e534 +b5107811aab14003a42c51eda5ba527a b511d597e8c4b7d91ec8269bdc52d9a3 b5121b742dabdaed7710b3e4181a7236 b515483dc3b15a8b797e0fb363798792 @@ -41185,6 +45993,7 @@ b51e41905f088714d3d0bc3cb2cf5755 b51f4ff52325483bd1a3eb1090cb3be1 b5205a8a7346fd056b8b242a8680279c b520d4f92b069ac021f2e3f1a5f07f9d +b52116e00c2db647582e6cf769c47e8a b523f68b945fa2a890331bdd8b66a7aa b525acb667bfb9b38abccf9cafc184de b526d99997de432004a6891553ccfec2 @@ -41192,6 +46001,7 @@ b528a60db04dafebecd064d7c709c3ec b52abbbb0fe4e0f338e34543a681b4e6 b52ba17abc5e8274d909af61dfe578d8 b52d8f2c079035bb0cff087c79c7628d +b52d8f4086110919af93d7d79b48aaa5 b530fadf505509fce5b13c6c8404eceb b531e9d2e1fb9f16206d24913cd147d2 b531f8a6127c1e2334669aad2702c422 @@ -41217,12 +46027,15 @@ b54858eddfc85c5062756029b5b07905 b54888fa0bf0baf48f93de0a167bdc52 b549a6ebe5f974770aa47a7cba02eb8c b54a13d2e6ab83c2ec5d360e6a30e9a3 +b54a17922a8f170f5a1581f74e9edaaf b54af22d41d19b3016d2e5557326e76e b54c80f2b9f28ed1268c9aa58675ec16 b54c9d673a0c03b4f360de5d6e071931 b54ef082c6949787f56e3f45a5c3efb9 b5512a2e523081ac5d45b4d8d75d6e02 +b5524758db4a10f7bce1dd62ba5be57d b552bf5e6737864508ca08a1d3bd3e10 +b552ef2959d11f1149521bdf27914ad5 b5542c2003efc970af3a5f55ba0b8c1e b5544c3bf4f232a0080d432aa8b29d0e b55511f355bb93c49277c2ba81decb87 @@ -41270,11 +46083,14 @@ b5764f8f5f0ceb5842a2525c09a5efe8 b5774c86f6758d618588eb211affd93d b5775372139709d1e7f1fa20940a2b8f b57a664a5a8132bd46981d345e9c9a76 +b57a75f611ceebb2aa3023614b00fa5f b57aa638c3b2280fdbc410a30da4b25c b57b35f9c63697b19e94f3ad2058e170 b57b40e3183ec68484eb9d9f9fb5e96f b57ccc83d10011de7af04e00225ee6cd +b57dac83810ccb5035ecfce2aeb930eb b57db92095e48f2ab4aca9267e304db6 +b57dcc3f3cd471185c33fe4747445bfc b57e3fdfa7f86b1c93d6ba59c102fb75 b57f061a1325dd70e267addcabb94e4f b582be8ccc74c87bd685aea319ec9744 @@ -41289,6 +46105,9 @@ b58d0b2529429f44bf24dc691bb100f8 b58dfd30178cbf0e53dc66d79fa804d2 b5912a73045ff0f04002e68382559fd2 b5913ac5cf674d8ca9e75b3db6ca6116 +b592009afb8552df55b5141e741417ab +b5927d42a58e23fc3c80042a692da798 +b592ae93973f0a75841e0edda2885beb b592cafb2ec7f71a4e1637a87b634d46 b593489dc95ea1c34724fc5309fe30d3 b5935d95164fa2624c051f8618d69bbe @@ -41298,10 +46117,14 @@ b5958b789f79e134a9b676ef0fe0bedb b596909859aeb0167954d047f9922e70 b5970cf97c993a942638dc6af519247e b5974b4cc849fe3db0baf54b0812a7c6 +b59868049a04964da183181019696f78 b598f328aa3713d361084e8a73e63724 +b59aa8d902b3c7d5a3dc443358586f3a b59ad1972598bebb21ce7c174f4c52c9 b59ea6268aecdcd09e3e3d84540b442f +b59f05247b3e339598d43f99d62be2cc b5a0fc784279541f81d64b28ae984dc4 +b5a1fd7e7455af9552e5194403f70db3 b5a23560615c3dfa170a60c8393e0763 b5a301d559d88ab3e9d99635df8254aa b5a32260676a51bb1b1ea7afa30c8c51 @@ -41319,6 +46142,8 @@ b5ad44162e58b9ae8198be5a741aa388 b5aeaf850ee9b1341a16f88598ac961a b5aedbf45e59a03d58467478824a4ac5 b5af6d70b97577b857e6c37a31a4daa3 +b5b0bfde783e5982340229457a1ba652 +b5b0df084372f6cff5cc0cf94cf3c06b b5b3917b8e2b057ae13c5a54e4e1378e b5b4320ba22944cf6bbd49866ae97ca3 b5b5bb872a373f3a62b029bf456b6400 @@ -41346,6 +46171,7 @@ b5c99d08c545abaffa7ad813fabde1b5 b5ca00101275b22e7f52520051127417 b5cb1333371793b699ccec828b08f773 b5cb8f75338f420aecf66f682977cdfb +b5cbb9c8adb9962ce850120f4db97931 b5cbbabd47917e32104fa3f7077ad671 b5cce7d256bbb2cc6c1ab34274756f52 b5cd65e40118bfe61998542354e8dfe2 @@ -41360,6 +46186,7 @@ b5d2659f1e36d48599f4a90685818f49 b5d279062b0ba10001fe801e40ff90ac b5d2f91a7dad51442603ac08c3e28f67 b5d3171ce9de078123df81b99fd7f300 +b5d48dd8a1d7bc0b9eee5fedd751b9ae b5d5b54e29fde90f4a1509d72a0c8aef b5d74611027be2b9bfcf0346dc2166ce b5d8bd3c48ec3e0ff9754c4c37937444 @@ -41385,19 +46212,26 @@ b5ed0973744739960edf380294744844 b5ed6b5965eb31765665f5539a6fcd59 b5edc32341168f16127e19b377dabeb0 b5ef14780240e2216d77695a064a1493 +b5ef8da2a54d171465db7387c80ffe35 +b5f2614a1620c58c3d855ad22ef62dc0 b5f28027b7f083f72558ee49887f15d7 b5f3cff93232e8e509efd0468a4bcc07 +b5f44e841984386c6384786a0bece29e +b5f67f21cd302c4163230f31c7c845b7 b5f900475a2c33af75aba0dae7a10f2a b5fed03d503c5b10683a5322298b550b b5fed6bafdd943b37f5ba3140bcd0ff8 +b5ff3be2bcaa4dacb65c92966885622c b5ffcd5c03d7304e76b72b7cdf81c773 b60010aa222a6cc2814cc5e440e5171f b6025b6fec92c80e2277abcc477da256 +b603acd917f9e98cda2401288f854d01 b604d50e77d8dd3fcf925a55fa43e407 b605670516214e4fdb4ede76ee486c22 b6065bf5901d6636ba0f3cb1c5e75aa1 b60677f5efa664416ff17a640f81a5ce b60a952cf58572aeaa0b034aa6e3e018 +b60ab7898c5db0221dc4d0174f1c9c9b b60b1e2f9c0461cff486d3c6a0e028a0 b60b459b269d2e623d7c9e69796f1e57 b60f630363c2a9421e83b1b51904ada3 @@ -41409,7 +46243,9 @@ b61465306b71401b68ebedb7fcecb846 b6149cfb1c5e2b75869b52035a3b3225 b614de1e22b3889c29b07f97940bef74 b6166e414dcdb4f0cb8d7873b4c88a83 +b6177eedee325a8e11bd0de860be36f2 b618c9022cc45701a9cc86b03c89e987 +b61b145c351d530ccc2cb3fb75d24ef4 b61bdc4533e5eb937939114e375fed77 b61df0715a67d3dc50b24f5996c854f5 b61df124faf5f1bc2a39ab1b978db6eb @@ -41419,11 +46255,14 @@ b622013b047569b884daf2908d275d8e b6222138cdc923a53dc652b3403b6a32 b6227c537e5a6a8ab0356be47dc7b52d b62362bc78e4b21c4dd5f02c4ef34a6e +b6250901be1fe180cbd7ffe003d17960 b62668220966febd31aaaf71a58679f1 b62821149a80611f6567672e3facf38e +b6299e54bc4a9a9453f49588e5000d34 b62afe39a777e1c2710c56fd4e41fa8e b62b5335aea70d46ba1cb6823fe3fc6e b62c9d90e83b6176a76ddfc938b7b624 +b62d57ff55b5d2c4eae0acb82fd230cd b62f666b39e2cc1a8bf90733fc0203e2 b62f75d18380d0f9aaba6bd07e21eb88 b630206221d06b33d3aa5b8cc57d513f @@ -41437,9 +46276,11 @@ b63ac2446b5f65b7b171d7ba476972dc b63bce1c9631f2e187211de76797daa2 b63c0f8798d85e7c4be6e2bab0e4900c b63ca466a47b2cd45b53a1fb5925d1b9 +b63e1cc8c8b02cefa7d87746dd11664e b63ea66f29cce94b909f73460700c531 b63eb537755ab7e921bc567ca40313a4 b63eeaf418ec3e8153e36caa06673e1a +b64062839c4804702fab4c5f6d2a723b b6407051f3286dcae9114bfb14e3d9a7 b64090b69a5edff12fd3645498d835a8 b640de0c79fd8029d34583137c6c65d0 @@ -41455,6 +46296,7 @@ b6495a62eb76e9b0fa16fdded0078bd7 b64a0e4b07a4659f46eef2c47c2a16fd b64aa185dd53d71752480798042a5622 b64b4cb78547cf149a07afefb5f8c3ee +b64b8b9d67a6245b6123376c3b81385c b64b8c16e6f822d94d49740fa5d9f1df b64c1c474323919a08a986574f187444 b64cb569fce7eaf525798fed49851a7d @@ -41488,9 +46330,12 @@ b6667a90211d22ba59f85f81b6005d26 b66770c6802907ae75c211a8bcdc561f b669a4ba8298df432a3448f084d90946 b66a312145da35a63e26e430402855b0 +b66a576e7a16778a5ba4511fdef1941d +b66be0c73b486943d222309840da41c5 b66c19832b40f6333e593b82cf86ae47 b66c2f43e6fc6fb95c55bbf82619d206 b66cd0a70fb348fdaac3f4a7dc1c921f +b66e461bab541f2cbba8b4de637ae070 b66efc9054036454ab089d16a8ff0015 b66f6509e67fc7ae4fa0c7de39c2b9e6 b67166a4c093e991692fd30f8caf3427 @@ -41513,12 +46358,14 @@ b67d72a856d02ef29945cc108574ebd4 b67f6231787dbd5a41ae6c77d388fa3c b67f941a1a146b0099b61749831b1431 b6818eb5f2069ea51198cbf329feff46 +b681ad218ef1e99ce2fd0b1143367dcf b681bc77e93ff8e79835a16b8255bfd4 b6824c9940bcdb0b0569a13114b579a0 b682aed5ce39d733972670b15c7c2376 b68308b939eeeb794e988ca098d829b7 b68323e5405aa7846f718e79854070a7 b684062587de7360258e86635f109dad +b684ac5679501b102c472f887bdc43d1 b68717367c0e301b4219cb6490555ae5 b68766dfa90bf65495831d7966fdcc77 b6891876f85e3b2cea2c36974e651a7f @@ -41535,15 +46382,18 @@ b693f854067e4847ce98191d585d2293 b69532e3c697a5a92f0676edd17ec345 b695a5fbf1bfb5a12183910ff74d3d4c b6980999f1e92788be2d2bbda6f49ab4 +b698becf906a1b2a6552438bfdd9e0f9 b6994b323e0c476b6cf0256df81a885c b699b270382384a1740475411a986785 b699c21e2498b9e965d2607e9bc44b9d b69a57ead54caa03d7a7eec71d0616f2 b69a6b77f5977286f90ba55575967de4 +b69d2d0880904d738e77e0a87c2b7c26 b6a13d03882bd84a1c4ac28baff416f5 b6a16377e445995ba97524270bccd1a6 b6a24066052492135599082429156ae8 b6a307ce5bd2b3274d7f33c628d1c29f +b6a31a79307dc5e4581fb6b87e6a236a b6a6ca5da9a2e81772ea87d03b604d31 b6a7c1baecd59913b73d368f8cac2081 b6aa395bccfb94cd8e401989eb14f811 @@ -41551,6 +46401,7 @@ b6ac61f5391721ae41083df355ce6194 b6ac99bdd024f2a97c418d150ac11d0a b6adf73bb44363514ff04f3696593992 b6aee4bee59f868bd3bc1b7b68a7e56b +b6af1a154e44783bc4dfe089735c210d b6afda3dfd18e00aadc1f9919f268538 b6aff606bce405cfeda5832fc2ffb995 b6b151f4b26ae1342debcd6c6582dc32 @@ -41559,6 +46410,7 @@ b6b3cec946778923c0d52ccb46e932fd b6b421993991371efaecaf33d40302b5 b6b4546a45481a4e896745d3b51ff359 b6b84a08249e745f4c62eb244fb1fa19 +b6b89e0b0cb1b20d69171e7d1f330be3 b6b8dd73b8ef88f313767d2465bc4442 b6b94610c6637ffebba711252719f0f6 b6b968afc377e66e209f9a4ee4d21564 @@ -41575,7 +46427,9 @@ b6c2d9d808055e855ff67f15def0cac6 b6c32285e4cbc27c45950f4ab0e5b7d5 b6c3400dcde0c29000959830eb554db4 b6c40b7209b9109bcdf48a9ad27c1cdc +b6c4c50fc73b5062527c1beac29fb793 b6c52e58ecb6fa892b4e8f0e1309b9bc +b6c55aa4d54c29262a7430408d97f226 b6c5662b094b37b3183184f299c461a8 b6c5c2b467afc042163f5cf855c6f747 b6c84212e65a73bf1ce64b353271e191 @@ -41597,6 +46451,7 @@ b6d5c075f8fb403b5d0f6c37ef3f0ed5 b6d6b54adfc3022c19aa84388c04d901 b6d85d26f3877d958b870d91a6f5010f b6d92071c8de6546e2cac2192d616617 +b6d97e627aef5406d28efd2b37606461 b6dc3daa2768b34786cd4f111bf23499 b6dd6d7f0b6d9228ba78b58142cf8ce2 b6dedc92d9e4337ccf4eefe514997861 @@ -41620,6 +46475,7 @@ b6eba83e1f805a8164c1fb4f4098fd92 b6ec6982420987d50b8fce17635c83b8 b6ed6ac189fb8c48378e3ce6ccaba302 b6eece823e50bf6b073f3bd26541e70a +b6ef26fe2fe4984ac701f872b4a4c65c b6f0a5858abc74789a72d73cd13ed549 b6f16ba60f36675d33a027981c4d3fb5 b6f2e9f00fc3f2d542d224239f2ca13c @@ -41633,10 +46489,13 @@ b6fc246834effe0116ce5c9ea7cd9962 b6fc9b96f828fa76a2cf3171466301e6 b6fcc2a4defb158f47329afce6d85825 b6fde3c37381cd2b75e1d0e1d5fb6b2f +b6fe579149b3bb248bfabd060135fe60 b6fe8a4e458f14976dfec4a3e6d72eef +b6feb3765d715c7e9e001c4d102e0c47 b6ff2b3add111601d019466269125112 b70063ff38f37f1a162e1eab9727c47b b7018c6bd8c836d3da7ab1c4434810aa +b701caf770c2719d3ba9db86c68db092 b70491268e0c42d4e6df51e1310f6891 b70712befd8dba36d40f628acc5ddc53 b707d603846113aeb97bb479e930ecf6 @@ -41666,10 +46525,12 @@ b718668eacf3b2c5b1374f545b8ea9f9 b71b6e788ebfbf88b29a62cff3945a14 b71cb9dc08d4edcc4ca80e3e66dfe181 b71d04bbe03eeaaab6315aa1998750d5 +b71dd6d212aef5f39ad6b758d1c250f3 b71e29c83c0047f136c874cc16e3f892 b71e4b9020964fe3e536a571d84901a9 b722d3b5f62f8846308f78554da688e4 b722da0f598dca4e7b5d976a29a5cc99 +b7233cfa7ee94e60c17985e395bddba1 b724857f6afd01fe91951044b431ce16 b725d67e99d644f465f251817abe4e4c b725e30c1b202c9add9ab09ac218752d @@ -41683,6 +46544,7 @@ b72d4c43b3f63baed0d313cb5d41e4b7 b72ffba4cf385093b327c192f77ebe9d b730dd3ae46faedf44e8e8887786a5d0 b7338f537756c787d8d87e9a366cf8b7 +b733d0588beb6d3bb03fd8f8fe2c018f b7344aa8d588c6a074a844a8d21f2976 b734735aa336a2585d9da0e3e9eab17b b734961df5271b041cde1f844935ecc0 @@ -41691,6 +46553,7 @@ b738dc0b8ff9d89f57a2725ff1471be4 b73c84cde278334f7217ed546221e78f b73dc81698aa9246a574af2298085318 b73fad200a42d089d116f53bbac116c8 +b7400bf76b019d9dd59b4774c29c584c b74473f6d717c7f20ea20dda5500e50d b744a725e561628c93d0e71251d4ec6a b7461112f87c3c1676ac9ca6ed239234 @@ -41700,6 +46563,7 @@ b7482be8e3b0fbee0a2cbdc51f635503 b748d35c937884becf3e3836092a56ff b748dbb46391e22596d7929495e47c5f b74a0cdc89325f8ad6ba5c4fdeb160eb +b74a29f63de2c08cc8d6993693a63837 b74a635c12a7792a5c4ff708e235dd8e b74a758911baaa8f429c5a0c4980545c b74c9611f07618c74eb0680298963796 @@ -41726,6 +46590,8 @@ b75a6de4a004c5a955c4e2e713782dd5 b75a8beab194a2a2df0a5a4f86435fe5 b75b1b3cfde8f1f61c356312726d3c04 b75d058dba8ff1c6f8a0449754330a77 +b75efcc3c7a363dfa31aa31f1c127fcf +b75fdf79b3d803b687c3babfeeac0291 b761d150bab0312976b719b3a48cb991 b76312fa0457c1f5fe83aec9371c299c b764c98ac87eef875113e726a8c15e49 @@ -41735,6 +46601,7 @@ b765ea251f92805a6487dd226e6b9453 b76617223a4efbde6e2f590df7e87b26 b768001e49b90a090d81851045a96aa6 b76836928bb6636df46d796282434843 +b76865ccd265ad4de0132f2915d1c267 b76b009efb46fe20bad875661ae3bbf5 b76c5ffc4c3958229b8c27ab2b6b8012 b76ca476a6f5ca19c483db7bb63204f6 @@ -41748,20 +46615,25 @@ b770fffc4bea5fcf9d43b6cdc01025dd b773bcf7a94c7b7bfb19f798b20a1ba7 b7740e0eec5cb75bf152731486b051f4 b7743b56f82b0faa54cb0e968ccc2f8f +b7744249e5ec13c95334cf98be55ad2c b774b773b4eb127015b1ced0edf87dd3 b77529ba410e1efcad163f1e4be78c2f +b7752a2df9b90c389709cc467ef9cff8 b77797575ac991f1d80710f103e0801c +b77888dce1a33af45d25e0b1cada978a b77946ac2083f3c95561964c7247095b b77a4f5cdf96bc3b5bda26a5afff91f1 b77a76cc9d6a94c77f99cc097bab2261 b77b6c4c66331e507b5922a8c675b4a7 b77daf32c1c93efa0ddb11fc97ad0b6d b77df26f2edfc7ff50f9e0611a140da1 +b77e37af08c5d6c5ed7c44f9042c890c b77ebf6a874332ff6a45c9b87f99e510 b77f2dad8383b3a66fd402e9c91b6200 b781a6ba7495313cbc23c6abf90912b9 b78483e7d273f544e39784b00562d0a0 b78490001873decd7006ffcee8b9a099 +b784a67754936a05d122c0272785ba71 b785b511b11a7f991fa371ab52febf68 b785d57855f0dabf498c02a8760fa19f b78732d8c96532ba15bda3c40f9765f0 @@ -41787,6 +46659,7 @@ b797da4d28e1c07c2f752b98a3f64257 b7981e743d4a87d5b74b6244cca2f609 b7984b3ba8f64ab3b5f89c4a430a72ae b798fe5f9c1099a4da5ac4b17edf0a38 +b799d1008b4f4f5cf7998b2702203391 b79a6ac26730ac5cf8dab58a32dbec69 b79b3cc34ecc8c93b61b54a519d790fb b79d4f91ea23a2ffd41b7c419e2ce3ad @@ -41798,6 +46671,7 @@ b7a1bfc7e42afe289d975e8bbe62dbaf b7a1eb4e100b019db1e970551a60f00f b7a2a3d08de9e783bebac5850d3f6574 b7a4068f5970c90a517e08e8a355c526 +b7a46e1754f80a4df623eca147d0a88d b7a6614063c540601a8e31b8240bc739 b7a71e4d72c1bad52270698c9761f5de b7a7711cc122d243853bb80499dfecc4 @@ -41805,6 +46679,7 @@ b7a904a481df8e33e338a42fae183b1a b7a9297d6ec263cd46a267b7801ec95d b7ab219558d2f13ea4a014a71049e2cc b7aed85ef3092ed610d259ea379695dd +b7affc229d21ede6bd91637d3c6fa542 b7b0711e44062453df9bc7bdab096848 b7b32645b47e8e48d0ea38ed49e12b07 b7b47a4042c3acc8963819611bab33d6 @@ -41818,10 +46693,14 @@ b7be3cfe4389246c903de038041d7b3a b7bf58e543dccd92343e9a389cbccb4a b7c043510b9865764dd8463d099366b2 b7c185f3a5afa9a5d056e72449d385fe +b7c1da8d378c3acfd0bc4b84da147c22 b7c4b78f62841070714c6d3707a32fe7 b7c4c4fdd98da015cacd78f81ac3435a b7c4ff13131ee171026af8717e3a7bc4 b7c6bd332f9652defb6f742121575cac +b7c76bd2915f6085b9885a5afa7ad467 +b7c7a68ddfb1530d7b925fcbec326978 +b7c87368c40f24e216b63937ea8cd7ba b7c87fb6a7d2a78646c8763638096ae6 b7c8e433fe95c13500b640e9ec39ba0b b7c9825387c611a832a145c8435b18a6 @@ -41834,6 +46713,7 @@ b7d2194dabadba6ff74f26a99e83897f b7d41a21fe9ec7ea35e315e6b1e3cde1 b7d536eb1b5591170fe621e793501d8b b7d5e369473a9f9c66e24e9cc6e82239 +b7d66c3d903f0a93cd2c99cac469fdc1 b7d7de092bb84d06ad7492b7bd634e37 b7d7eaf8210bf44ee5b055a2431f1a74 b7d93add6d5d52745d16a18b4339c0e9 @@ -41852,13 +46732,16 @@ b7e1114febdf0bb8b71318c84bca6d35 b7e4439c8508f51d511b0f22c2e4fdf4 b7e5a0ae4766394712125c86326f3204 b7e5e07e701bf9fcd8275e0eb16f70e1 +b7e67971c3c375a09f65ddea7a36d372 b7e6d180209de4ef34778e9831ea5ada b7e84922a0a2e466234e7c064401c042 b7e88b18fde4eb706f25e6de018e6daf +b7ea309bb980ccf584a64d42776ae0ca b7ec9bd24198e813f7319ea19d503d09 b7ee4b29e02600c8445a47b778aad9c2 b7ee97affcee8e22bea29210f9c878ff b7ef83d602a3a5db21cb16c88e83280e +b7f139b751dbad31f93b5cfaf3030e8c b7f1d443b6e30649451ac82f314f9ec0 b7f2bb74015f08d5c501842ed8ab3bf4 b7f48614c183cf1c2d1f1c6fccee2159 @@ -41866,6 +46749,7 @@ b7f4ce3a7c0dbdf737bd5ffaa62d28ec b7f5579be26a71146689dc45447d6109 b7f5d16c4f260c102572fa095c0e014b b7f6c13351322dbb1ad225154ddc163e +b7f72f5355d1d88df1aa610b6420a8ac b7f7b1c42128ee5330da892579a91e26 b7f7b6b76306a9fb35e8465dc0ea0cd1 b7f7fd8ad3fea5a56ee214a2855a8021 @@ -41876,19 +46760,24 @@ b7fe995c8d0e6b2a0734e75cf68de102 b7fef3da71d6f0bc314a1fb4c42bf0f3 b7ffe5501e109ebd77be5adf22dd37c2 b8009dfb47eb7ffaa09951b05a1b8712 +b800eefcf4acd59868f417bf4204cfdc b802a20dc32e763aadfd284d2b7a24f0 b803fa73890c296ae2383019306dc750 b804026df16058a3422a0cff090c7c67 b8050b50b157c35353dd739ac4978cd3 b806a0601c7e4c85f34f8c2426f793eb b806e82910039d30c9340f1d6845c5b6 +b80798a0bf030b75a990e786c33faf7c b80e86290899ee1a9b8776504ce51ee4 +b80f1fb3d6e52e96f0e3f88d4522c0b7 b80f2a2fa6aca91c6979be21adbe8f32 b8123a62c559b51814f47e46f0a2d1db b815b17eb39317c232e49c659c9b6d6a b815de8fe2e3a0076430075fc7d4dd70 b815e2cb479a67f3ab790d97cfe26a05 +b815eefc3071be79c4cf83f7209b479b b8168193cda0c59717dd2d289ae2d1fb +b816a98f05216b3cd1153a157c9bdf70 b816b97f57acc9a73356920a9a4682f3 b816dec10e8c78db386cdecd8dc6ae48 b8176443e18c8e61d3f1f442e9e51c78 @@ -41902,6 +46791,7 @@ b81d16e326168188c51be48602b8f48b b81dcba0273509e87c11dd7c4eadce53 b81f88beccb25b90b051bf6e4aa15464 b82095a70c1e02f465d205ce5840c424 +b822498cd61784218f78bbf8bce25c07 b8264e0ce162af0b298e4b76c2681e7d b826519e40b1b6f918ba89254137339b b82749ab5ccc4657e6fc1d4497a24d84 @@ -41930,11 +46820,13 @@ b849ff745277e02d9b1ef1559ca4fb29 b84ca71d7811d9d780a562adfe6ac207 b84e663dfaa78f3787aba3cfabcf1fbf b84f9c50aefe9e57e329e6408a51a3c4 +b8522f5fc56a256ed4aeaf1dfd97542c b854affc5b3758932f8a77a66602a66b b8550286d5a8093b4ccec9eb9c0b1b16 b85777bb33dae3dd21a469fea675ae34 b857d1a845b2a265c58bf9a0c9e993f8 b8581bb4fbe0afe9002d04ffb3015ed1 +b8599380cb42d23318df01655f0ae6cc b85bcb365e48aa1116f4312af3ef7215 b85c6178d82ae22952c39d44d6efdcb9 b85d061d1841183f488667437c04fc32 @@ -41944,6 +46836,7 @@ b85df63d5185312832854e603d204c29 b85e69d42e30da5277117d0be93ac1f0 b85f1771c3f68c24091dafd229f2773c b85f525d22aff9819bad54d133353f7a +b8606141c0ce47f001a211a562c4abbe b86191e9c5f313bd1379b87b7e8dcc74 b8627b54710ed2a25469d0e0e1e0a375 b86346cfd904ac9964df0493a0a8c610 @@ -41960,6 +46853,7 @@ b86c5336c805d24b7b4dc2a36ddeec22 b86c801b9ae81b5403cdd0a01034ad6a b86c8bbe672b01b92039f70d62d27175 b86cacfd98879c0ee58d7cebc6d7a147 +b86e09af481d4020f86fa0e9b1108794 b86e3956f98711673cd0861dadf0d792 b870fdd24ad2eddcc8bb5409682f6e5f b8739431f11fcdbb1e7246b87009552a @@ -41971,6 +46865,7 @@ b879c9397e40d4fe6e9a2f8fb111dbd7 b87cb56ab4945acdceeae33e5361732e b87d3d42efa93861f70a8a1e9c19f788 b87e748f75970438f767f5f01e5eef83 +b87eff567c5d82be9375bcf71f3776a6 b87f2a23986e5eff956664f114b78a37 b8804eeec3517952946fbbec16dd3333 b88081f08f8389616b708592637fbb13 @@ -41979,14 +46874,18 @@ b88284c6b210137eee2a59879869b7e8 b885a525377c8f60dda8cfddc830b106 b886776d1670cedba8056ebb074ef68d b886dc8861690ef6a8249bd2eedfc838 +b88819b3ba62d7a4460c84cc337e7f87 b88832f6ef3fd387becc48e0dfa98935 +b88b86596292038ec790d0a0dcab69e8 b88c4633f0cfe47738f1a87fb81b88be b88c897503d163a6a5a69a0ce312d628 b88cc8a53b0c3fdc8ae7f4ae4428a3f8 +b88daa01b2ae258014e6d5f12633f78d b88e5bd71f1325244fa9e3bab8dceeff b88f54fd0de7302ce1679531888351a8 b88f94b40c10e1c449b5584d1b660351 b88fc60adfb3b490b27944113f00c6be +b8926f50dbb92bd837d29e0c329e6ccc b892b4e7fe0a0aa42a044ea209e89e42 b89463fdb9deaa333c35313a31c97ebd b894b3668b85d402c86874a2584ed469 @@ -42010,15 +46909,19 @@ b8a4677fc066c8852a892e56a571d06c b8a4caf5e5d604650255502cf6cf55f2 b8a591a48b48be2e5a9335846ea02130 b8a5ca58a6bd24acd64503a5bf054cd2 +b8a66edbf1e4d7e7b15bf062d6834ae2 +b8a746ff022cc51604ac61b0667bc533 b8a7d094b15c03f7896c96a6f40cb710 b8a7e14b956f3e0f7d6b0f97a504abcb b8a8ae4d79ce4f94a29b920c58ef06b9 b8a8d450c71d79a44f7dd449744ba846 b8a93fbafb984491cd7bc149ef820c16 b8aa68d535490db586cb32dc05b82af3 +b8ab013b104d768fe1c2634df7e7d578 b8abb2138a471eeb20215aa7ba7948fd b8ae1bebd23317456611d102eb25688b b8b02cda97f7609d5ca3aa85eb4e1e30 +b8b1107d51ddc70fdcf78cef990f0b12 b8b21c95488a0c98c17b9a0533a5ee14 b8b24993085935d831c2c197b5355284 b8b41dd7a20834bad48b3971a8b1aff5 @@ -42030,6 +46933,7 @@ b8bae3af2af4b35644fa5ed295a055d9 b8bbc8726a00a498bcf5748885a34fde b8bc594c50a06066b2e7042c3915e325 b8bcc42578b54f5b4cacb02e837647d9 +b8be1e5c1f8db00da0b8cdad0ad7d69c b8be68d787ed8e859cec4a72287c7ac9 b8bf24473f17b3e835f604da1e9b0b3c b8bf3c2dedce91e8d81e0a7f581a207b @@ -42044,14 +46948,17 @@ b8ca52cf07eccd108bda5e79368dc750 b8cb7a9fdc7eaddaf43112f5840705f5 b8cd7f57f9b52fe90ac4be0c8fe3cc64 b8cdadf78e717dc336f244ed733b53ad +b8cdcd06b1311d456ddbc580afaf59ab b8d00d65870ed4d2bd9f765097fd4029 b8d01dadd06bef59bfd619d1d67dd9a2 b8d0dee04decc668a24163aee079ef51 +b8d20f6243b9e6e8776cc51d033b5b92 b8d2b77d4e41e02d46eff9ebb663607b b8d48a68e732a2aa6fe4c704d7708ad8 b8d5cda5d50bd4126ef23e73f7df4d1e b8d613705e3ea918fd6c112c1c3f2e8b b8d6e93cb3570bbc338a442c5579fa73 +b8d73a92c104fca445dd012b66ffd94d b8d73e600d38a8f3f1cb664d949277ab b8d77974b93beb854f48aa4eef984e22 b8d79acfb53d58d7b18b617571b903dc @@ -42062,6 +46969,7 @@ b8dbe8fa3f8d9a295881f60ac6d83646 b8dd05c9a7d8c6c7657c5b1d14b203c3 b8dd0bcfe56a7750fbaf00881ccb3d1f b8dd35f14f4621552021f93307423480 +b8ddcd00362f2afd36a2104211b6f41b b8ddff5aff691082a7ea761a608f2b75 b8de7bb2b6516b50c0418b186993f3fe b8e4bc22d65b021f1ac9c0e711c4dbe7 @@ -42077,6 +46985,7 @@ b8e88962892d7d4067d74bc1a407740e b8e9f2a9d65616a880975ee59dc4f128 b8eab2ee2367ba66b4dbd4acd1033278 b8eb4404f413b836b4486b397bf42c82 +b8ecaab1a94f516c0f374dad736eb6c2 b8ecc110a5a4e068c43c244961e90c10 b8ecfb5f5aed2d30aa21a7a81b06b05d b8ed08d19552d744038906a246b4b5d5 @@ -42097,6 +47006,7 @@ b8ff6329c56b90749f215b0fc7aa7ac2 b904771d70bbe84ba9d63448004f765d b90518e80ced0ea79e72b6ea53ddfe75 b90623c2af7e48cb3664446d89321244 +b9069a675f52c8706c78504cd98b8cdc b90a423f93383e86daf778ead0765d86 b90acc85bde3a5fb5acd30b7bf44ec3d b90d8b47933f866ef2d76f7e73b3af24 @@ -42121,6 +47031,7 @@ b926e88193c5beb17b1d1520f43b889a b9273bb950f7fa0fcbe7f31aeb546d2e b928b6f8e60baa7c30057313d3449473 b92a16831455545c01159d3e44e800a5 +b92b353e55d84c1e97706d0d44a3266e b92bfe1ea01a7967af87a8ecbe0bd6d1 b92e6a2d10b7090e7b1cb41a6001cd6f b92edf765275522e327083f34847700e @@ -42128,9 +47039,11 @@ b92fc7174315e6e25494716e3fa3df2a b930c5a0a48aade4076ab6c4148b0924 b931f7445585d4ab423674eda85c87d5 b93267194bca9b8978dc27294a932577 +b9335ac085d3a170de5859a41be803bf b935a1129197b2df2c8677a5c9806feb b93620dd3a3792e7ad532079b044ff8b b93664b56741a32606e8fecfddb5aa93 +b93850a50fce164ea2a397dd4dec0dc1 b938c0cce1a867f61beb9c62ae3580df b938f390f0fd76730d0b3f10f1169163 b93966e655a965c004f091722375672c @@ -42139,6 +47052,7 @@ b93c36c82a5600f67e6fee582a9ca193 b93dd2b285b62aaad89b404c56816781 b93de27eeac524adf3cadfc71f97c20c b93fc927ac5578fe966dda4a8e92d775 +b9419520dc39c30e7faa5cfa5cb6b77d b9423e16fa1c0392da8ffc2c60dd0a7b b942b4ee8444cec8a1ff850666de3873 b9432bcdc09574f4386b32a3d9d8e460 @@ -42151,6 +47065,7 @@ b9475d9b9b9b0d839a89882a2d7ad13c b947ce49975fedacd13e001d1cd657c2 b94995f1caf268a9acdd5d6b70d12eb1 b94ae1e3c15c953eda3b24d812a07e38 +b94bd16091fb38567f220ff34f6188b6 b94c82a2b158b8d2b8dae377ce107826 b94e75e8cc27742b0869b43cf20fd674 b94f8e08d217a38d5b6e1540b0536569 @@ -42165,6 +47080,7 @@ b956f44791c80d2ab33c4bbc06eb806f b9575c1ea7c6b33928725ce5202f0ab0 b958a58f6e8842039fabf2ecf4928143 b95a161718ff36c727a7f85c86fcb7a1 +b95ab91940f645ed1095b8ecbc74e2ef b95bdc61c8761bb7cf94bb43931d51e8 b95caeb4e6181914706330c20d7aa792 b95d0d06f59a47cb634aa42a9d808ef9 @@ -42175,17 +47091,23 @@ b961f59eda4ace361d619181dc77eb63 b9634b249258f434501a78c34dc8b20c b96887429e3a73020859ce4b5fed228e b96af1f1817b54dd8bda91c8d221b582 +b96b233bca3089096eb077d68b67fdfc b96b6b5bf2f170560895d232279a6ead +b96cf77b983a4203f91bc0e8c5b9f668 b96e3d0d231d0d1091ea3ef7e746dd89 +b9701e307868f1e6351ec05668a127e6 b9718e01ec2c7e04f188c59a44e0b856 b972afc586c924a88a7ccee4465046d5 b9737b603a5a6aefdbe5265ec88f021c b974cf5bb773e97c606f9a7a28cf2b99 +b975bc36ed2b85255981603ae7b481ff +b976e831ff9f2d0b644b845a0057cad7 b97720f039a2eb99ce6ef2666c8290f7 b97832e08ff0336f320dc7bed4d54c20 b9785e6b87f36e1e5527ea8d7af8c709 b97882a643a793d96dfce3c11bb9e9b4 b97ceda79d953caddf3be345ad9c15b8 +b97d22e83248631f0369bca3809bebe9 b980bc08567b376b088ec5ca1e3e7d98 b980ffd694ebdd242391d014a323115b b981d1c6c52e0f018bba4f196940fa35 @@ -42193,6 +47115,7 @@ b9822ff5ab34fe5d56cae94950bbd4cb b9830602bf0f3879c44e0ba8cd5ff84c b983a9d2258aec4567a02195c2b63015 b983c7fdc34b28c1ca2ea8dbf8f1063a +b984ab56d81f9e73b1f826c463bca6c9 b98534c22fbb64644b0243ea6591b2b9 b98778e7f2390f3c8a7b36df23fcfa84 b987c93d11bd93651cdf2139b5ed6c9b @@ -42204,7 +47127,9 @@ b98d2ad4407f378ab8ee4a5e5ea80d8c b991acc72a217a92dec931e52a32551e b99369ac8f828d8d6521334f760736ce b993e3fc2ae12b3f3e77b65c7784b726 +b994c669038c0621c04d6ff5d1daf397 b9978d7b7b5f6603fa23bffd862eec24 +b9979b1950fb33e834f055d47759563c b99ce9cb2fb683cea01835b93a2596eb b99ebb5979f1900163945c5b7db09e45 b99fa57d7e1f71529ea6750ff3b76840 @@ -42229,6 +47154,7 @@ b9b5087eed07e760ec53571fb354ab2f b9b56f8b413caa5a0154f0a7447ccfb6 b9b5b2f41b355b7fe75fb5497046b170 b9b773257e0dbf83886a0e5f7c3f9a4b +b9b830db542679a27beaf5922054cacf b9b9bba74835890e6be2b8d10edf03af b9b9c7efca37ccc6d8f3a00a0f236a01 b9bd70e284580747682b4eb153e60d95 @@ -42239,6 +47165,7 @@ b9cbc344d109e2f1c3fd93dca296707e b9cbfdc4742c2b75cb499d22e1a54920 b9cc3ac275011aa259b067fcdf315fbf b9cc61b864b6c2875fe9fb2665c40b63 +b9cd5913614f7fb75cd22fcb293c922b b9ce4aa2ac8ee309c69eb5b841dd2ee8 b9cff1e25d384ae556f985151b6da9ca b9d08daf77b8bdcf5c9fa32fa5a36e73 @@ -42261,6 +47188,7 @@ b9decef584318f0cba481ec0af6b6bfe b9dfe6e5c4963e5e5f3b461dc25de552 b9e09349ba1fc07e91bbd14334158b2f b9e185d0cb68f3750a6de8b0867b4690 +b9e37dafa5fb9fda75193f432656da7c b9e46a99723d1b1d0b11a0f5f3945656 b9e6ba9355f626720ab16c7cc8fe7ea2 b9e804caf37204525249af4adbcc5709 @@ -42271,6 +47199,7 @@ b9ee513a8297af9d5489c3c0ddd7ec49 b9eff3df0c04dc428572f21a8ada9900 b9f01b99182abbd9a6fcdd3d6706f312 b9f0ae55fa1685c025dcc7e06ba8d9f8 +b9f15dd20d04e6f47a6d92e2778d71b0 b9f456201cf46155a5a92d96dd2690a9 b9f5b5a853c4d3f2a5dea251fe24688a b9f6f4a2e44cc5a8e86854f2997c544c @@ -42278,15 +47207,18 @@ b9f77d2638f97e1ad36c5033b81090ad b9f90dd52fb356c61ea4fe46902d47af b9f9adb33cad6f593900306e5ec6818c b9fc2d95e4216424102aed15cdacad27 +b9fd038ce40e32ec1634f2dff603c286 b9fd827d79d5478bcd69c4c417a695a9 b9fe4828fa9f4a501d38ff702ea18ee0 b9fea3b009496d1e8609ca86269d1c84 b9ff6842cda7c92286c06c2ecde8c3ed ba00eefa71ba4cb3ebe4e7c066b88444 +ba011fa7ebdce6811cfd5087a1bda1a2 ba01e2d0801cef0f147dfc2907c65e9d ba0273f3a01c74387eef4191ead1fa8f ba03f1c711db9ed585012ce142190763 ba08b29c3b0a89497195e6c5f47c20cf +ba09fc888a95a5c0de5a561a66953b81 ba0a2c268ba2bb9de422a8a0792e8b8d ba0a34d86108613ff0647813222b879c ba0b4b7f6c375b6e9b6e95208bff1579 @@ -42296,6 +47228,7 @@ ba119723b31fb8467d98c87652560040 ba12edb220cc509ecd4b8721c3cf32d1 ba1309b10fde076fd9ad762b30272e5a ba154eb8c94d406bacdcd65b4f2a698c +ba15ad992464cb17c786bbca1b153df0 ba15bb2568586292b0b88c84df1f69cf ba177bc81e2c8da7e9600ac92fca7531 ba17dbde1e603ac45ce6130c43774b75 @@ -42308,18 +47241,21 @@ ba206e6574451e6a538868d74afed938 ba219ca9fc072219b42151075d1f3f1b ba230dd625be0b383284b433e20b3066 ba231d1fb5df3012d746689133141c3a +ba239384ed32e607ca6ab7d10c3717db ba24573854362959d2c33a49fcd7be37 ba245c4d0f741f40fea14ff42ad75f34 ba26bc129622c19f15f7cab452ecd98c ba2a83bc3abb6a18dcd8122f36590d40 ba2b97d661158b006fc88924776a8f48 ba2cd9efb34a17e872e7be5823d01cb7 +ba2e185620f5b87d28428195c5509117 ba2e5fa862d7ff83e78b50f6dcc3f8d3 ba318381dbb4a430441e342da82c1e20 ba334b7573f8ad1be92514285f99033d ba36b624f9bb180e954381de7abdeaab ba3825a9df32e5d029c597082083d056 ba396cd4fcd2548f2d737ab710c8089c +ba39d90a61a16ea2f0321c04aa4d72bd ba3a1f7c16a020cdb8238af301b519a2 ba3aad7c416e9ccd1f42a3aadf9dc06f ba3b9b0670676a96658c1bddbc3d5e87 @@ -42351,11 +47287,13 @@ ba57fbe04178bc1791795c2feaae2740 ba5862cc9c74c8bd2ac65fede6c882bf ba5896d1e66a080a2258b6a61d3fed38 ba591c9ef431b74705e04f58a2d3e91b +ba59b4b30a2bf3f18eeafe936d2c5a3f ba5c2279911a0418e970059a88414b08 ba5cd9c8c6d317459f53456ce51d63b3 ba5deda920d853a4324c6ac53215f19b ba5e6da597b8fdf217eb3dd87d997732 ba5e842e5d19ca31b0cbe1ed478d1742 +ba5ec35103a798fb83ce6d8070af46e0 ba60d2e737d7f4a25da57f095079ff24 ba620755a3bce36d1057a888677f228c ba63197fa0603efadc50d46ff182b0ba @@ -42366,6 +47304,7 @@ ba64af3bb24b42b0a072f1bcd3bdd262 ba6501fa89e00888934512c7bf279963 ba6515873a161e3988d071a6295d9992 ba660b30030bb5687762229606c2e69e +ba6646b34358f3ba53a8b54cbe14e2de ba6718e4dd252ac9dad487b6bc894218 ba67d52da2f5b83625b2a313444de95b ba67d87ed70d385d2250b8be871f8ff6 @@ -42387,15 +47326,22 @@ ba72a15bccfe4cbac687b82dcfa49d2e ba7385ed2c40a618cd024b14668d71d8 ba7460a5aa8745bdfcd668577f4598f7 ba74815a29d7c205045056a78c8cdbae +ba769edf91b2bc1aa701addfdc8edaef ba77188888946b768099e57ec025a61b +ba7735abcc4b7698932e504ade4cd1dd ba78b4f758112e2defae1a3475586a83 ba798215fed31ec3da482a91de1b3445 ba79a6caffc5117e8f3196eb7ff48ef7 +ba79a6f76df260b7a0056bb03648e038 ba7bda021b15d13b5e06b78d83fd7740 ba7cd5e3561851d5bd4f7b60eed78d80 ba7ce148e9bb53c15a281da483bc1332 +ba7d211ad7dcb98cf381049a0c56dc92 ba7d8efe795c88bd955de995665044ce ba7dcffbd266bcfb571d2d404d7f0366 +ba7dd662f8db3b02b6ff38b75eb4e2eb +ba80a80b89dd7c1018673fdb92d5423f +ba822371a33d6b210d9ef944e95400da ba830176431acd854dfffe086756f04f ba83371fd0dccfc018ade5f92bac2600 ba83712518833dbc38720d1083e32bf1 @@ -42471,6 +47417,7 @@ bac6a646548adab20e5ccee7fc5773fd bac6f9cdfda4772171acef2253a44991 bac7cd21ecae31f25cf2c7bd9652cf57 bac939df942fa2943dbf00a9953449ec +bac98218abb948c537398e068ef01683 bac9d89279954004a8cd76676d4883e4 bacc19576f2a5a4b272e357b698f6de5 bad16a6f3b694fcdeeeb6698f4c8eaa5 @@ -42485,6 +47432,7 @@ bad7d1725713015c7dfdf110e0a19851 bad907a546dc22ac816f8ab29c1b6742 badb89863438fb6dc644b66cacd12cdb badd40a9cbd5ee5adaecde6f12e191d4 +badde3342635c821e14f50f189de0e34 badef4f7aaad327b46a3153471976476 badef9b2092f502429e9423e7301dbc5 bae04d7d512e3c04351b01cc363404c6 @@ -42534,6 +47482,7 @@ bb0ae8c5760153518a3e4afa05da9a5b bb0d5fd4d3641a1d664e1aafde8a2d00 bb0f1d2fcc22a9613907f616a0fd8993 bb0f836b245a266c4fa163b7ceaf106c +bb0fec2a210849aa516188d91bd66c10 bb1073e32af7e4d9e28938651403a04a bb1077b5f21f017069650d9faa52187d bb13282514f398a8395c5ba6aefb5547 @@ -42560,12 +47509,14 @@ bb268d53b2836de1d1b4d5c704ba0421 bb2810b92b3460c41f279223bf8221c0 bb28bbad778e97e8ac3ef25079d20eeb bb29dbd43af864dae0321ea2265aa187 +bb29ecf8112b141a60f14126d2d8c4dd bb2a2c89d1981714886d53b31ac7a595 bb2ae97c375b9a69ae8e170751a6bd47 bb2b94b48ca8fcb1806590687828df82 bb2c9db5f03126c9b830d54e77114b48 bb2de530f32d673bae89a7d10b145630 bb2e0c0ba15ea62784803f5c73c5e1ba +bb2f83d51bd61eaddfddd5346d3b5ed4 bb31565ce1a1738395823354cf690251 bb33bdf5b80f9598663bf544288b60d3 bb36ca77dc10bf1def2a9967029cfa87 @@ -42600,9 +47551,11 @@ bb4e03a261ef1667bf8bc266ea866e41 bb4e08fc40328e4809c248109ac08ba5 bb501aff29bc405007d5701863506a10 bb5089b6aebedbe92f64f0d67480bacb +bb5272eadd5a041be17bc07717369fb7 bb531a2a3140e7e134095642e2504530 bb5344eb9fca45b515e554d16a386f1a bb53b417f2bbfabfacf708b36a5d742d +bb568e78655ddbf939f5fc2b6901e9eb bb57a43a5789bf0a1149c552cb65eb9c bb5a3c15731d68df3a415c1f4fa8944d bb5acce68a9bb3d35899a8f9f0e14d14 @@ -42631,6 +47584,7 @@ bb737e19387de013adbf58af9b28bf26 bb73d129453941cdc66ca5b9df2c4c19 bb75146037b529f0e1d924e9cffc5379 bb75c2b85d9fbb5e810bb001f6db781c +bb76263a108881f423b893330fa392b1 bb7708288554cf3ee6bd735c75cace24 bb7761bbd57ce4142d6070be3f16d413 bb777d407dd50cc34e7d72c306902b2f @@ -42643,6 +47597,7 @@ bb7a82148c0b6a58adb5638a50bca3bc bb7b1140c831f174ccffacec0336a53a bb7bd68d9e1c15cbd4fc667b14212ed8 bb7c3402d06be2b25b1cb9d10721a1b7 +bb7ca53c78f430fb8ba956a1793cec8e bb7d5a0aec8593668b2129ffa5738131 bb7f4facc74f58abc3ce612792024308 bb7fcf6c4b114960666a44017eb2f472 @@ -42675,6 +47630,7 @@ bba5cf2e249312ef9bb28803f387efe5 bba7a5ded36653bcabf8f0d6c0dc1e25 bba815e59950bfd008eff53dcdb309c6 bbaa9e9317700954139b69c6a1438ba7 +bbab434d15187a497019f4f4baff0135 bbad6bcd8c8848cf3ab4111cfb73a0cd bbae6dc0d7cee056babf5ed6d4af6e9d bbaea666b4cad7f03de2f4f3f63beac3 @@ -42683,6 +47639,7 @@ bbb08222ae7b53257c40b4f543521f29 bbb2ce436ae8f04d474009ed177addca bbb3654c70d0b2a2427c7ca9679405d1 bbb447e22e6f39eab1695d455f6e4095 +bbb69cff76c1a7a9d33a1eee51fa2d74 bbb6a57cf903d9cb37094f8ed005e71f bbb6ff088850f0c52b41984f0583e73d bbb705fb0025f18dfd7142816b5ef639 @@ -42692,17 +47649,22 @@ bbb96cbf838a2aafc7a5cac94ef08568 bbb9bff8218de24f9096f56e801da001 bbbaa1a974f14598dc6a28415e97a984 bbbc90920c54adc8c9f2316f464f1e54 +bbbc90eb6abddaeeb302d8d64efb4cf4 bbbf764e345a83cbdd382b04203abf98 bbc1985c34381d451f6903df38db4d57 +bbc1b31c819d9b840f0af613db9afdb6 bbc3a0875ac267ff4db7236f86151556 bbc3d5e225b0bce788192ddf93f80b0b bbc42af297124828d6ad2bc7aeb0fb89 bbc648317a6bbf9e955a1047a08490b2 bbc6fb96b7a883aa73ddf4abfa08d617 +bbc86a3227fa0ad19b31c5dd9212fc00 bbca16c458d67283b30e7341b8c6a29e +bbcb5e0d47566f4ed56f6a41b8ce20a5 bbce75e64faf84b15a0352d98762316c bbceb443078694c4d171ee5939545662 bbcf08fd98935328c7ad792cce85534d +bbcf14ff081fdaaa9c863313cfc1a369 bbd3e91cb991018db086e2a90985d642 bbd4a4560f6c6b1a9127df10936ecc48 bbd4f0a69a9ffde189961dcaae055254 @@ -42712,17 +47674,21 @@ bbd6cf687878ef8cc60f5c9b0acb1a37 bbd6f08b0053d535d745a92be45333f5 bbd82df26dddb2296c299db2eb827823 bbd90f3034de7ac81dc674bd4bfb30e1 +bbd949eb369e8bbb1d0374813f13cd9f bbda51cf8c13a8a58825f4178d0b97ed bbdb43306e05d71c70fc6b7ca4ff142c bbdd4e43d5224b15f8460639e8b097fa bbe0c7398a803171cabbcc3e428ed1b7 bbe183677fb87f3b830a0124d9d6cd19 +bbe307fb3b35154f619708b97aae7919 bbe31d2e48ddf6b4ac3a2894a3ebe41a bbe3cb3cd38bc96714365a4f25f9d553 bbe426d1965da6639dc111f22b79228b bbe490c407848f23d7ac1466b7a2ced6 bbe4a8d37ee5292317399fc5085ad3c9 +bbe6c9eb7e1822efc43dfa31ed410560 bbe7c1d3334a0256893702be5d97646f +bbe8cc99262137ed494bb5237ac7fc98 bbe8cfe1b69032cfb9a135843427af0c bbe946778cd33fc93bf0f7842e2e16d3 bbe9cffa7d3170df27abb89d6060ff6a @@ -42753,18 +47719,22 @@ bc0051b6d81246631aa693d89261bb00 bc00da8583417fbd4d0067fb1111e602 bc011f4dd17349a7709fc347f9b9a11d bc0169cd2cca2de2d4c0d6ca5ce6586e +bc02199815efa5b83ad8867b7b0c1c5a bc0245792df9a0f86f8733f3d10c0429 bc02c2147e72b6c39d4518c092edec0a bc04b8253c25d620ecc83c3e8b2cc8f0 bc05c2206696abd616809a50f926c3ee bc05dfc6e58e687ca779cb03cb7e77ab bc063efe302878d951a8319372f3306c +bc07b0bf7e6b554dc4eb4d5b995fc512 bc0fd72986b9f9951bbd56756d67c4be bc11a75de3f70947cc6b87f8d2d5c040 bc13ae59118e1e5bf67620dccc74306a +bc1417c013bca83d94d5fd34a7e907d0 bc14def8905e6db3cea7955bf48ffe59 bc15cde149a08504e821398c058a0235 bc172569bcc96ef42ab2a54e8d1971ef +bc178d7e8998d5ce16949b7e5582f3db bc19c25288b3ed414759533d6d11ac32 bc1a73afbd65e3ba6119b9f36123596e bc1b00dedf235c8c3c72d5ec97a40a02 @@ -42777,9 +47747,12 @@ bc274898bb463d176752b204195f4841 bc291159382cf5ef48d6691ce7a25138 bc29306185c9f61ee1869affc9c8cb7c bc29db5b95e4ecc77863a129eb6e6afb +bc2dc89b9ef1a7dd2dfff488bba715b8 +bc2e1e94f5ea69a7d0b0f26111263f62 bc2f6e84da9a95626f584f54d170d8f1 bc30525c7107e0904cb32483771117df bc3087608aa67e29dcf5fa4396567ea0 +bc3108a84b3aac2eeeee4e6a25c24e56 bc3147c245dfd0b3b99c0c3735bde0ec bc31fb0486eea6aa5e894569e574a1f4 bc3497b0dee58f7462426379e8d62a0c @@ -42792,12 +47765,14 @@ bc381f30b337d4977b0f177ddaf27553 bc38ad7396bc25e7f7a99b6a019cda2a bc39d33fb044c4266faa1593f505c945 bc3af35317d9f43f2d1f615e30ec2ecf +bc3c7c8adfa9bc67c92711449285ad94 bc3e73395fcca5710f68ea0f422e5557 bc3fb11e5e5b8034e917587b28ddf8fe bc3fc14b9409a63c377c50c265f30631 bc400d98e930abf30e05a79733e90c54 bc418e54a962c977e54e77ea1e9d3215 bc41ca230fe8cd245181c1b4a29e7742 +bc42127bd5c28fa17a4dca1cfac1b005 bc423c5ff00a0e5a33ffc26adc237a64 bc4257849a52abfce2a2b1cb94214533 bc431926bad6bf15aca7ed952e9012f0 @@ -42833,17 +47808,22 @@ bc64f5040720402bc72b11ac325ff824 bc6690341c3f31633f2867b63650d3e5 bc689dac49efe14e37c91e616dd39a19 bc6a611a775217d8af8adb1829e9a4bc +bc6aa2ef545b1a09cbad71d145d430e7 bc6b3662788abaad227e9fe887e8be02 bc6b8ea959a88b9f9d3345860198313d bc6d1decf7b0cfb40a92612e11c2a419 bc6da75bf532a7b985f7ce6c05e8ec9c bc6db321d53c6452c475de5efa6d121b bc6e49690876359a2e9e034b4289bbe6 +bc6e8b36a8cc92292a9efcebcec0ca40 bc70672e96d6ac79c5346602d7bca436 bc710877ae9341c74e311829fb73d9b6 +bc71c5d67615e1fa15e0ce544490db17 bc7251ebb5a208b4834c2e5cc68dd173 bc7344ae130983a1b0be46100d7664e8 +bc73bfa214b809ff9a83aed35caada9c bc73d19e5d98d2421fc2eaaa7c9b5f04 +bc7462de724c73686fd77e65c40a0865 bc746fdfaa18673638c73f1e7d0d5ba8 bc748e69459fcc7a4c8d4cbebcf369da bc74f9cf03419c3a3702bad88fcacb75 @@ -42853,11 +47833,15 @@ bc77cf9b9edf15c62b9fcf5febfe9f80 bc78d1f8ce74979bcca44911bf3b7138 bc794defbd28df856c429251ac6b5dad bc7b09c1d08993d0b178248a42e90d8a +bc7b3f1f79729b7014d583cdccc64e9a bc7c0b8575762cd98868b4f4da62c4cf +bc7ce8bb3b34e274df5009f6ec23258a bc7d012b047bc9114933ea297329b6ef bc7d388307b72cca066ca8ef7f4c5215 +bc7d6f9747e684e77db9bb62322beb14 bc7de8289d0c441f8512059c671a2d20 bc7f210eecfa5304719f334104219fb1 +bc801e63c3a1c9114c5d2f218fba6426 bc81074749b22fc9e674d414c6b2ab98 bc82bc2356851b821e2176301faa5623 bc84b645b9c5f780952a143d8b3f2cab @@ -42869,11 +47853,13 @@ bc8be96a95ea9a0507ed04271a1c1a00 bc8c59d679de2e0ce93594f669bc6c38 bc8da576d737658d5283f3a0c385b5d1 bc8dcc3a0b3c356b62272aa5be1b7350 +bc8ebe4a94a730416c74ff991f1a236a bc8edf1d260605d97e8632d3c0b341f2 bc8f3287fef31065c73134eed1f1554e bc8f78ad91b161b39c86e7f60ec1ce70 bc8f8ddb1fd5d3e56984f5355b390db4 bc907e0b00358a2b930d09df3e42b838 +bc90df5b381a88cf711eeb513bc87a15 bc925aec35475c1ccb1618f5740d5050 bc936b40362217cd3b9c0dc581378390 bc94b87012f4acf499a04b81fc9c0c16 @@ -42882,6 +47868,7 @@ bc95a4ef8533a22135a789621aa958ff bc969fcabd8efa5607d0a9f2c47b6c04 bc96a4e1f3f5ef1d6889ed63da75ea58 bc96fb1dcba5fbd0653371d9c7eb4f08 +bc97f334709a91140f42648f73208602 bc98ca57d780ef724fe4423d47b9b8c3 bc98fb9045921d5bc386d5decbb32e4e bc9c5594b18de4f32ec8a34fea01d7f5 @@ -42893,6 +47880,7 @@ bca14e10c3ec8953d50795b1b648977f bca15de24afc67482725cfda309d4cb6 bca197e88d3bf54377f7eb87c5892a54 bca2317c77203b46a4300cc546df1429 +bca2ad47c0809146b8923090f465c8d4 bca2d9e34be6fdb4c1784bd69fe8fb3a bca49bc03199263e54ab8b6a074f9472 bca54e30e670df638ac255e4adf06298 @@ -42904,6 +47892,8 @@ bca6be4661a0d63e11bb04f6c8514229 bca7172c4b87e931db8c637c9dc65418 bca735bac700e6435e8db132a5e32fd2 bca8e7d928a50e9d9b17c02509afc762 +bcaaa009f831de8896ca8345f159e6f8 +bcac3b190c5441b0ef9535d360329a49 bcae57c9fd3ffd24c70752ee0017806a bcaf015da5dd0b7eb4a79be754314a51 bcaf513b6d06d25055be70a130d0a575 @@ -42929,9 +47919,11 @@ bcc5908bfcab60757fbb0ca5e26bdc10 bcc6f34f46b22cb455739491317813cc bccac029adc409a9bf50990436c7146d bccb0a8d7b6a9ef904d9a9661602b77e +bccc0649fc701994194e227fc8c9a69f bccfdff9365853328320b0e7a480b453 bcd289916c93b853642eb3634df7842f bcd4022d27045002f4436997e31e636a +bcd54a73f50f82d2228e04b99a67d2bd bcd729a6732c842bc9e784198b5237ee bcd747730dc6b2dabfbb1b43d9508a01 bcd8f3cc35d7226d087255de8188264f @@ -42944,11 +47936,14 @@ bce06436714cc8aee4e9fbffdf7b0ed0 bce09bcfe85b51f45ae667831cdc1491 bce0f80f92e6a1d680bd5e6513510902 bce10189e01555910e6403b51ab3e9a4 +bce13c75ec28277c29bcb43d69187f01 bce194e685b18c48e8f57480bedd0346 bce304b263f944ab86b0902c45494fee +bce3b3e53a34cb48a8313bde375c25d9 bce4b34780c1656e28c3d7ee5e3adfc0 bce551806f6a3f054c88655fa82b189b bce60a6a1a311f0a2758be81ef641894 +bce65a0aa2a19cc31d8c7402b06c6c19 bce84b93e1fc910c4ca11a5c4536c16c bce88220ce02f17c9c0a5910c03ba297 bce8fcfcc12af0c1b2a30a42e95c8fa6 @@ -42959,10 +47954,12 @@ bcee84e0187b8f63ea35d4b42fe13c6a bcefd169b74bc275b69569e422eb8662 bcf05a495cbbebaa1a1f839c85decd6b bcf0f86a15eb3ba39600de26729dad85 +bcf2f99e17f9157c63f251f86c9e869d bcf3a54e9e1d490cf8a23b41ddcb420c bcf4353c3b7bee17a60406946789648d bcf436404a7a7e1fdf2628eb8bdd9241 bcf491700f138a99d6c7e9a90e0ac427 +bcf58b7fd37fca3edee8f49827644326 bcf6d2200b185847acd4d1d0589f75dc bcf78c99583165301f2129ff4475c890 bcf7de38d5053f0be7a8ccab395e5e0e @@ -42970,35 +47967,45 @@ bcf801558e1d56a1f5adaee1f8e874af bcf95e6ed8d6cb15d6ba8eac04713467 bcf9f48825954365e817b12ee48fefc0 bcfb4ad6c218ecf5a0d24f291a147e0a +bcfd8eacb98976a588ae31443711ae5c bcfdb3b8f2d57ada50120eeeb6191759 +bcfe4e25163844d0c70822b12014d700 bcfe68c749003165b3125bd471fee980 +bcfeecc004b30ed8c2a8aa2818880813 bd020787371a705664132c7c627c7870 bd020e394bc75b6ca162d0884f02d342 bd02dcce2334ea6b237944c4fc8f5b1c bd04eae23dfca483c8be031e27c71da2 bd066c8789ec2a892aa93bf9b9ca30e5 bd09802057f5b87d246a8ae6ef62ece0 +bd0c284da8e07a1a0c9d329d5a879d71 +bd0e12dc7d1512a92f92d6cfaade41eb bd106277a17b68339711b18d6cf02a21 bd122906abb4bc71302f03c64f5f0d51 bd12afde5303ac876587643ba77d18bf bd1387c9e2469505b2c845ee44ef8b6d +bd1422ff71306163ffd94808e09d48bd bd14b59dd5b36bf20d5dc8197bc750c0 bd167e272290e9251c4a4b21c47bb4d4 bd190ede9175ee6d5c335f52fec2ae54 bd19e79efaf51bb9f729a8f88c98a0f7 bd19e937cd1503eab420bc6abca20064 +bd1a492c03455a78efda2180e63941cf +bd1b38687517f456681955de10557a6e bd1c874e328f61d5943422ad4b024f6e bd1e626e655f44112c014210e5c2cf4c bd1f83d36d85d86c81ccf31be7bcc4ff bd225f3367d5f4ba42490bfb7fabc2ac bd22a0d5d731211f1a6c4bc402ad486c bd2351e03f57c6c2507455a09ce79ae7 +bd23f395428eee9c01808312a66db69d bd2641d80c0829516bec0d91c724901e bd282af9edf74b256b469daee91082a0 bd290aa62f7e3adb59b5cc4c2bd7c8ed bd2a0eb73280e6853adb2449273c857c bd2abb09ab8ccf331907e586019f197c bd2c67357f39d770faaf7ec249a17bd2 +bd31fddcefc9d6df66644f4d68074109 bd3375174cbd77f55f4f01f4735bc875 bd34eaa0f4fd1f4ad38fa9cd3aba70c6 bd34f047454d4e47aa483587be990805 @@ -43030,6 +48037,7 @@ bd5011bd6f472bba1de719acc297b8c6 bd528cb4e6289e4dd91ed96eed545911 bd551c12756021127a407aee4bd3cd29 bd570659da4fed8c4b810b8fe2300787 +bd5782c111f4429d410e1c8d87b680b8 bd57ec7e3c411f7257bf0a3bab49d2a4 bd57ed6738f7b3db3226ba06d1d60c77 bd587011573ed8d2df07907a5f979d58 @@ -43039,6 +48047,7 @@ bd5a8d066af5d4644b56f3b66b5d356a bd5bfc7b3d9bf5cdeb3d00ac596905d3 bd5f62341cc8c90a1f306ae48c29bed8 bd602e4c588dc606f84f74a0579573b9 +bd62199071312cfbaa421c9c2f80eb04 bd6332b651affb13fb35aab3d36dd792 bd6579e86fd01aa8a2afe0bb51532bdd bd692fbb7a59243aeac7baf81d34d72d @@ -43049,8 +48058,11 @@ bd6bf5abbf7140c30ee16aae62d760d1 bd6d98cac534b5c0de0c1d6c376757d0 bd6f6fb9c7e20a32adc6a53a7151522e bd6ffc7a7ba01a3954f2634f666d14a6 +bd72086b2c1f1ffdc24afa8ffd687c4e +bd720b019f9e0737e5e2318d924926f6 bd7216592e0d4eb5db57ebd48a8ae79a bd724de3271ead67f90481d23db3c28c +bd7341c51aa17c73999ffccaec026d06 bd73dbc8fb00446979266778a830db60 bd743b6bf83e065c79756aa49b5d9496 bd77107c575b25a8cd1ce223a9696b81 @@ -43060,10 +48072,12 @@ bd7951e90ee44d3c79e866277f4e9ae1 bd7c35b005f325b16360646ae075e739 bd7ca7d35a402fe90ea21bd4128db298 bd7dd69ff50d63a8e61371bc9da859a0 +bd7e5de2c6f7806d3c6e9c37c3bf4f22 bd7e5eb7babd048aeff454a0abec82ac bd7ea1e13b204040a85e59c6fe51a77f bd81404ec71d476561022fd4cce0abb4 bd83307658d42b0cf24eab848c1ee03b +bd84c007a69600b1f3f48baba5e0bd69 bd88743d989b948e13976eb48879e2c5 bd8b0655ce0116eeceed0d36a550bc66 bd8cb834867a548302b1313836b5a4fc @@ -43074,6 +48088,7 @@ bd951b148131985aaf836800c78684e6 bd95a0f6c16b873a8e5947ff822b1e34 bd966a8c450834f935e0df5143b5d67f bd96cd1b00a05c61b1e89fffff02f929 +bd988c3c8955a9dea6ebf8dc80f1326f bd98a1946fc6a3d1bdc7bd7cd3a69a8b bd9c35053473e17f126e992b8e172bc5 bd9ec6a4acf044e6edd85d423626f763 @@ -43099,14 +48114,18 @@ bdb66d9fa18faeb9c8abbe6a534946c9 bdb6705f665b1f9154ea8b32ac281931 bdb6a5f1f52ad17c46e763529aba6bd3 bdb808a9a2ee44267ee0e2126592bf06 +bdb867a6ff1ecafd7c902dd5aaa0be1a bdb900ee9d259d279001ec87477d5c39 bdb90860e0f452c7e3468591b51232f0 bdb9d96f758a6eb1b80c7c916f1001a5 bdba5a94fa7fdaa40b6673ec0858da81 bdbd01278f40e3c439c4101bdbff389c +bdbd0228aa86e59df42df2c8a4a642c2 bdbd0624ff98e3de531b411bb75e523b +bdbe12b059341b351637b33b6325ace5 bdc0edf5c07eea7894be08c6392b52c6 bdc38e6cb79e1d37a3b2f83e1363370e +bdc3c16c0ccb2bdd91216ffd141672b7 bdc47dabc7b8403e17db795dd1aad7c6 bdc5f491f7c633e7df1a0789054c18e3 bdc61c277611d00be4d86ba74126b852 @@ -43138,6 +48157,7 @@ bdddd677bfe6037115da4452b94cf9b8 bdddf5422252ba5b9072bea47a856fb1 bddecf8be5f541c9c599add4ecb84fcc bde14dd89bd61f7255832a7cbf759664 +bde1a83897f3303018d129dcf59f6565 bde2f987116ecab34e1cd2899bf3aee3 bde783de9477bc6a3f154511e5a38c39 bde838fc559a2ac2af8f156caae601bf @@ -43149,6 +48169,7 @@ bded64c78f15e9dc32595e1550760c06 bdef2d965344ddc7b1e51694f44e139b bdef99d2f270883774f5df6a4972ce61 bdefb5d19dac655603d2fed72d6caefa +bdf01e9d4e41fe7898ae1f25d28ed853 bdf08cd2a5dd73cbccc355b36201a16b bdf4829296475fe4c527a0333e148d7a bdf56cf0bfdcfcf82dc5965c360912db @@ -43162,6 +48183,7 @@ be01223e34a354a6e883eeae8819f585 be018249b4ab8f2d8cb7a30cb18f503d be01f803a3e7a779e4eb30fa6eb5f368 be03b13cd6932fcbea23cce36085b3ca +be03dae3c2729f2a540fff3aa8643adf be055a378ba92bf4a0c0f7a81254ca0d be05cfe1be04519f630325e7410ed6a1 be075b7d1795f2b7bff518f1d237155d @@ -43177,10 +48199,12 @@ be169f7daa4a53a1e88bc6d1849e8b7c be16cec27bb60b69101e7af8009c86d1 be172684db1aee05c865c0d02a8a0002 be1764e132c8f452b24dcb07e722853d +be17a22dd3bdc6c36a3ce39ab99f3bd2 be1872cd6d6b94c0aa0705f920d5bbc2 be18ad518bab69bc5d20dc1a9b98e9a4 be1904565425d7e3ae1fea67dc8d16f2 be1935c66cf9bcf29d5afa67b083918d +be1a10c50bb26d24a5fdf48ea0ca13ca be1bccd491d83f135cfe6f0cedd9e530 be1d0e5128788570873924c3bbe26753 be1f007569adeebb767c3c042e0027d3 @@ -43190,12 +48214,14 @@ be2368dc7e91584832560feda35b9a4b be24d3899c3d501430566d8b8aa6ef76 be286afdc57ff409cf951314c0106e64 be297985c9ae89a785719c214cd02e05 +be2a8a998cdde1a84d3f3a07cbdaada0 be2bc5f435167276dba9354a7c7c17ea be2c94548fc05eca8c7c0f8800dbded9 be2d06111d3dbca53ac2e89e39d19768 be2f65c58fe5f8fb438e42569b39022d be316378e7efa69c639881c166578eac be31b4f8cc2e07b95a9a56083984256d +be31d3fb64eaaab1503ff6e26cf27025 be33992399030c3191c346859797a585 be33e81c9ac6a1bbcefd25e568ac9b08 be3523b7ecf35af51ebfa055502f240a @@ -43207,6 +48233,7 @@ be39e64b7d1b5e0bc03514f271809b2e be3af97ebc82b6f45085100eae32ef2c be3b757bcf61fa1a02d99cf4430fd4e4 be3dab5cdfc566db30cf0774687ce9a8 +be40a1a0dd9365f1ff7a44f8612b395a be424684e2297b295a3162eea8515438 be434b93330a3ced391bddda0cd432e6 be4363f7888451cd0b73950500221293 @@ -43228,6 +48255,7 @@ be5315ff6ca23f9972b7b8f844d08c20 be53ce122c1a1a8bfa5fb0c758d66e20 be545b4c6cc259d7aa9ce9d5b44fde3b be548fa337c5a11700f4371c59a4804a +be55b90e001044f6370ab7acf31185b0 be591f443c71a135f74aa8cb1ff0b590 be5b54159ad1805a36500ede43afe05d be5cdac7e3bd2785363fa666536004b7 @@ -43242,14 +48270,18 @@ be613f147eba8274f5b300413664a6ca be6318988bac8951da24553cc1899531 be6517acc353df9960e7d8ee1478d940 be65fbfa8776a22a363a6888161fb6d7 +be66b32458373b5a3d28e3785700d480 be66bd2f5b757da8f31b71efe875ee51 be67288e1166e871a3085df83e73df18 +be6779bc5203a31b6b9897ff08037400 be67c6c0fc9b8ffd8886e31da96ebcc8 be69096da808231e839afd6bc827a047 be6b06871d3e41587374b36def7243a7 be6b8eb3f439b02c4c1ea68a65f40265 +be6c5e58d4dff393e8eb9ce071ee19c6 be6c8f95881a76536b8dc15b4d1a7295 be6f266070d74edddf27dd2b20248c93 +be6f697d9b4291be3ffeef07b2a85892 be6f8ce1da8ca8a2c0e80fd190eacd2f be7054955d8f362bb1228b6e4c7591c8 be722e26a11388df55372155042f0ba1 @@ -43266,6 +48298,7 @@ be7d496ceec71a7c2f9384487944d75a be80b919c477d361c59601ee3f984087 be80ee0cab81dcf60f47978ddf73ab5e be810bd5ce18dd69887e567f3f0e124b +be8267237f22616da8bb3631701bdf01 be82d7bcffa85242ac0b996d865e02c6 be83b644efc752c7c0ab4e1bac7c4c0f be85c008b14445df3c36796580a42ab2 @@ -43279,6 +48312,7 @@ be9028c17d382dd28a49563892a5f84b be90a687591cd8ef5cd66be0538390c1 be90ca129e7259504cb02afba5efb511 be91cfa98ed866e54cc12f92298627a4 +be9235e8df3b5e545a2b9fa7c3538ec8 be93f40f7574e8245fb5f9b2bdc8c81b be94d1f573942b8127acaf2b838e54c4 be95988b30e1af7749aefb285355f6f7 @@ -43295,6 +48329,7 @@ be9ec304369856228884bad07099b2d0 bea4e465996e71d46ae511e7d1e92cdd bea4e6dc86d9db651baee6b4eee49c08 bea6c680c94bf7efe0e228973cc4a9fb +bea74a319700cbe144486dcff918231c bea755eda2d0ead2e545508e8b939a75 bea7b9312c61438d2e428fd5fd89a8c8 bea7dc25b05207bb7910e55d8676f446 @@ -43317,11 +48352,14 @@ beb84f37ba70ca85750edbc44f0e26ac beb90e272a4f60c64672fe320593a609 beb9b5a60f61734a4b7d4fb05d989766 beba5d4128b624d9970202448ea4ad2c +bebb12cea188a1622959f5674ae4ff51 bebb423830d2538d48effb7526337871 bebf9fd7492e51c50095efdd8609dfea +bec06655838c61fc533a32ff1dc4afd8 bec1daa91de3f050425a312621c104e1 bec1f818840cf064122ef2bcff08fefa bec27c1fd3d4662f7f6043ede177a94d +bec60d728141f03e262ecc3e7c961ba4 bec6bcc65b035f987fa34d0dc9db18cb bec83f404460602a251abc57459d7e75 beca63adc4bdc9ced6b649e26365974d @@ -43337,18 +48375,24 @@ bed2789000436aa2ba9fa18b3fd9eb05 bed28141a88b3b26f08115fbcf67f220 bed289695d377566678068c3eed32d99 bed2fc3358b6a2c3939660cac400919b +bed42df881ea6d01db63579795772c1a bed43046ed5d9e9c4b323430b14efaca bed4c8595526efa3c4e97d2f12db02e0 bed5962b6e5bc6cc5800ddb58c3f8976 bed5fc87e7d50803605a4a8a4e4cc612 +bed68aa409294639826fb0a7b2bd3fea bed78bd02da6955e34b2a0324b2f623d +beda3f5a91a3aaae0094204ef1564a88 bedb5b68f14c87de2ebb1431e262ad39 +bedbbf6f597492f62e7490a1a4020bac bedbe7618bbee93f4f70abf0bfdd2ca8 bedc132473ad752234713ba7832413a5 +bedd8c852f3221ba029fdddd56db021b bede872de86d42f0c492e395b44086f9 bede937a3099674ad9402ac0699edcf6 bedea6fd3003e973ccebb4c97d1d41a2 bedeed4e14ca890c56aebc320976f00d +bedfb622e33318a3f693e19160056a1e bee058a1d05ca9051671629ce34aebb5 bee270a8a1e6bb76c5923e5ae8ed019a bee335511a4a072a0d767a7dee9acb62 @@ -43390,20 +48434,26 @@ bf05d961fd7b1483ec69bc8705a3b470 bf0c38f9eef0ff230af19be771b0a83f bf0cc30cc12cddc4ee90ff671bc2d817 bf0de0f7436480ebb058227a61d6e949 +bf0e4750d9876eb9ebbb7a819dd7e218 +bf0f7608c4f6d616005e0ffa0151c1d0 +bf0fbc8e53a29474eb8dc3a09b9679d8 bf10e5fa4516f2723cd473d82c7ad3da bf112c36634abbf2aaa931e68dadf1c4 bf14cbab4b29f590285e296515a0fb2f +bf155ab328c7e0a23134329764b68a8d bf18021a3cbbaee34250a8996ce5c82b bf1a36587bd35ffa2dfeec52877ac33b bf1b96222e978a6912401b0067e34f64 bf1d3332e2ed4a3ad0e0e10adc9a660c bf1f228af1ed02dca3dd88c0da5e5e8c bf1fe7fa36f1f90dd9af1a08587ccf21 +bf205c14390b7149f8b91f634ca96eda bf20909d8ba3f31125afaa8687437c8b bf214280a49e738d404e33830cfb6fcb bf22cd6157595e9c025c2a4adc3e1c85 bf233ce1a481581d687bb62331d0c643 bf236f619886d1030e9c3e147aebefc2 +bf237b05dd164167fdf28f85f4ebf8ba bf2452793f3c6cd940f4b079e9da0cd2 bf283025e308639aca20492455afd66f bf2834037b7e91f2e812c0e0ba2c5fc7 @@ -43411,6 +48461,7 @@ bf298d525f518ef54672ca7de32c07e6 bf2a885031f4e1996df3016b99aa53df bf2b39fc786993a52ee2dc935211c3d1 bf2b4a8d619c0e3cee1d60f15b3b590c +bf2bc141bf3009ff03fad351a5a4de20 bf2cb777056dbdc7ce33aa3a5c9433a9 bf2d01759cec0e675716d0fecf1db4d3 bf2d26bd40964b6839c86e39570324c2 @@ -43426,8 +48477,10 @@ bf3497c784ac84e384cdde2d261ff69a bf3616cc93262be5be83d078f3fd68a6 bf37856897a4b304f24ec175e886b353 bf37d41cee19dc03a51565d81de620e7 +bf38905a96ae02c84a494ae300b0d53e bf3a10b34d0edaa8ee34b5fc49dd81bb bf3ab1dbb24ad358e5fec2a07b452e2a +bf3bb292d431d8b791f1730238c39f5c bf3d06dd2467fac353d4543864e362fc bf3f011938560d00adef55becf2581bf bf406688150e523c03aaaa0558ee0f7d @@ -43438,6 +48491,7 @@ bf433250e115c151df64157d2d0884a6 bf434911a0ecf691ad9b7582d82600f2 bf4349631b080262bd2c234db5bb970a bf43cf6b910f0c8664b298e5f6e044af +bf44213bff3029d08f023e300959756a bf4827cccde5497ac782f1e707267f39 bf489ffbe8b40ed4c9c2235e2a84d4cf bf49cf59aba5018b988fd8ea3ddea430 @@ -43446,26 +48500,32 @@ bf4b8ccdc42d77b2c7007c5063f73aed bf4b94bf10627cafb580b083353b0e38 bf4c1df9a3b7cc3781dd606eda28dd3f bf4ce27c44d10412bacd7d62e7db5115 +bf4e93ab0d396a139a5fcff980ee1d4e bf4f810843106ed1bda53365f6e2ba21 bf4fcfb6cfd9d9bf7c15cdf7f8d967cf bf521c8fb9e457873948f2321f0e619d bf5404909ffabda7527f1667e6f98bd4 bf55903a6943b3140b330d975beab669 bf574d2d97f49d7d5b6e7d92d2494d60 +bf5849cd40421785fb55f9720c444c8f bf59328e9df87531370c449e686eaa54 bf59b080df02f491cbe7a5fc6ca6c909 bf5ab540efa0c8a475f89d88e223725d +bf5bf5fc6580104bc4abd8010f7c1c93 bf5c6fc3a042423e98aac8b23edd5076 bf5e46214d06ecf18148c85a27b6ff4e bf5e82ad937d584f7270c5288448ecc0 bf5fb6cf2eb081f5f892839c96831695 +bf61447f5bd9cd2375b8f42fd47a2cfc bf636589961001fd28238fd4ae8834b0 bf63904c4059ecc7c3c619e22998100b bf63dd7b45eb3656279507e8be1d8b8e bf641f091f2ec55e03d5caaf1e67897c bf660bb740c4fd15d8fd065b6015e202 bf6774a8b2687be9374fd40fcce154e5 +bf681c0c59dffe714d267afca989c81a bf69584cd9db544f323d20d0f877424f +bf69a914363e1f864e5e39840aec2639 bf6cc1d6f64b295f609d0fc8f21dee95 bf6e47b4799db25a3e0d266664483b87 bf6e79fba544c05b2e82e938c1a2a8c2 @@ -43490,6 +48550,7 @@ bf8479e487514ef6aa4038c2ea3703bc bf85c467e639e47c5b072745ae471a33 bf86dc5faa6890c5f4fc3cc7f2f5b705 bf8820217fe99c2651173945d1df318d +bf887f8d0cd30273116208e4cd502777 bf88f02aad576298eef2f1f4ce4ce24b bf89015b02b88a0c9ed53b1739ad40c2 bf8a1203211f22980c93364647548327 @@ -43499,11 +48560,14 @@ bf8fbfd38bb6741845ea04fabeea3c1d bf90cdadf4ef764ccaf46eb84d68b497 bf90e2ab64febe10da4d31e3733f7305 bf91a38b1ad86adce187aea2ed360867 +bf940925a9c3eb415af325c9bba81520 bf97d69f5d8942819c8b06081129c8c7 +bf98cf00d758afd8d21356579cd7fd58 bf996a7537dc3376e7f36ba8231eddd3 bf99ed5d1c17dcd8a27605a39d0ffd8e bf9b63993d540aceadc73c19ac7af899 bf9b7491c76d79c02dba8abb3a2dd3a0 +bf9ceafc50fa7314f329462ea2d3af77 bf9daaeeae580a4ef69d0f2f1d0b5480 bf9fc37e24058f239f58c0e36560e9b5 bfa05f3208c6c527b0486276d928f56b @@ -43517,11 +48581,13 @@ bfad2d4b754730ac5aff41b91f82974b bfad9dcd2f17df0485241c2011512830 bfae5d332d17efd4ee5be4ceb550536b bfae94de111f72a39ca2171094352c2b +bfaf4024bee0c858d0c05e1b54e464b7 bfaf5ad0f19554bd89fd010c0d8fc954 bfb169ab03d5f2110bf44e7eefb0729b bfb1ec3455cf63862886587b0995049f bfb448821e33d0e31e8575380c72c910 bfb4f18a47da4ce73ea27fad9310119c +bfb5d341ead3cf1350f36dd20e5f4a6b bfb77174aad9476026f1706a8b62ab38 bfb84f9f45df45a46dd2b5b85a4e7b7d bfb8763e2be116faeb79b6e9212677cc @@ -43529,9 +48595,12 @@ bfb9ce0540a6bff18d0774109b1e72ec bfbaa35e55684e41a9dd8c15f5a6ae2e bfbb09c292d383fa9d8511f439aa0079 bfbbc9c5dd464c1a3fe1a25285044d81 +bfbc6483e5531536dff1e121e558d489 bfbcb64152fdb427d1a4dda7acd253e7 +bfbd85235ffec59b96d8381f2a316415 bfbd94c8b03d654e88587586c676768f bfbdcfda940a78fc8f587b7e9092122a +bfbdde0b76874ab5062f301eb55653be bfbf316480b30600c2ae2e9b9c0f7818 bfbf8e349f25c771d3152230e09b9346 bfc09567cbdb82900d45b230162d40f6 @@ -43543,6 +48612,7 @@ bfc893b7e897dce45c4d321676c7584b bfcb6fa2ce3a6e858691b22e7bd40029 bfcbcc1b2c1938f4ab5ddde9765ea389 bfce317ac0581d2231858920212ce3bf +bfcfd657e7d5376be9fb46bc2c1279fc bfd04bb5d380e2debdf25fe602f4e935 bfd06a5a04a8ea9831ff865099441a7c bfd1ff4e0ca22743a54068e55e150e64 @@ -43556,12 +48626,15 @@ bfd9a44877a75f064a3212064421f752 bfda1207f4578cb7223755992c5c8372 bfdacb9bcb08638699bee8a6456e5f71 bfdc8a7e4583e36b5477471d733e160a +bfdce735cb5bcebb13b7d6ee6845ed83 bfde67c959d53992d4cc6280d9bafa87 +bfdec1df278addd471a4dd271015f2e4 bfe35fdf2025998048fb049766465a08 bfe3ffd82345096ff641b602f35e6736 bfe4f438896add624907111e7b4fd666 bfe4f8221b113ff11e30ce729ca95c85 bfe5679090bb8e8df19ebf440c6e32ff +bfe7a2993e6ae6d290f59822f3a8c285 bfe976e8619f13bf688d6a7eaa3171fa bfe9c45223d9e7232596a6df8e422d08 bfea4031ad8518dff91a39850f0e82fd @@ -43586,6 +48659,7 @@ bff9c29776e39d0aeda3153691cdcf99 bffca52580233539d93b6f897e871995 bffd605d4646be289eb5f5471cb6dfb5 bffdb68322c67bcb81e2ef4085bb9f38 +bffe252d0a777e3de163041374b08be0 c0008307ba69fde18fb5f5aba5fe8aee c003ec2b23c3026b6b0173c74ed8046b c003f9aaaa55a8315db0e86aad09423a @@ -43595,6 +48669,7 @@ c006885811fca93c23507daed13915a7 c006ca0b6564442a9b5251c4c44e1242 c00717aab99e538f8772bed0c1de9c03 c009b9d3b50701da811bf68a8cb976c2 +c00a27288d3db58d319a212c40dbde3c c00adae8695e20b091dd9cacb0c83896 c00b637b823298deda963bc1cdad07f1 c00c022ade7487dffd608347828f5260 @@ -43602,24 +48677,30 @@ c00e6cbc4440278e95539d280b678419 c01065ac406eae98a9446f88948fb39f c010df27efb7c993388b4e795fccdf4b c0118ddb877d0784d8aa420ea532a24d +c0119297fb022be13d65f8763ad430c9 c012a8934a86376dccd4a6a88cc86db3 c01566650e97e7e78cba94ee7eccd8f5 c01618ac8290a2f41c5d7fe148db7be1 c016ab934f68708c71c168ef155b1821 c0174a7029f8cc629eb175d0ddfb655e +c018b8e4a7a2ce128e678a604fec1106 c01bcf736ea0da3ae4a2667de8eb1c79 c01e8051079c93dfd67bff0b86e240bf c01ebcad489e3ef62a4e2dc21237800b c020004a9f6375b41ac581a73b70cdb5 c0214488215b553d3c93cead9bcb10d9 c0217763a958670d58f8d9df59067402 +c0221d9aa61e0f38db40f37b9ca3a3b6 c022fa25345479009ce405b833eca045 c023c5ff5e1f2dfa980ba0c266f8ec07 +c024a61b5bb25953d7e7bdd6ac594ea1 +c026d5a63a51701addbc05dd7837d312 c027bc14d7d893965e434ad3d8de5cab c02a8835fc8445e4926e88a07fee402a c02ba6fe48b0c4276febd22f43629072 c02bbf957354752bf5b77c2358b7403c c0321294dcbb1d37444da8d2249fde6d +c0345118705d160ebfbb2e7928d4476f c0355bcb9b964b3019e49663c58611b8 c039971450c1c996d8b45958367c489a c03a091cfcb42f005870d162cfb8d84f @@ -43631,6 +48712,7 @@ c03e34c929d0aacc1afceeb908175923 c0426116b0c4304e97ccefd9dd122543 c0429dce4e7b2fdeccf41a0ab414713a c043e8d9abe50b0266cbdb6ac0a81775 +c044124e72f634e873bbe25e396d7387 c0446bb033eca1fd60a020eacf4be79a c0446c46cd0ac3a4908b4590d563244f c044e07d9d1f62f6665c63220f41855d @@ -43645,6 +48727,7 @@ c049aed19ab4e0b848b518bb7ba904f2 c049f696da857a2871e574b23c206d41 c04bdc9bacd47decdf02108727351e43 c04db6690751560615f1362f1625f488 +c04dfe5c097ac9c3c0ec0865414e4cb3 c04ed1b8ca6a6aa0cdac1e184b660974 c050df4472a32b17307a0883c517420a c051a563224a4547ec337a1c2e2946c0 @@ -43685,22 +48768,29 @@ c0778b27dbb1731ea7e853a1ebcce742 c07848554eaffda308f7de6f73453595 c078d765b49d489731556a6d9c2c2cd1 c07ad06666871da3eee7ccc8b55a55fb +c07d4c8a483d267de0737f3f418691d1 +c07fb52c4af10e5ecc32ca7fd863f498 c08022bd533b48f4e348251629f04c28 c0839a39a4d84d48b17dbff388df3318 +c0849fac3f95f47e9e7847894371ed16 c08547d425be4f6e8eeb2109ac8908ca c087038de4a31edaf33be8cd8d6713cd c088763fb84a043151273b33165c8d33 +c0898df4757dd00c6751712f60413173 c089abadddbea3075ae48d2496cffa95 c08a727855754e46a14c5e70a7e7707d c08b94e460ac8d6fc2d64f9c3b772295 +c08bafbb6973aa3c89d0a684096e0a5a c08c80cfbe3c53bc97686c9257dcabe7 c08c9ce623c9fc7992a21cf90f5ed0c1 c08e2c09e946478430a820e8039886ef +c08eef8baba4e2fe4dc4443bdc795f5f c08efd172ac03818bdaeffd2d02fbbae c08efd8c6f4d0e49dea7d46bad4c63ae c08f34ecbea1887953ad8d1dd6152224 c0905ba4fe1c727a4d6e963c8e1bb57a c091423b7108f7b7af918b4e7d7af6f3 +c09185470cfbe70d941da647a0a022a9 c09257b135ce7226aa2b3ee82f252fd8 c092ddf9182ae6fe5f0339219bd265f9 c09401ae7f5420627fe8b32173f38c9b @@ -43712,6 +48802,7 @@ c097d892d81f642869c5d4d7ef742123 c09940f4bad03366b1bcf78c70c59b34 c0996ab78eac0cd40e335b1bfc232ff9 c0998607f7b96a66c66f4a589870e4e7 +c09a40d859f69d8388146950e59ee8d8 c09a95752dab56439f044ab26838de1e c09c2a3614814521dda966258fdcc5f5 c09c41bac9f113389188bb917b7ae44f @@ -43722,19 +48813,25 @@ c09fb046702fa1a796c9a1582a5daba4 c0a0377592e6100a3bd1cc2abd7031d2 c0a16d1a772bfea947b5abbe67af1da8 c0a249ae1a0660457d07fb99796420cf +c0a33dc909353e89778e8c7cae76538a c0a3b1eec6fe9ed3be3c791a284b8951 +c0a3dc970f3c655e138e119f87987d9b c0a49b3ecc9a90850b21186422fd871f c0a50b4c8616514ff9db36511516a1ed c0a51d7e51cb36e030e50ac1495ec9e5 c0a566f48f511f5b2a9c82d7fab656bb c0a6fa86a5b37007c3095635a9ad4cb0 +c0a86c6a27334fd356b9af8fdf656a84 c0a9ca8cd78f4133e98e9ff9c7e968a5 +c0aa773de0580e94d37a054c872d7c73 c0aa8857a1e994b795dffcc3ce48770c c0accc875faf42a43a8a879020699b18 c0ada0a7126f0fc6f9cfae39f8e95196 +c0af63a8b08ff867a922e49e40af4e04 c0afa2736713bd60f84387fc2b594212 c0afe6b536fa6700902c3c6b1e7756c7 c0b044255777acf9bda5aa02b2b98b5c +c0b048a30f6edd4df8bfa44c527f1978 c0b26133b668d35006699fb609b9cddc c0b362e9571ecc43ee4d5228d3641de7 c0b4cd2c6e64e91237210f1a6a7284b0 @@ -43753,12 +48850,17 @@ c0bb250d7d237e24d198d6d9c2f78a4c c0bb954c678f64bea2e6cb12506bfe0c c0bc9f5044c19090e7251d262f25d49a c0bf4d2eea6a471ab9fa7ff8e318a854 +c0bfd1d9a48e3d3e40f598de8919afb9 +c0c16663bee9f6a44cf02c101ad2ca02 c0c25a061bec5a7d4090dc50152a6232 c0c2c9796028264e8e81647c4e80a0c7 +c0c433ecac8ae5e9618ff3489031d747 c0c4ce6586b1b8a695601c3f3c906c9f c0c6018aeac5d6d280f35dc72b3a2be7 +c0c681f90647418673567e1b8a9a365e c0c7e59b0e8b45de7aa5e074910890f5 c0c9b2a00cabe2344537cf62f6054edd +c0ccc26eb0dcede46991f9328005bdea c0cdf4eb3247445da434120a630e1c0c c0ce288e4457218415277f08c9fc0c0b c0ce37dbea04aa8612623cf4dd1af4e6 @@ -43794,12 +48896,16 @@ c0ecc247428e75480a6ddcdde83c3557 c0ecce0a8d1d43ffccc9da925a667846 c0ed71a7eb6defa7b7dd97600ab41c1a c0eddde19f347119f73c11d37d30e568 +c0eed46be00043c097276ddf07997519 c0eeee7e5aa7fe3fc5822c8f10ac6e04 c0ef9d7dfed0239fed2edacfe1399c40 c0f0918f7c920074ccdba7bc9285fef5 c0f1f89292a3cdc341e45fe74f8b7306 +c0f2c07093988b26097f21466599b1db +c0f3673f1f692d42a048ed4ffd93019d c0f3cffd3c09039978e5f35dec68745e c0f45c98f5199162f7c17a986ccd6971 +c0f502e6b19ac99473a72bae5b6c5265 c0f50abadaf3c34b5fee45ec878edf04 c0f8034bf44972cf649b13332c6a3587 c0f8342cd38765d20c462abfbd809d39 @@ -43809,6 +48915,7 @@ c0faca6650e6d38186742c4e4847dd02 c0faff57a43dcf09d538cf792fe4f8e9 c0fb022d954f7410ee93f56493d80635 c0fb096baaf2f825c94b569a27b3fe19 +c0fbcf0a91a87a465b3b00c00f541d1a c0fc4d10a8d3162088d5ee794ef11601 c0fc96960b93085c61050b777036d677 c0fdaaebd945c1eadad43df7d05d8f96 @@ -43832,6 +48939,7 @@ c10af81103f4d692884f25466a049913 c10c7a9cb22dbef313e56ef12652761e c10d56c5f56cfeeb5b7e9d824d90903d c10db45e4f7517a5bf8e824f4c314762 +c10e815198d018175cbbf4a601060953 c10ec2d59f876d3d1219f5079267b8f4 c10f7cb4e1101bd34ada869e530714a1 c10fabc9f54450336b2cebb29fc9ea05 @@ -43844,6 +48952,7 @@ c113697b87df83662249646fffd7643f c114b4a96ceed2c2a840cfa402f0aefb c1169e32c51eed0fe10d0f37e3b8ecf4 c116cf89d142493a9b687339d260b7ab +c118efaad6ba81dda88be8bbd67e2161 c119a6f7872019d11011edcedd154c41 c11aded8b6f784f801e4d784a8345cb2 c11b23849cece5d543df54a3f3d30975 @@ -43861,9 +48970,13 @@ c12aa0f7ca1a45d7351651fab9986222 c12b395a8c3d2a4846728d0b2dd82e0b c12b9e70c0a2cbec5b93c8cdc080bcc2 c12ba02973b898a30e78e5399adac5c4 +c12be17ca3c41238b720f8d4c932ae13 +c12cdf5b02711369df295c6ef9adf51f c12d0af94ffff16e65769fc9483025af c12da489a82b3668dbc9770973ba74e1 c12f0a7ad4c222f1783430f27f833104 +c12f8262ef466ba621e3e837f04e2064 +c13069bf2af112b5bcc8afe4d61288f4 c131bf851bc23302b26dae433bcb559d c1322fc59b34041ced0250819541039d c13324b492df1bd94de8423e59811a09 @@ -43892,6 +49005,7 @@ c14ad038c90397f7acd764b568018132 c14ae9f5b8ef28ceb2521ff33f77ed5a c14b946c8a54fa1ca456e29675dd0cba c14d12b52c8af795f0417cd0dad686a2 +c14dcb1c04a21d3be69d7f8da13a3894 c14e81751ba1273b3c0368207c081d02 c15084f4f7edde2d8142738784c9bdf6 c150999703c98586f7afdc45a5bb9f15 @@ -43902,6 +49016,8 @@ c1532ee68b229a5dde1b235c4a0a52b0 c153864c98b95caa0147d97d1dc1a08e c153fd215f4ab6f83bb04ff260bab72c c1545f39142cd657988e318c262564b8 +c154808cfbf9d8a35d68000a00f42c3f +c155b5b25b81b14954da9a4a27207de7 c156be622f22ab12ed18debd5a958eb4 c1571544816c43aa65cf91e67a4bc664 c15768e4ee823987589974029531adaf @@ -43914,6 +49030,7 @@ c15cd379c65169096a2cb6c4b2eed0e1 c1608ea25a0c44948a5fc8aeda40c1fd c160b9c6e1f41afd1f38eba9185a425c c1617fe9bc202c5e0d7ca3498d61f7c6 +c162fe8ede79af064bad7cfc827165b5 c1634ad7fa38115f4b462a7803d7c0a6 c1635dc502c644a33cad5281fbd8dd80 c16361b7cfd71aa9603bc53a3ab3b0ab @@ -43927,6 +49044,7 @@ c16a2103e770626c099cf2700dc5df38 c16ca99639dcd2a16da7a525697c1748 c16e159d06b96d1e67629b1ff29b2fcc c16f5cc886f2c81a267df1caead91cb9 +c16fc4e891f6b37a7cd37df9c7e485e6 c170211abc89b51ee24487e58d228f31 c1711f12782a62c544af0a6fe37e27ae c1717ccb8b6140ea3da586ccd8bd4f6c @@ -43942,6 +49060,7 @@ c17f2c7b637e87e40796193349f341e8 c17f3bfad18b0d818e283bcf0461f746 c17fa9eefd6dc8b809bb41d31d24899f c18008fe948d3a3c7732a79c489ebfc6 +c1826b1c68b322c8107b03d7c172cc80 c183b7a982c69a6a167dcdf70a420e65 c183f0b7fa62ba82806ebd815e70ad3e c18506a35f2faebeed0e47045340f1c2 @@ -43950,10 +49069,14 @@ c185c7b7c7059021b5d5a99ffc4d7c6d c1870365534632dffb1b39b5bdf4ba16 c1884ac8f761b649ccbdb680b4486c3c c1891aa7f6c55c8924cb260e434314dd +c189e1728a257c7ecb6dd87d0370181a +c189ea3a6ccc4aaeeab7e8c919aa49d1 c18a2dbdac98b4377105377c38db75ae c18bae9ae7adc0866ab6d1e04c4bd597 c18d7839cc3341caa2fd656462a73838 +c18dad11812cfaef68b5562844334086 c18e24281e91611fed858301b4f6c5d4 +c1906e7dfb75d3bcd31d7686879d4e04 c19235506c4c0ae311196d36fcdb4274 c1924192571495ddd15baa6f1e0997e6 c192b5a2573496c576e2d91ea87d9ee1 @@ -43965,10 +49088,12 @@ c197cdda7b70347466dd6851dabe94e5 c197f171438a445b681264c95794907d c1982508ce868c20f0de0418f1a43433 c198323bbb7de852b3129eb5b695a709 +c198a413e33a6277f7c66658d652d552 c199692481f7e5fa335c82009d0c4996 c19aa0e9743289fa1a85dd616bbf4c93 c19ae9e2d51ece5bce39622052e906f3 c19b53750ba0ac648586bc392d57a208 +c19bd6c10717b51b80550948dfcb34fd c19c1724acd7d4fc795b5419db4bc332 c19d8e5b441bf538c0d28011a0d8ca41 c19dd8d2fc027db05bd26d29bb2b2616 @@ -43982,14 +49107,19 @@ c1a69f99b44ac974b5981ffe10f8ef24 c1a6a6064ccd27e629b2ff64ee63acb7 c1a7b954ea20d05743edb979508e3e4c c1a8a4185769980526a4168b11762e96 +c1aa9488c21cd6ff4502de63ec0e1d9b c1aac2fc27c2803ae5096fb06b1e3fc2 c1af185391f88a837df1d8b4b3dcfb84 c1b11b04e467c33097a75409d1546195 c1b2663d6ae024332a22f241e636eef2 c1b26cfcf760e75f17dad348e54c90b6 +c1b2f21321a1dc8254de04591a5339ba c1b3bf5e7a350dc8f2992545ee5b262e +c1b3f4a7b7bf4c69435a4d24cc1b0ed2 +c1b5a0943d016ea10c0fb395828060ca c1b6fd8f8feb6261de93a914f232cf13 c1b7bde2b5732146e878f62a28356a99 +c1b852538c4e8b07bee41635b57e6c54 c1ba1f06e7df433014acea446f37e977 c1ba6069595d0ba157549c261e79fada c1bad74ab7fc866932bf91c4aa82f1c6 @@ -44019,6 +49149,7 @@ c1d802b2c48614edcdb64214aff9b840 c1d88bdb7ae008ad52fcfdebc7fbd2b4 c1d993bb23b87f51350d99966d28a3d3 c1d9e05534b0caec72f6462fcfc58f06 +c1db6904b6d277f30be5f4c83d12f038 c1dc0414ce3d4b5d19e88f4e12c66865 c1de72b1417daa216b559a96df1b4faf c1dea1294e212508df22edc884edffa9 @@ -44026,6 +49157,7 @@ c1e0a6a97b3288bac6cea66055b7abb1 c1e16d8e55a68c8b518a3d03d2ccdd0c c1e269c16c9da7e08deea36a3256c880 c1e29577132cb6e063f695599e11534a +c1e2b41b18dd9ae49ed8ae5e1bd0c713 c1e2b443734d99ec7eb7178847395663 c1e4368dbcdba6db5cf2952b4cecaaf9 c1e45bf7680724061eeb5de90e496ef4 @@ -44043,7 +49175,9 @@ c1f17993aaa81674f1d9e237a8e2124b c1f2156a717ada3d4bf786aba0f1ae96 c1f36e57f5a282814b36b7469ec66736 c1f552850c86591bb9f62d7275906bcb +c1f662acfa22d0e2495591c8ee3dde21 c1f6f033fae021fb5595619ad3f2d3ec +c1f75b5f7b3edc5af66b75a9d0bfe887 c1f910e701fb096ce31d701888e01c9e c1fa098c5de27b840b850e107f5a6590 c1fa525e4837723bd18594c41cf27ba6 @@ -44056,8 +49190,10 @@ c1fe05ad6cfbba6dd8ae822b5a8e2a68 c1fe69bff405fc7474645625a485d5c9 c1fed076d732cbde354a7ef596f1194e c1ff557c21bf14efb3fd2d9bf727329c +c1ffaa45eeffc69c8c7ac326ed1b7580 c1ffeeb374312f4dcdc3ac211d017805 c201021b9ba276fdf4a5f4ab4db50720 +c201068aa9901092d2ba9e8ee83e7a76 c203a7b62434370b076eb552aa3ece35 c203e177185dd1990a5d27a6360a0fde c2045280c82a5953c70bbf73a9d73132 @@ -44066,20 +49202,25 @@ c20789a206af5f045647b2175ac72ccc c208199fef03e5d6d9127296094252dc c2089d270571482e7901afdf569f070a c2091d1f494b3e9109c1bae270af38e9 +c20abcb22a9bcb1756decc9434c42d28 c20b070e0ed2149b0430adf6db0055bc c20b90b283a9917d0a192d00f47c32d9 c20bb6986c00324532f15344ac9b350d c20be9c560369098df30a5b5af196306 +c20d8659681fa77966a90ec4e394d15a c20f58e2e2e9b45d297c61315a9bc914 c20fedc45c15b0b06593e0c3805f8c80 +c210d165ba9b2c6c2800e7d4bf8bd2e7 c2114e6ca8080743ca7a6ae466cd77fc c213bf87398b1542499482fc56f0b835 c2153d930862a0d1b9955b84663a4a78 c2174a81abefbf68f51f15700516afc2 c21a0a75c654cd6b2d2002d5e4d2538c +c21a50875795a07a387242701d1962d4 c21d830da08ff1ddf98dece11c535b91 c21ee42a4157974ae225a36d4bdfa701 c220a5591fc61cb11feaf0bea96189c6 +c220a6393ab636c63add51157f4722ad c220c8a990d59180348eed7b10f1edc3 c2220440cf82b210c161b24602185b51 c222b9bdd7e928babfc041e1a9fd54dd @@ -44101,6 +49242,8 @@ c23279dc7e02c5f81073173bda444b17 c233fc8edbff61860f35c7bd456bb37d c23530c136929b12eaf175576cda9639 c235acdab592e06a6206ca5c4c713d61 +c23630db3e48fca8ac8d6eb50589c6f2 +c237061f6f21f22dea0e84af8ca0ceed c2392b6942f069d6245401a144f3aa7f c2394e66c7c540d7ca2f5463b1fa496f c23cf0bc312d621071fe365d3a072c80 @@ -44109,6 +49252,7 @@ c23ddf1f85db3d6b27948f092526ffa6 c23e45cffcff9b228d103c08f166f6fb c23f341d53c606fe948056c99aef061d c23f5e292cc29251fbfb8d4921d48c76 +c241a4342074b04882ed02d7d1ad40d5 c2421b7901d2c7c946b9e1209eed44c6 c242edfaab8ac775930808633ada5a04 c24341ca76c23d072a9f4616ec91f0e9 @@ -44129,6 +49273,7 @@ c24d1f6a9d2b0e30a6ed8d3fcbeb9d49 c2520b4d870473dcf115f3f1debb8622 c25212d2d290576c0c828f325f21151e c2531409ea9fe7ed42fc35ec97d81966 +c2561e9cae99091bb9cef90e95572869 c258e9d73d5f65ae106a91f0aba9f31d c259b8fd04daff7b1d4d328305870332 c25b0a784db92363a4eb2a833a0ce259 @@ -44139,6 +49284,8 @@ c26218615f84cc95f90c96377b62b111 c264d79ab4a8a5285a270a9af437587d c265fd44fa7510fdd68071f91921c4b1 c2661e983ba907b40e7ecb57f3a8a35a +c2664912a68355b0de01b4156a1fb930 +c266596edde43f27da5a1a83e293476f c266df1660c2a3a7c336ce4d82861ef2 c2675add88d023c092187fa6eca63445 c268236d0c053dff744308e7f0b0fcd6 @@ -44149,18 +49296,23 @@ c26d69a07e301962ab561736915d56c8 c26e45979786681fd86dbeb8d9495516 c26ea6fe6912e2fa7625ae97a41e1689 c26f007f143b12f4652e71c22509e064 +c26f0a8df60f20f45df703f3629e85a2 c2703bebb985b8bf9a61b4f66ed0b7f2 +c270ea9af12579fd11cd91b6d6cdf9c1 c27138dc68914ad095644a503a02d93c +c271f68166f53787b712ec781493167a c2725db203625832e8ef62e7ef9eb6a5 c2726a0377016bd92bc9bebc2993644e c272e74a374d24e77a1fc8477e085fe7 c2730ddd6f1c0bddda0932bda4d47812 +c273bec2d9e38ca0bf7c49c02f94ec7f c2742b4b59ca15ec9b2a52424887e7d1 c27442e7a72c1d94dcc9ea509972e15f c2745325e611192c2f1105478c476d96 c27491d36a0360d7a34986e582f71311 c2760b88f6cb4f05579ee36bc99ff9f7 c2767560d329c1aac91243afa57d0ff7 +c2774f599db2b46ae36615ceaae7f0f1 c277cc896e428f65bc43269fefaa43e0 c278278cf777a1b6c9167546c0ea19c2 c27aa02f16e3a50963a291eb66894aa5 @@ -44184,6 +49336,7 @@ c289b140a0a9992e6efe94543513af7d c28bb64316eae681ed19c65b1b2e5c85 c28be92fa250064579da779107a5c997 c28c43258ba7f4cdb412a83dbe22b544 +c28c705f8b25f89f3a6d3ec4ab2ab228 c290896a9b6341cea35b0ef6d29adaa2 c292a90a2d1be8ed5a39ce51d1dfb70b c292b465d5ce946f2fd83f999a355f3e @@ -44204,6 +49357,8 @@ c2a30d74b4b974f08f29d6e16b292b5f c2a38d13a4b3cc7778268c858e2d27ec c2a3e0c7992dc7969f1805624fc1c1a5 c2a4243f76ae47158d084c91b0771d86 +c2a5051ba33c5786978dec60af7bd7a9 +c2a7844625e361c7f3113b58a4a7d84c c2a8893c31816c3e9fb5607327e79c23 c2a96581cb8ef2fbb8fdc32a79a588a4 c2aaf8cce2ff7e0d6b40e046d4785e6f @@ -44212,11 +49367,13 @@ c2ac0eb3bcee592195fd82354990ea7c c2ad47ee53df41aaaa6653d173ebc6c3 c2aee2c781a7e064c64971a2a4f8d959 c2af3620dee4568e1338c7c2d89ab5bb +c2afa216550fc9be62935d3817ada07d c2aff9dfe1fe6af0e5ce838c916f6ca8 c2b007e82160542a7cb766ac50326c2e c2b1005454c72142fa5b832020e121ea c2b1a153eb794bb8837f309cf0d2797a c2b249f99a92bea61d210c252e597b54 +c2b39a2c6efaec1623467028eec64d53 c2b639152295c208c0a1fd945862330d c2b69fba4b898ddd93b81bc1fe4d5170 c2b735d1af3685059bfd7689f86dc2cb @@ -44256,6 +49413,7 @@ c2db13d0dadfacfbe911e0c9dc3aee8d c2dd05f4bc8befacf3c2f117deedec51 c2de933c1a0c6f835e1d91255fb37fda c2df29c14cf1566ca96ff952dabbd773 +c2df417d306a060666cb0b23dcc0f3d3 c2e057462f4fec0afbf750715cd68bf1 c2e1ed46f984a4fc22c08f1015386ebe c2e21773c4a30a3940d63d143eda4e1a @@ -44264,6 +49422,7 @@ c2e31bc969ef92de84bc3b772e7fc96b c2e487d03af19664c5aec8f619e69c3b c2e4fdb8611a8a718a0d9a4530397db3 c2e5a3ff135df1e9b96fa27a9c617621 +c2e666c8d49dcc7e08181ad4b3a66b54 c2e75df944ef171774808c9bf3a68a75 c2e76e47f9a648e69426a61a47b03793 c2eae1677ad5748dea2a5921b9e12639 @@ -44297,6 +49456,7 @@ c2ff56c116d9bec3c7f8afcc7cbff013 c2ff82b4cc17c014c4be2cf2598a5a83 c300fedefab1cf0b5829a5d4495459cd c302993fa97a4a73e4af7d2d98233787 +c302fc4b13ca6e49b66b39d2694208c8 c3034df7762d6da812b215439c99baf1 c303abafe6404d30e37b7a9f4be82831 c30403e478c65de48067d07a4862fa50 @@ -44322,8 +49482,10 @@ c31128f91bb70b47309c006397159d20 c31209044613a8b9a77e456825cd01fe c312467be32c704a34ae0477bead6986 c312b248949bb02dcdcdde2c538db4ba +c312eedcb5f42d41f3921b1461cd6a4e c31324846d27346c8d9d5eb54373141d c3147ae48845013346a97970687dee95 +c315e2f259c8816969b374248477f60a c3165c25389a00286d4a16a46221b086 c31696f5c54f9953738e8ba5c21c3840 c316d5ac726d6de692ffb6c5467066d2 @@ -44352,18 +49514,22 @@ c32dadb6c9da1935fb7840ed23c9bf95 c32fa227b25247ac2230376deba4726a c33179f2d51d1a9fe7a5621071db980c c332cae8da3de3cd724c61774dd701ee +c3331de5ab36200866d9305417c969b2 c336e9f9d9f7212efeda6071622b2033 c336ecfa407d79f8073dea458383b5e7 c33875e07eeec08c263111245b00022e +c3398521f836d7c792ccbfbde2461e55 c339f857aa0e6f6ea6a814a07d5dc7c8 c33b379fd2b4765434794613d117031a c33cd1e20ee682cfce99a5c874ede7c9 c33d8526b80d575ebdbc013c7566d9af c33e8d22fc85fcacb80e6f9bf611a982 c33ebc107477a6374adf89c5c1552693 +c34128742a447b92f76409d89f62d231 c34170bcabf461e7a44784c8eb48c710 c341771e5b1a1713074767121a4ff917 c3419e4fbdda9f32b5a9a6c0e734ac77 +c341b9e996ec817a66ca17de064620b7 c34212c1411652919a0e7b8309155f00 c3424dbcfa00ee6ab11f75a14fd21aff c34319a240701bdf58069119eccbe147 @@ -44374,6 +49540,7 @@ c34745c4102a713d7c7a9ea2f7ebb1fd c348b848a5ffa3e686b0f7df6df1f55c c34b026fc2ab73e6160a0dce8696712c c34b838b7f46b5af3b0a9e1f942b4e20 +c34cafc07082ebd7583da062b3ec1ded c34cc04d088d32608db06c9adcca36c6 c34d4421208a873ea79c5e98b52e3f5e c34ded23f547a70f7b93e91ae9c55e4e @@ -44404,6 +49571,7 @@ c365e1fd88f18a8ccc660e43de55ae81 c366c8f25d465ac0013595cdc2dda57c c3676d7e401e59f1c51adbaf6729672f c368237492bbee3233f990d7a8da9dde +c36980b943f438562a2556b48760578a c36a7cb76c17acf6ce97563fcac59196 c36ae620143adce2e1fd75c816634f64 c36b23d4987759d844bdba618540aae4 @@ -44416,6 +49584,8 @@ c3719c178231464eb23d539e84153c1a c372398ba1f86a8112d3f3162804bb54 c372430bb94fbac15cbe4a1a0b5def9d c372f1e1872f9aba48b7e485316807ad +c37578ea902800d6dad4c63413e69672 +c3786994d8ed3e8cc2e87cb9ae09e4b6 c3791d291d8b1f480f34dffb383503bb c379bb4826135bb9cacb45157c510c8b c37a30a5e07d62afcb8b142de43b9f80 @@ -44428,6 +49598,7 @@ c380ff3ebb4d8eec5a5289af3c7a8a6f c38159616f9f0002bc598001ce291af4 c3849d8078fd4ea89d99baac28a8d9c5 c384e6b7c0de9d31343dd875bd0e101a +c3860007a00cbf54a6e9af43221da745 c38798aa96489f21c4f72cb0526ae018 c3896596679e15e22d7c6f63e19538a9 c38bca461fecc74d3773b4dd7bc0d57a @@ -44459,6 +49630,7 @@ c39eddb90dbe2d3115da7bcc01262b05 c39eefe8b60e9e517901f99e87855216 c39f911754be809ba20f47f6f9bd93b3 c3a0a78457d7a0bb62806cbe84fbfd6e +c3a196e1d9dbd20dd2513a3961a30e52 c3a3e062001ec4fd9a42f35feb37df54 c3a4cec00324f18bc9f96c7d31825cf9 c3a53a1ee0cca1c2eee628d99e5daf2b @@ -44472,10 +49644,12 @@ c3abcac7a36eff89f46fe1fbe518a90a c3ad0ccda4f1b7712bed8f8343a72d9d c3aee96874ff1c81955cd1df8bc38943 c3b018bf85e7a771bb8f1abcb7f88571 +c3b0b81d13a4b89ac9433f676562f722 c3b137f11dca18a44afb514833f0c1b5 c3b1d896ddff84dd075f6a9aefcdbb67 c3b23b82e655ebf96720d24223775ba5 c3b35010820bce8764bec569968c1fb4 +c3b4a836e25730e7881a062fa6728df0 c3b4dca945cb024c9983cc71fab87a47 c3b57a0ccca81df6c2c320cf646104dd c3b8427dd9debf27aa28d934cd7043d7 @@ -44499,10 +49673,12 @@ c3ccf8dd37918d824c00e69dc682af4b c3cd18f734dd48fa32b7d170d71b9ec9 c3cd1c95d69859ddb4da04b14ce770f0 c3d038a3b1ae5e02365922a81a585e39 +c3d1549d7ccc91973f765f7a2bd338da c3d25704beec98d035c25a6e81fd5393 c3d2617e1adfcf772a0cd43a86e9df9e c3d2a727ca53fb4f81a5291ac6fadf5f c3d417e254a06460c4e71e2233a8abfd +c3d42905a65c006362b95dad45337524 c3d57c30038a88251948419eff73f642 c3d5cd4fd6fb431eeecdf2deec19e683 c3d6969ea6c14ac9ca2dd896bbbd9da4 @@ -44515,6 +49691,7 @@ c3deec8bda0127628d802567ef90e652 c3df3103a79a516f9426091efc655b17 c3df40f01a0ef3847a0ea4cb699b4a26 c3df573610155449e421394cd48dcc90 +c3e0b1df22689fc9a3e8e7f604851b9c c3e0dd7f1b41639a5da6d9be58affdc3 c3e1495c03ce29b9bfa6ddd99e91215f c3e1ee4e43bc8a99cab2d39c2cde17d3 @@ -44524,6 +49701,7 @@ c3e5b88541315b036f8fff5385fe30be c3e74982eebb5c22fd3e5da5be899ff6 c3e87a45da4f4804b9cdbedfb659f4b5 c3eb6b17458b82802d6c2c1dfcbfeae5 +c3ecee3bde9f94ad9f8bbb688afcf583 c3ed54b69e85e17aac7e5d8a5debc7a6 c3ee0a5724b62485b0d49f272552871a c3ef60f1c174ccecf8aed42e4be25531 @@ -44547,16 +49725,22 @@ c402024af1a52e2ee38686ad1698b4e5 c402703b89badac9661b1ac809ec6e6b c4027c1087a59d993c95577a1837a6ca c402875e8ca8e15fa4f9531e734d59b2 +c40306291b6cad6829a2623b0151cc97 +c403a392ca0e633d1313f97a93d4383b c4048a86c39b8fd78db54e2d3c659eba c405a0802efb4a79ad3c2e9cb1111940 +c4072d3ef8b2597092984c7639d2b009 c407894aedbc818ec260404f312cc21f c408a4fc231784912266b7084199d0c9 c40b11969a363700e957ce1138f7e800 c40c607c2816f152b40032cebf0f9c03 c40f8953665ba213cf2e4e5463bc2e7e c411bc157437c6a7a1d6a648848de3b9 +c411d142c4665720081790ec09b4d640 +c4125cc33486b1ab6f52c9951e5b0d8e c413403f7abf831449298997e8aae544 c4139f13156a2203900fd92ca1545c64 +c4145bebfe3d43bf9f861ea9d9838b04 c4156f42875f915253ea7e9902de1229 c415ec7d9dab0d08b6f22d1c2962d276 c41619f1bc9f7c2af488bfcf9e847479 @@ -44580,6 +49764,7 @@ c422ff690378e9b41ff57e0b1bca3dc4 c424c688c78fd7f99ed1d37b759798b0 c4252bf3d70b3840e6bb251881e9bb54 c426ecced847668610c019d1cd4d8e13 +c4278ccf03e416090efbfc6a17b896db c427a5ee164308ca179bc2597af0dbf3 c42847f47e73d2a3a08c5097358d6d91 c42890d7118c6404c9165433912d0bf7 @@ -44596,6 +49781,7 @@ c43151cee513d1afbec884210a119864 c4320976e5438bcd1cbc0738e68f8653 c433109a0181a72e8e35f6c85da3011b c434b5ce8d4aa8358e639c8806765518 +c43528800efc6e2ee7a5f7238568fc58 c436056ef9aa202808f15b0a3ff5ef86 c436288674d050559bc5b6203d0dc365 c436ae53d43c52c4e564cddd3c2b05a7 @@ -44611,6 +49797,7 @@ c4407ed6d915d86a03ae127fe3caea27 c4415c136c169c7a699455bd46d6501e c441795db01bc14384c24b37d7f1c61b c4425106bcb2d555761ece9557931fdc +c4437abc5ede9a9331fbecd62d57eb23 c443c0c74fe8bb154ac6e08143965942 c44406b3050250e526787cc5e4ee76c2 c445d314699cbaa0261e8e3a56c02238 @@ -44620,16 +49807,20 @@ c449421e9f8f31ab93cf296d44e83e33 c4496de1aa647fc6a64f8a775ab44801 c44999712d2e30964d2a73e5c596c448 c44a4c36ad0cef822d149dc5816afcfd +c44bcd1fa523949dcd692df9324d3f8d c44c6e6fd3fbf3580ca041fdd46d4015 c44d30d47604429bf4fafb822eb24b90 c44ee64b2cdb5a8b1fd115c340877227 c44f7de1505618d368afb746aba20afa +c450191fb7ff5720113d0b84d6bec7ba +c4503a78011db2a55754d80ba01f5e02 c452fa86fec73fd4e44106778e035ac1 c4539a6a0c27f56e705b7966fbcc886f c455118cbd5e8901653fccffd52672dc c4591ca72c66573f91cd1273501c6c49 c45968ed1d167fdc0ffdc8f1b6ed5014 c45980d7b9a981a140365571dcc4f357 +c45b100b873d31946bdcb35f93671cfd c45b1dc8c70640013124415e42972a00 c45c075c4dbceec11cf08bce12a2d59d c45c673cfa4a30f9ac60ec3f847985b1 @@ -44639,6 +49830,8 @@ c45f89b947fbe52876d5825f598413b9 c460a38a4c715da0eaacf205e36c1dae c460d86eff86a7647c2d9868ca69050b c4614b631abfc821af96f2a271e0b28f +c461ae73435dfda41460a6d8107b1094 +c46353c92f8eee8b090480ab8c6a22c2 c463b11d677b31b1e180961bc12707d4 c466ad3275ea712a0fc7ed672df88e59 c46771eee379356ba0bc5b85faf2eaad @@ -44649,6 +49842,7 @@ c46aa6e2ce4eb7c2c6dbf5d5a9405d67 c46b1092d2a7e6aa68e644e4ad30d321 c46c4286b4fb6b749bfd0a0f676301a4 c46c77aa691016526679199ea2925536 +c46e125144e61f23a75d4030fc89e126 c46e1377b8cea2a5fad3cca83d877d6c c46ff90a0c56355ed15a30c9dde3ab9b c470590db0e884e7d0e49c99113335f6 @@ -44656,6 +49850,8 @@ c470bf5d8626ee62c03283f46f7d0d3b c4717d04ec723e5817fc900bab996942 c47268c247901ac078808f645e58cd82 c4729b8eb36ee7d62a1eab2af220a1f7 +c472cb4dff23f1849b85dc9f8ba9d7b6 +c473b5db12486906458eba2cada0ce19 c473c79c0e8a6ded20aadca1182daf77 c474253c76d1dfc7dccb4bce88ef7c78 c4755794978bccdbb54107cb2a7bf0ed @@ -44680,6 +49876,7 @@ c48f97e10d41b40b5bc67291438d6aaa c49053d543c99c0944c19703c0afd789 c490c814df083e9a8eb35a298104f10d c4912f280553171f766bbbf3d79a0558 +c492f414c050530bbb7ef5d3cf43cabd c4933f2f3c1776f96b9f60dc33718d0c c4939a757c3d0c20a74116560e5af9e1 c494ed1ecb81d9fe2377d5786dbecad1 @@ -44702,6 +49899,8 @@ c4ac1d6df58e0e945f162f89f2c950dc c4acf063b6932a89449e3c4009f4ebc1 c4ad67c7b1a59593ec8d05910f08dd06 c4adb19ca97567b9dc25cd7a64a0d5a9 +c4aea26fe37694972b10cf505af9b6cd +c4b15915456257859d28d98a2bbbe959 c4b34d21a50eae2ac399191f5fcba12c c4b42ce50eef0ef45c07ad31b60397a8 c4b50646ec235edad2fb28df35838dcc @@ -44713,6 +49912,8 @@ c4b771057c254657a994909263363167 c4b81c628b37101009bbbd0af2fd6ede c4b840caf4de2eb7697ff50004b9b8d2 c4b977e61d0a817a83007dad5551e186 +c4ba7b4a3139d0d312afe86758d9366a +c4bb9659e5c3dacdb35ca29e4e88a45a c4bc2be3e5377b353eaa33a42bf7745b c4bc66e63b16e3df3bfd270c50bdb488 c4bcd2c2ec81593a37abee94b7f75e42 @@ -44720,33 +49921,41 @@ c4bd40d46447352f64bcf8b4ad39bb8a c4bdba7c92f8b7c7b3c50f654a3b7d26 c4bdea410193e77b2cc058c8157bb4c1 c4bf11d1d39563da815eb1879447421b +c4bfc88e5d378e6e75f70e6f79bbce45 c4c0c7a36a8762209745a3a610824fb4 c4c17a9c83ac5b1da41bd01687e4c847 c4c2dc6d86bf1a729339ef3bbfaa16ae c4c3b5f4743036d6de3f4d5323ed9004 c4c4167c19c3924c71bc3a23d970095d c4c425cb629164bb3eb7dea729b4fcaa +c4c701958ec4014b1535972d493383f5 c4c71febf1443991eee6996a2042b5c0 c4c8a4ebb01703e9c3a8ad4de1e9df67 +c4c92a2ddc071fe6926737603737f5fb c4c93ad3a7fdebf25cd995f40da37dec c4c9a0cfc70f524f7c30a0ab2515641e c4cb586fe8b263f52a002ef6a24ba59b c4cc15b2c5fee2bd4d178cf1771593d6 +c4cd2c85f2e5c6f25675e3d4009b8d8b c4cd3dbd8970e6a6c0f17a710160d896 c4cfc3b7700ed841b886b824355bef4c c4d00d321844593f50e760071cd80f3d +c4d046312281b33e4779f8d9dbd5138d c4d1f2471808c07e5fc7ee72d5635433 c4d1fa17beeced06345c4e4d3fe356e0 +c4d2ad77c00b77bff556e6456fc589eb c4d4977fb23650b6f9456fdfa4cea0b6 c4d499f98d37985b97da5e6dd8404c90 c4d54b9170b4e3e2a1ecddcf71ed0fc5 c4d73cf316d0b452c502dbcbe2963cad +c4d7b8f8d66758515559b7564730234c c4d8493e99b0d7cb65468c2ed303e270 c4d84d4e95ce14b14d8f0f125d76564f c4df7e046b50f7138dc2ad70d6a1ffad c4e03897bac50d6b196b7bf2c027542f c4e1500581097c1b04e39cf28ec092fa c4e176587bb1981632b4c9287c74995b +c4e3b7018bb4bca5c0c10d0efb5d8c39 c4e3cb852eab970a38ac062221fd7158 c4e51065da7e99ced4d64a059da59150 c4e53172ea6b222e9e2179ebb258cf51 @@ -44756,13 +49965,16 @@ c4e7994dec6b14a3cd630346c6a30b11 c4e8844b98885c7f058d375e2f6768f5 c4e8d6d6380ee37ffb4898e36e1afad9 c4e8db87088776f7b9951ee4ef2d157e +c4ea0907a07d8b4e3a1e1b952d1aac2a c4eaffab17a5e6a73ee47cea54917fcb c4ed65284b1e47b3b80144bfcdbdd8b7 c4ee3b90883fc4983c04ed6758aa8cdd c4ee5f6da2d3e058a1847599855e7b59 +c4eede4751a7c0c6d8963f21dfe1f641 c4f0e77b2b29ebd17848b3d63160f418 c4f3b4d3ec588accb8d6432e5b4337c9 c4f3e1be0bd14fc74c245840ae343065 +c4f5dc4ce4317acce0ff4e8ede8c5610 c4f7951609423f0e328ffb3d2ee01244 c4fac24e126321360194ba6af2fc4bbf c4faf0716737705e07d5f1031ae8f251 @@ -44772,9 +49984,11 @@ c5000fe9cab2d3ba7bf875509c88c567 c500172eb063abb9a99f47ae9b3913c3 c503bd86fa9b07016343b111505c56e3 c504742e81f81151bad729ccaf5292b5 +c505cec3d68017362cff9ecaab9dd79d c505f4eb85c0592013cfe8d4b89ce94f c5067035b350442aaeaffb4c9da8e620 c50783633d2745981e2d2ab662d2bf73 +c50792713cd770cc65a6376702e55d34 c5097ee8e42df806cc02edb3c6247b44 c50d69ab0d80cc6da059d0cb36609d49 c50ebfb88b39645a7570f98d9089822c @@ -44787,9 +50001,12 @@ c51eef267fd033d892c2e892022d4be1 c521a8522e323b74fee779a9957d7c15 c52495669505f51a31c7563fd0b683da c525c74dc5878107488bdefad5b9407c +c52c99ce203536ae9ae1374ee24f9cc7 c52fe07c54359a421c3ffe85d59a5fd3 c530e658d0ffb6f9a0202e87a05706c0 +c535b98ce111c76da1b562fbbb157c14 c536b5568a0e40b655a875a2077473c6 +c53866cabdd0927a49d237a1ccd01938 c5386e8397753be181e1031b9ad161fe c53a012ef91ee82ec8182bc225331e73 c53adacaa1fee7dc7e3b4cc08af30ad2 @@ -44823,7 +50040,10 @@ c55c14bcd98a30543dc8d3d6dbba3cea c55c57d311b929804d6d47c3090655f4 c560b224da63063ddd7f7a11466f31dc c561002927ec366cf47ceb519a0856ec +c56174a8eeda9d9ca85ca3a65217c341 c561b0e66d08b8b3e7f78dd89dc03f55 +c561d5eda8eab06e3f3b513df66afb51 +c562ff38570a70e25b6ff23a854b100c c56375f9d4ac0e3f2589a828d8106d64 c563c96cbbaaacc95a071e0f530dffb3 c564c7730e9efffc2db639940d520566 @@ -44835,8 +50055,10 @@ c56d576c6a80893ed0f6381ee1ae48be c56e0a1f258b81ff542755060a160ca9 c57150d198d435055978fd0744e40e7c c571adcac4f87f9749ab6373f086c982 +c572f884895946bf7a9003e9e6de7876 c576724392a7e5cdf1e378948104bb0e c577889f4e7b13ad169e8898cc92d207 +c5778dcd8b55a0c7116257a86fe24e3b c577a6fab0f0307c520f93f60b6dc9d5 c578ce232a0ac9cf9bc48a3f19692eb3 c57976558b6d026de410bafaf5c7e548 @@ -44858,20 +50080,26 @@ c5841c4a31347a6b33603b24d73269c8 c584927ca2ca2d5f10283d1e85858d5c c586a56b0cf889ce869a197c3f406653 c588a469ec60dba4e42c89da2ea7c71f +c588dd769fd96872367bebb7f7f8899f c5894a6653b2849e957605101a36c5c4 +c589f8643c83a6d886f19c5b4bf99cac c58ce53b936a4ba6a71900c42e658055 c58d3bdf1f9173fcd3a4fca1d5c69679 c58d64c727c178987845783e059bc244 c58dce50349e590a3fe2eb3419cdb31c c58df4c44c105eb53767bd13f93787af +c58e19e01987cbce6f43538e4e6e204e c58e76d6a3898d892eeb48ecf918001a c58e888a12109a47496c129ca509e491 c58ff3a71814fa00becee9115024d6dd c59036b64143c15ec15728b429936d97 c59039c140764053dc091ebaa959c61e +c5912ec86cc7d738ddd7a22a77fb78d7 c5913891a163b9944264997f6bcdafe7 c5952ff0b0d0f0a99d71d5bd51c0b874 c596a1507a56c03913dbb44c45cca681 +c59788631139564f6cb8d4253640e949 +c598a17b3773b64fa12b9e01f5881211 c599b4e3f2ab68595353705a0fbc6de9 c59c40f137ccbee7826475a8163e893f c59dbf6f49807ecf10a15ef8d88254bc @@ -44930,13 +50158,16 @@ c5dafe3a9958205f1aeaba2125c6bf5f c5dbe7257dd1f9adb2f1ef753febed5e c5dc65d9ed48fde2fe3ab5185b9f64e4 c5dc83e211614d813479471b23b9c891 +c5dcfd714abe7db28d6b87e8593c9c29 c5de46be0e713d233b61aa0c9b092601 c5e039c9e20862b8345dc7fdebb7febf c5e11e5a46c84c0dec6bf8f5cef3c2c6 c5e3c27f4e673aeb6e688fb0d9887950 c5e5a7063c4d0449c74df5c62e16a33d +c5e752b6957fb1ca0a9ec858e3967a3f c5e94b735b177c02f5bbc87083d21501 c5ebcc2395eb661ff434c266ac8e7b08 +c5ebdf8ac97c89b243f060167ebfb4b8 c5ed0e8faf4501488fd4db7782a444dc c5edac9e6c51ff0a49c007b3624234db c5ee0e951ce5c40b4cfb194626fec6bd @@ -44950,6 +50181,7 @@ c5f9674742f4248147e2221731c4b361 c5f9a3e111567c01c0003559d04ef8cc c5f9aa4553498b34656a23546cbd36a4 c5f9e9e4f9c8f897698a8cec1c95ddab +c5fa2570ce776c1ffe9598a44a44a8d7 c5fa8067700a448ba8df0102be559a51 c5fb4085cb182692f9a99ff38ff30ab4 c5fb88f26bc3d448c612a94185962071 @@ -44970,6 +50202,7 @@ c606e36f25d6d5d5a118a43698aa861f c607232ce5757e87e00ded8014cfbdde c608fecd5c00bef5ad0d1dcaa549fcc9 c60a7559ad4e1f4ec715a972902df8ac +c60aa9530f6b67f1416fd405252e1941 c60cf58c546bb5d7ea53e335ed99b1ed c60d5b54894272925e013177814aa48e c60da1b33bd921c11f3615026e701f05 @@ -44994,21 +50227,28 @@ c623d062ff30da59a069a76b3db13a6c c62410754cd50812dbd52b5265914d9f c6282bec2477c342af3f8e6032e57b87 c62a15086143d5df014198423ee4ebda +c62aeff574bb3e037b7b02078a95f79d +c63073f4d9c4e862e0bd976fd2a70cc2 c630dc84d69df6e338a0ca6b75b140cc c6310314b5b89790bfd37a985a7382ef +c63218a0368600702641d9e199749e18 c6328e1e68d03564e530190743de0bfc c6329d62d95629cc77f664f616c92f6f c6343d403dab3e1945eb202390847759 c634a39654e62d92bd39ea9f3555d53d c634e76fef1cb882789cc81fd3c6dbc4 c635e7b116e9a604f3027d487d635702 +c63c629e8f9bf8da600a58e7629ab146 c63c6c60068c83e90f391da7cc07f990 c63d18482f9403274246751e1d5b6119 c63fb774d67ceda3482ba7da8f20a1db +c640a6a5c5d9f5d72ebcdacf3f154df5 c6431ad0cb6f22a3448e0e2494e81558 c643279cfded35d12c542c7e8150fc12 +c64385d0579e88b4dc08509870d5cf5a c64469e6751049c7bb3338e97fd5e2fb c6447bfa13f859288c154ffce53dd7fe +c644ed1651416f5e75958916913c8414 c64577b9db3f2006b9dd80a887ca31d9 c6479a40a2585b95965dd6a6c3336dce c648fdc1e31804f5325f0056a5e2ee58 @@ -45016,6 +50256,7 @@ c64aec3ac5efb02fdad26684db4fe847 c64e2f939e5637f78ae4a2dff7a4181c c64ea5c2b4e416411f702895f246096c c64ede9f0be55737854bf3157b8f9411 +c64fa62944c6bc2802ea781619f0ede8 c650802d9c0181a93e070c224c1eddae c650af6b0d23d04e098a0855dc78ed92 c6514a54029b4961f04a71abd2172a16 @@ -45077,6 +50318,7 @@ c685faa15c12ec1bc5f8464b38e988e3 c687ef6f5620bb9329d397b77c47dcbe c688da41ebd8ad5bbfd7e46cda5604c2 c68a65af32108fc340a7165f781849ab +c68bebc740e6be719b6b7d72141d974a c68c436a8a26dae11f8c67df7b4dbda6 c68d1254eb4a2180788975f1bd39a281 c68da41d74d521055b7afd50d87ff83f @@ -45085,8 +50327,10 @@ c692b00b092e42b392152cfb305be8e5 c69419c3817f65f39523177c8a778538 c694448ad5e86dbf1e7d39d083f75ce9 c6961b3a24b3f5216ece4370978cff07 +c697908bf10181a7c531dae41190b41e c698de19cb20a9a74f0ba46034880077 c6996a277dba162c1388357d6347636d +c699986f7a143b5c46fd59d5fb6ddba5 c699da7c803f61398439ddde77a4461d c69a1075a91581fce6d17f42a933a2c3 c69dcb348d65fbd507af3e1baaa50b4c @@ -45107,6 +50351,7 @@ c6aaa358b602929411d4f96175b3e086 c6ab0340832b0a4bc07704616c2ba3b8 c6ab544c8df8fc2988704ead969c64b2 c6abbb66100df5db27cf0812208afada +c6ad8c77879bed7dcdfba9b75c0832ce c6ad8ffb5fce03f51cb700d7fc3ecee3 c6af32f279eec1a249a896eb77f7fb5f c6af5f3cc053f8b1d4930cbb47c7d45f @@ -45116,6 +50361,7 @@ c6afc912c6326e5378e94b85b4edff7d c6afccf300c0149dc89de24ba737da22 c6afdd7e567e1fa4cb8f5028d0015175 c6b1001b750a6b10825f4494d3c4678a +c6b277107f6890ec9a212cd4d5892004 c6b2806de12a5a66cc5376e988ca0dab c6b535dc9bc88266b03bb2cc349e6068 c6b6e3366421f781f4a5a6cc374247a5 @@ -45129,7 +50375,10 @@ c6baeecb155f97c7bd3c48d98f1f7926 c6bb001c795adc83cf440ab83d8dba3d c6bb0c0c885f02acf81b1b53b6b09b78 c6bc426932f5e0cf2b7ed0393445f965 +c6bcf4f2208a01fdcd5b4a699d3ad392 c6bd35108fdc4f275b224d229e418cbf +c6bd5464a670524783eab93c12540692 +c6be4ff8b1e04cd96ec6f7a9cb1f67df c6bf404bf3479edffd886bccb71d26ec c6c1acaa047ab98cc71d69fc072ab930 c6c25242985cb35843d8ade137334c07 @@ -45142,7 +50391,9 @@ c6c5952e1fa10fc9a0fd62c2e433e873 c6c672c6a78e6d751923c4f178ce14e6 c6c79196ee1e90018fbe700eda454ae8 c6ca3c2ea6429c476cc95b25fab84352 +c6ca9feda752472eb4f42dbee9e59683 c6cb0fa1a72ba56a5a4c0efe27f989ec +c6cb5f5956c0fb97073391f20ba10f2c c6cb6b20ce632430ae30abf79ea21e9f c6cb84ff6a66c0f02b102334fa107cef c6cc0c0e472493a5af5cac468c80f77a @@ -45159,12 +50410,15 @@ c6d4924cb82d81482e951ff092faf570 c6d7a1cf407ce7ebc505a2e147dea604 c6d8201405d94e266c89e78acaa7dfee c6d8f0b8371a993693172971ed0fe7bc +c6d9129c7e7d3569e6455c50dd021c2e +c6d9d4c0589bc567931ca17d72b3081c c6da0de9ef3ecd42437b0e0362e51a1e c6da68ca121c7b17f9e9c4355d6b3f61 c6da7fb7c3d754f20b5241df86f65849 c6dbc40140a5c96ff6d985a39e2db80c c6dbec94eb6f136960c66237905b02ad c6e2b293c59b14057e2a996788864134 +c6e43cac45146bbacc473016b3a7f71c c6e4b1eb0fbd72679fb91aa903ec0c9d c6e5a88467e02a2e741728ebe16552fb c6e5c9cdb390354afd93bc991b365237 @@ -45183,6 +50437,7 @@ c6ed02e7e14293bf59b0bcff341955d6 c6efea91fc977f7b91f8d2a554b26b6b c6f0fe7a4d2f6d4b8c74eea5a46d9789 c6f14aa8407611ed97b76ff2e5b06d21 +c6f1b02d61dcea91f0369b86d49929a5 c6f3bfc245ba29dcf7baf2a59cbb63cc c6f43d367780633b44be2378af33f592 c6f5f4cdee69523821f85e10c6125c4e @@ -45192,6 +50447,7 @@ c6f9558a039d89d4af28b0796d232118 c6f9e5099f20fd67419422b8d4a0a4f5 c6fa1ca78a57b50ab7008515e3a84474 c6fa200cf2bb3f53896fc595bae9ac95 +c6facfdeda4558a10e734ff7bf941352 c6fb552e975e5daa35d990d47bd20c8e c6fc0454ddeec7f4620e41ffae31c452 c6fc4ddf9bb212adaf28be0c0015414c @@ -45209,12 +50465,15 @@ c7042fe39b8cb7476afd3b3cf4dbb405 c70535372cf63f08f54b5044fc20db14 c7062774b23a52752e51fa5df78cdf8d c706f0c07e4d14e153f0e3cbc2e75748 +c7072ddce8e19f5c2daffa98c2c27b0c c7080c65c583fec8c7776e866001a7cf c7080dc19e47592154ec3e8c87d97000 c7085882f8a23dfb5c4c5396cc2224cc c708e290f5be82322e7b548f1767fd80 c70966a0cea3d1e67d8d8cff59493ec1 c70af2fc90eae635527a842155fd7d6b +c70bbbeb2b8ddb32422327615ee2147b +c70c7a762a3cf80684d78699361798b9 c70dbe1f7c68539607ea9f81d3206ce7 c70edf444f9e92d215e4f7964994a1ac c70fe8047dee6d355710a98111452cf8 @@ -45229,10 +50488,14 @@ c7181d97e95156ad0d62a1a25bb2db4a c7197dce3e9ba7dd948ce72de53664a2 c71a59f0ff70e09bdc5e3e83661bc800 c71d49c581d77329d164c8553497d6f0 +c71e25456e1d7f12ed7c162aa7ad6f29 c71f6d315cf35f16ff1cdf16cf0405c3 c720dea360944c13a51ffd006d8768a6 c722d71c2bc0447ad5221267938c0c82 +c723b334597dc2a8c83c663d979954bf c723ce2990bf2bf08cc2f1854cb9b783 +c7241d647d37783049c6c3f0231183b2 +c72795ab3dbf8e6ccdf7044e56a1788f c7284355a3d4519cbb46679fb332817e c728cb2ea61704eca6fa6a240d7947c8 c729628222fe16f046e0c7427935b47c @@ -45245,11 +50508,14 @@ c72f177a46a275922a451e3fc21d3c85 c730d85b4a69f7b06ecbb7a84532f22d c730e89bc12677fe8751759f95d93ea7 c7310ac99bb45f9645c010230ed0d354 +c73195691e8094afbe554fe75a901d5f c7322ad004135c3a9121873e6b6a1c45 c735b9536a767af882c75e27e3e732fa c735c5e9a7a965f260c1427ed9d9196a +c739e90391906b7515afa9267dc384e2 c73ad8fd2b7799542ee21fddf1e897d9 c73dccd08a572489bdc10819f5bb5dc7 +c740584f62355ade232223bbcb1a5cc9 c740e2008f5ede17086a34db3edb8a0f c741288189bb7677408cfa5f2f8154d3 c742edbb4ea452f994ed73301baa7d06 @@ -45258,12 +50524,15 @@ c743363528ae25a5b140c79707209b08 c7436143e7fed0edf980f645319e2010 c7492d5a1347db54b7f4ae4ab25fa3ec c74a736de04de05d56dd7edba3ad60d5 +c74c3bc7abfbcd6c8172db80b1f80bd0 c74e70ce3129e46e9bc6c50378d7282c +c74f79c997d23e12c7f4c18857847325 c74fb91607a7efd2bd77f2d8f209be23 c751ca2c54aae9a01f5dfcc338691cb5 c7539595afcd8da6c86b1297f5457c9d c753bee58a25656ec257e8eca5fd9b86 c7557bfd175269f202b33b35b1887f88 +c755d92c465318d67a95a42ff102a670 c75687951ace005462de49fa4c2609ff c7584430278bcbddec0f086fb0bb7443 c75b710431f2ac27a805b99e1c9412e5 @@ -45272,19 +50541,24 @@ c75ceb97bc08bcbb71f1f028d873fee1 c75ceee01b61a3b1e9f1a75d838f4201 c75d479638dace5bebd675a76cdc5ce4 c75f1e5fb47ab37449e0b198e21ac6e2 +c7600aa21af89171e618130696ae0109 c7602d089bae6752f4c1dc062045cfce c7610687c2da77f58f4fa21005ab99bf c7629662d58e8cfd7166bbcaef487a72 c762f41a18c0ccd92525bd4fc16f660d +c7637cf7a5e2a2c2b6e090ae4c412887 c7642ade620357d1933d84f25ca2c3b0 c767e6095c17dabcdc0e5efb7ad9a750 c7686aaf16a60bf1e1330d6bd28c5e87 +c768fcc1f4fa8da7cfded9120f31c917 c76c0f412e3a97f2b1ee36dd3936085e c76c38a5d008c5445f20d46ca68efc7b c76d2d4b4d719a6a21a923a2ab8c535c c76d4351b68bcb479a87ac4a2cce4d3f c76d89f77df9ee4289de4d28f388b0f1 c76ec6e43fac509f5204b89dcc11514e +c7700ab43060ee61f55df713f2eb81f9 +c7714371c5dc1d578fc842535e1cc5b8 c7718988d5a3e68fa48c58072f074b84 c7735f072f8f835c3f2b2626bb830ed1 c77379ef579d1b8de864f395d34d09d9 @@ -45314,18 +50588,23 @@ c78a9a9821b3466939194bbdbb2c0f9e c78a9e416e237f0343a540b084cbf2f9 c78c9221587fe71c1ea20474e0978c75 c79099ab1b6c02952b187f1bac00e18f +c790f24e0eeaff96ca67ac67763b364f c79121b311408be8fb36e4735835091d c7915e2d73e2aded22ecf7479e43dc3c c7921ea53e58b7944ca527a32712b529 c79462b2607ace884103b04119686c15 c7960a7d7d53f5baf5d090b8d49ebb9f +c799c072d481e4f708c970d26de475c3 c79ab7d4e57cbf3ce8cd6079880b21bc c79b349636aac6cdd5f205f5e9824a0a +c79db678dad54db90dcc02f17d70649c c7a027285c1be04cb67b9da83c3c495f +c7a18deedc4a4df65a0db7102ac383e4 c7a34f871f175fb71ea37ba52a9e03ee c7a4e47f8be158d886db493354a67a03 c7a6f4953375a3b66d2c5a3c3bafe6f3 c7a77340680547b3f9f3b3b466f56a1d +c7a825eedc456de7caab63259d85d378 c7a8b3cf219ac4232bc913ca70248b9b c7aa84cbe9f95db12b44c0ad10a6222f c7ab9c1ff10139687982ac46e14c8cc0 @@ -45336,6 +50615,7 @@ c7b0a7490635200cfc310c6e6e86e1b3 c7b0b1f2c4b23a0216340ab3fd9af285 c7b104fd4659def30399dbcb210af942 c7b1f7aee60dbc2b71f4b068a617d28f +c7b41029864e87520992088df25544eb c7b4346548c2c06fd779c8a3a3ab4ad1 c7b4de1a6f8711ad30c694dd70fc2c8d c7b63d32d804a071af1b0a836f590232 @@ -45345,10 +50625,12 @@ c7baccaa1dd19652afd1d6af9304d70b c7bafb2bae3c34cbaa8c62ceea56d328 c7bb2f9d656e4f41a99f7e51aeb00bfa c7bc2bd51ef03d1b1044447d54275a40 +c7c0cf551a0ec9802f529f10d55c8347 c7c19c54b109d1a13087318dcf0051f4 c7c2a24e0d8a067bf6bf5fb999bf2456 c7c4735459531a21f4d8b1f6cd6de919 c7c8f4c391aa75635f4992751ac13af8 +c7c9618661bb3ee20ca1d18750e5f82b c7c9a845dc027f1f06a097c3afc1b1b3 c7ccf5ba87c4610dfd35afc0f954aba2 c7cd31329974d3778d22aa7c2394cf9d @@ -45362,20 +50644,24 @@ c7d3e51e8730cafe7bd679d2610bc237 c7d409f75f4ff5c7d16df32a870d3b67 c7d51e61b6e388bf45e39403e9791f2d c7d568f4e87e2e0b71381c24d47ba0a4 +c7d7f6357bac6db84521cff2fca3b121 c7d9085e58673018079c2a99f5abc9a6 c7dafba858c458124024830aaf740a60 c7db8ed89e4c747ae2db9ab9528d42a2 c7db959bd7980aab2c939c8dd4b0cb47 c7dce23b322623c9221c9f66c43db118 c7de1005dc070d363817726e4b2279a2 +c7de72fbb12977382970c8f898bf7a20 c7deafd4c683fdd9ab87e061cb4dd08b c7e01879f42002940afea434b2d42a4c c7e0231e3ff6a3f925fd519dcf73774f c7e0a0864622d86e21d88910d0675821 c7e45738d36157795b31019fa962e7fa c7e4668a49a72f16fd2b8863d3fd5a82 +c7e658b6cec5adff514ae393fed01f3e c7e69e73b742f06d308661d7be99f66c c7e6be298cbe1139d76450d24bb97452 +c7e71e44a71aebbd205639555a69503e c7e7cdb1ba82eda7e4384d916c571bed c7e89f7a3efc8af530845ce85261b51d c7e9a5f190038c704004578bf30e53d8 @@ -45400,6 +50686,7 @@ c7fe3df7302db1cd7b15adbe6ac12abd c7ff540959cb65bcfd86dbb7feb4f240 c7fff0d8042a020c2936e3200bbc6be3 c7fff82a77da14caaa8d3543de7e5ce0 +c80032552df822c1d26d5b7716a90b36 c800fbe46a7b65bdbbfbd9a5a3a914c2 c8010f1f6d8912fecba617d37e6cb05d c802aab557ea92a92bf03a1450c89110 @@ -45414,7 +50701,9 @@ c80a7ae9a7efdd50fbc5b8bf3d342dd4 c80ce3bc1c73bdcddf3706a468a7857e c80df78accae9c0c0c965466d3895bde c80e3a6854e051a169252adb44a59851 +c80f31e095d424f551d13172c61ec84c c80fc5cb4f7738c6db9207ecf84c6ecb +c810d3d928dc765339613a2d8cfea7fd c8123d7fb18c8eaa9ed80ee37b20c238 c812f096ae7a22fa7d682441b47f0fd5 c8153be159e89ce02e09227e036d1bc3 @@ -45424,6 +50713,7 @@ c816fe2ac9c18dbe3615d21a04be6826 c8172e37743d093d5ff8e03298bbfd29 c817ef492db82562b13301442fa8c6ca c819b57511198ad3d062c61ac0932021 +c819dbbb5cff2598ef0a4099f12ed04b c81c369a5fa057c5f1f27c80671666e4 c81d1bc11d5086e22438d8c254afb329 c81f576252da8786f483ad6131e3835b @@ -45434,6 +50724,7 @@ c8257314936e2aeb839b07a4ac964769 c826140a3f04aee9a2178d5b669b6605 c826e3ef46a84fe05839dd8e47d48923 c82702d9d59fffa1948d946280fb505c +c8271589fe0083b808128d5be3fd32b7 c82a2d189f943836c27ca9c5fe29e715 c82dd07b5259a426e7296e7e9c63021a c82f244271dad1115bd197d6c81c1fde @@ -45443,6 +50734,7 @@ c8328cce4f6cb7a5ab35d7aa71cab7b3 c83293c7d6e3349799309d06a2d41c79 c834ccee463cc2db98ee91a8e17e33f5 c835248adb6b18e34a45770d864713f8 +c835fd0a00a5705a3ffddfbb183e7c67 c83649761cbf1c7f1bb1fabf7b5820b6 c836c29d4d71f5119ec19079f9bb6d94 c836dd318cb29a982650644ec6158d94 @@ -45459,8 +50751,10 @@ c83e1ae4e1c6123b5165e0d13697fc73 c83efd37c2b08d44e2134110ba3f00ec c83f9e1923c2d1c0d02108fe99889fa4 c84200b4d307c8b3de24b7583c940335 +c8430d354cc6ffe4e10cf399298c93dd c8435dfae6019baf74777c1da167b2f5 c844716cd21ef17efe8349dc9545cec5 +c8460050915db4f9aeb8291e6559261d c847548460094f7fff5fbce263852a18 c849a962f01fc1a3be1b81d30c2060b5 c84b136e58c06e6772cdddf4af250960 @@ -45477,9 +50771,12 @@ c8521dfb6ee85de25044c97a0fdcfafd c852301e9b2483596139cb808929f0a4 c85244138d9cb1f20231315c55759eea c852b9d7188a3db9848fc753f938001c +c852e2425e14105f7fd695fa757a4cdd c854029c2b23d64e4e3c474e28e9c2df c85403125c4b4cbfa64d97eec70328b6 +c8561dc6cb0acee7096cea894734992f c856593ea7a2bbefe70128854c0c388f +c8593e789e442cf2ba8f6a28ef8f3b5b c859dc09dcd82324056a3e6be88ba4c1 c85a3395b71528c68d6d4dd8746e7d8e c85a70c1840dcd26833090419bdf1490 @@ -45499,6 +50796,7 @@ c861e0c9d0205f311a26b5bf966a1337 c863763f859c39f46f9c92d58b522366 c8642c1f8b83f2e0bab695e912c1e0a5 c8644d2ebf65eefac587f6b554f1febf +c864ada1f72c95c46cf96f87effa2c61 c86545926bbe3bc86eda43a3e0400bac c8654abd70d5e015e4f74cc26ac063b1 c865e7a9ee3890f0cf12130c94a3044d @@ -45517,11 +50815,13 @@ c87433fe1590beff2b859cc14cde0c65 c874be529da09a0e76af541c9bf00d37 c87568f69a0aebf2f3aae64e3560ba1c c875f0e655379f95cf549c31822e90fc +c878cad2f7e1916cbbeeb9741954368b c87976a05e613d8682059b7d09b8a5f2 c87b35351acb00b81d44cd2fd8212bda c87c4efb0494cac0ac55d838840699ee c87e04d4198aa2fee677f8d01f5b919c c8826f70c0786fa77eafc12a10d76a03 +c88272c1be04f9373756626bddb1aec7 c882c117c0c1286954e385785ba7a66f c88301c7056f1754d84503292a6b8ed6 c884da28f491ca078e976901f9b7a327 @@ -45551,24 +50851,29 @@ c89483cfa212dc73bf59dcd706df7280 c8948640f17a05d1d31dc2650dab72d3 c895b7e2f6c0bb9111c1dee0218ccc79 c895e6461912d260087dbf5f99406674 +c896060ea3cbbdf3a8c737b5b082ba46 c8962e40ba6ae75a800e57c38fc9fe66 c8974d974af16752b60c0b312db53adb c89956da8c82b79309037eac0f2442da c89adbc80cb1deb6fcc806653e6de031 c89f735bdeefea9a4fff62c4c225a7b1 c89fadecc776f7c981097ab95690b8b7 +c89fea91c082ece004cab46c7f01537a c8a1a878e242d1b73c73e6caece56fab c8a1ee4a31ef64aa0883ee9b655e549c c8a1efd86b988dacb7bf61cd8b6f4e2c c8a289540555ee96696968dc96f0360a c8a4b35b16340bbc2d0a13812c8afc3b c8a5a517b8d94cf17744931719050a52 +c8a6859c0b562a6d404437230c30dd88 c8a9c9c67000c3d43e29816a2a174df7 c8ab56369f7cf2366dfba335740b936f c8ab6b2eb580ad63595d8962a01b1da3 +c8abc5f6ed32bc0389daa3dec5243f64 c8abe582b50455476c1e49fd5cd73601 c8ac2162bf85b9441c967b48a4e05015 c8ac24963996be2f6ac30c4ff031a543 +c8ad716323e4d86242d5f6653eba6cfd c8ae64f77d055c29af04d1b99879ea19 c8afe0eb01a093abd429092c239f6c2c c8b0f12e343b3b0ae763153527a0220d @@ -45581,12 +50886,14 @@ c8b35d72c0b821627d28ddda166abc05 c8b3ac9979d6796bfd749d5d8207ce74 c8b4a5d5bf07af6f91e35a5f555a2309 c8b4b8e5b7dffba06ea08095a51e4044 +c8b55e42d37b06a2afc517ecf10bef12 c8b630467dd2390827a24416f410e49b c8b6542d2ce75d2488b777580d348bb9 c8b69169000561c0f0096cb09f5ab3fd c8b6b3dbee356c8474a4d09a225d14eb c8b759b0bee0c722384550883cfe273f c8b7a62ddc9f6b1e02e758d8ec267ef7 +c8b90d02316cc5bead8d78209e6967ef c8b9b13ed852c6206e387a91306016a4 c8ba3d9b03e83b98b85e490635240802 c8bb9191236c7eb2116b2cdcc3c543f9 @@ -45599,6 +50906,7 @@ c8bea55512fe02a005793abfe125ba21 c8beea9df289fa1774975ebf397bdce7 c8bfcc1a96693f77d5c7af5b448a96e1 c8c0227ed71ea368d0f985e75b9201cc +c8c1bb3eccee1e5d5aaf048442d8f4cc c8c1d895ae828bb4dbc90b8eec29850a c8c28221d79a1b941c03e48dd9663ad3 c8c2a02245a9e46b81a4f9fe2582f1a9 @@ -45609,6 +50917,7 @@ c8c68d6211430475a7212e24ad75edc5 c8c73badeb417f5c8c5a4c166d53a587 c8c96fb162ac7e861aae73d2a8be39a0 c8c97bea3475b2eb9988ce45c427ff8d +c8c9b61a2ef2bdce0f97f635fadafc52 c8c9f12a7bc1fc700a14ea5e63980373 c8cbba8ab7f883babc524a116d3fcb6e c8ce1003a899d28b8a729fdd083c857e @@ -45626,8 +50935,10 @@ c8d6781a51f0c8a43e733c21bee7de10 c8d89fca7073c5f74a431d74e7901057 c8d8a489406780a53baf6fcb389321a1 c8d8ebb214262ebeb2869816a03b0bb4 +c8d8f4f28ddbf2a0b7bc821e52112dee c8d98920d5512f98b4915f33103eb491 c8dba5887f4b01570a76d35f0d008fe9 +c8dbbfd8f75d37005e0d07b042b6e063 c8dcb10c17df7478f446c6038997d8f8 c8dd528c1e2994c710f69c6741b76df3 c8df2997ea7fd5871fffaae81ba5963b @@ -45641,6 +50952,8 @@ c8e3e65b0302151af1a2bffeba6470c0 c8e4cbd62a0e20a93335582ade9c0601 c8e4e1276755d216fd037c2484f5d132 c8e523305bccc2da581d7f17798fd55a +c8e6bafa99cd50e6d116b6aa53cdf239 +c8e71f0ddc54427dd93fb0bb913891ac c8e7420c6a217fe0afa11009174a0aaf c8ecaff0982b1f059add2ab7798ad157 c8ee616a8e6ed0b1165ab76919ed7e6b @@ -45649,7 +50962,9 @@ c8f135d7af0845736762808fed834738 c8f2bef0588cd54459868295b1d046ea c8f491c4c56100365e9d63132aeb4283 c8f503beefe8af4c18da6c6fe3f3f9a5 +c8f6799e7e6989e6a52fee2f0adfd039 c8f6d19d949c950b36a114fb84df344b +c8f742259843e1b9b7ea04538ef75c56 c8f7e0b244ffe3d7ae533ad20b75d45a c8f812e1700a1e978943848b3ded3990 c8fa2ff944098ccd45024883e5359b73 @@ -45661,6 +50976,7 @@ c8fd21537f61f4717dc6e322e8f37947 c8fd6123b876031e8c7b2e7d9b5a0b55 c8fdca28c267e40b7fcbb0ce7dbf7aa3 c8ff734e4fb5c6ec210e12e1ec134830 +c901653ff788db627f17d47b80965034 c901c464200aed59fd677b71d4559104 c901fc07f7b1036de6bc7103c29f2aa2 c903d4418bb97cd067d64b47f41d2b3e @@ -45681,9 +50997,11 @@ c915acf60cdc64e894f1b7de044f1364 c9176bbfb6b6c0b7c8bc9c33ca65b7bb c918c017282b70c1a95fe78f91e3f05b c919dd4b16e45d558ddef5d5579260f6 +c91aab6ea646b53eed33870fb3343c28 c91b2a27d62731c50a534a83dbcbbd7e c91b5678c4d73279b94c646413904116 c91b5ac998b8cabd048a9e36afde00d1 +c91b98e2c6d55e3840a110e84b24b0c0 c91d1e87705de052479101682fd876f4 c91d570d2ec34754efea1d2162253c9f c91de6d658d6d36391c00275d8ccbca4 @@ -45691,10 +51009,12 @@ c91e040bf3306204bcdd84cdf62f5c9d c91f806dd7cdb5f4fecd5de239881add c920b5bb4c8edcd31b3e3d845582f2ae c920c149b18d940b09fe26805bf56180 +c921279b1709a34150da1a660c1054e3 c9213a7149fd3446d84d6526dd77ddad c9222b63b382e18723d3a89cbc4d8caf c9225e4fdff0e0efb5cf1e195adcf539 c922c72b0cfe251781dca5ded5501c75 +c92314fb0587befcad7b4de93bbdd5ae c92614ff485a23a4259f33a6c462757d c928f37526455d9026f1a9c7745f9d47 c92a5a113cc9729a620ab84a375a8a4a @@ -45703,21 +51023,25 @@ c92b45909a63dafcb6dea8c675b62fa3 c92c22bfc5f861a9a5c9ecf305c450fb c92df6e4a88a28a1df4729ff12d6dc13 c930a267e99e4c905a7eac9d45202d7b +c931310b1d3ee28c9b31a553e18cb9de c931ca08fc676edae5222e6ff8733d7c c9321c9a64793c94f017c4714e9a8644 c93254fe2f05f0c7e90471a48b447b81 c9357051355651603ee67bc3c577e93e +c93614c5622991a57c2311ae8de0ad6f c9371a60155a352ce4931fd252f8249a c93813a60954bbd1cdab7127b81b1ecb c938d8c56b4b4bb80c3ff6209d1d3cf6 c93a3797b5ffcbcf0525b3e88a95a7c0 c93b8088eade7160a61956f349cb8393 +c93ce1695d6e1feca910e911d3bb0798 c93d3a51d43caf483fb93c36c2d5ae60 c93d6e4b1a2814434ec1dbe893cb4361 c93dd6aa6c4ebee036d2b79f7b89e9ef c9409d7e3053ae782b65bf2d83d44e52 c940fd9294e4d36243cc992e169d6cab c94232a673eb23fd3128dfed5a88394a +c942cb73f60bfb085902ad63fdba42ac c943aaa999a395a962ddb811e9fac405 c94450d0cb51be3d80112db87762a978 c944817c9eec77ab2dc24d68d22f06cf @@ -45773,6 +51097,7 @@ c9766bfacea59e7eacc27fb8e9cf2e7d c9769fffe7e1fcaed0d692cda5f11cdc c9789314bd1bd6a0edd39f9155ea881c c978ce3385658d8d3d6c8a840e330699 +c97976b2fc8fce997880d5b6f6e6d7e6 c9797bdf2c7da6318c7fec7b223c4e76 c97ab0365338e7d4244e20f875174a46 c97b653e416e2c64db919fe095a97c19 @@ -45781,6 +51106,7 @@ c97eb85a03d93ce1d4a1493d6cc4c73e c97ed0d977de1e9a8e9503277c634f83 c97ee1594524cafcb26347f9e7dd4912 c980388e23b789d7776a94b93e42f472 +c981dbfcfcfc21e837cdab38a85df79b c9838dd343ec62a3940595899e15b1dc c984362066835bd1e28cb56e3c49b93b c9848145f2d1b74ed7fc25535dccdcca @@ -45801,14 +51127,17 @@ c9954314c0a4af38dd26a0d3c4d30543 c9958e68d95edf35cc5d1aa84b2be76b c9970a491af9e7e0a7abd25db95bdd3a c99780d5fe04ac61025d19f39e1cc4d1 +c999ea5073d57152713c444b103fb0e0 c99b76e0bedf2193c2c6d45296060ac4 c99d64fcc7729d96d1d989f1eff9e437 c99e370b202a31e415d5f769668126e0 c99e979a37d7acb1e02cd491833341ec +c99eb1d29964c4c22f5f0b8392b43c86 c99fec6b22c7f6e8c35e14138cba7694 c9a022521cad9220ee8deda9d971dff6 c9a0fb60cd5bdbf0562e4f2754caf23c c9a2b8700f09c71cd0613822fb6d3047 +c9a2de14a95ee757c70e62adc5b08b8a c9a5eb4ba38e9545ab6a78c11bae39ee c9a65923983f38dea3aed96f15da702e c9a74b268e8990f7ed4cb430974b0ce8 @@ -45817,12 +51146,14 @@ c9a99e2ed7a2ee24774ea1a3e7b7f9c6 c9a9e7353d2eb74dd657402946cb62f0 c9ab57d79e4f25662f87a10aeeda22f5 c9abf4b20e9ba9daa813e94774a6b70a +c9acbe927d44e8b7157f834e9cdf3d57 c9ae773056f7d370502fddfa70488977 c9afc919e0d692ee80d23e1e109779e7 c9afd697913f6aaae911b4ed5262065c c9b10c0dc306f1ce7063eb5d49c97527 c9b16953a3189f9f0f94b4b3052ba4b4 c9b17506d16defebe23ce186bf84df38 +c9b3d454f31c4cc168857bee655bc5f4 c9b6d2f0375bd2edceea6ca968ef6425 c9b77d033120de872dbe1b0ad9cbf8ad c9b797f60ebcc499d016853ee48f362a @@ -45836,10 +51167,12 @@ c9c750a36f45e640eb05b2e1d65c01ba c9c77a05d1d96da5fc9069ae06a1310b c9c89f7a992872e934ff20257edc155c c9c998fd4b3e553d375689ae04fd78cf +c9cae317e32226fc94e7430163921bae c9cb06caf8ee9cb407b9db57679b2703 c9cc4cb6a5ed8eb243c7287b2a43fd47 c9cca50aa0ba3381e989611825ca5a46 c9cd99ad30f4d427ef928fa023633c59 +c9ce5680d2bb07e38b66d2b5f315ca5c c9cf52c97b4a3a7f48945f5fa517552f c9cfd3d1211f6bb16c6952e36fdb0771 c9cfe17cd2c973cd608d0306cd2039f4 @@ -45847,9 +51180,11 @@ c9d0fe9825d0a63c7c14d390b936361f c9d13338148ac7ad7feef02197dfa392 c9d25ed5c49fb803f86c00fdafb2a912 c9d3892d859243b65217fe5924ee3c0c +c9d5c9134126bf63efc703a0c55876bf c9d7c5113a9fbc54ac0f50e3208cad40 c9d8afe4f371ba66ddff23bf9c1d70f4 c9d988ef31909e06660ede158fcfc6af +c9d9affbde61e65dcfed1ca3af43b833 c9dafcbd8e6e35d7feb333f071469f84 c9db0ed241d3ca248906ef05a2a951b4 c9dc0c17ad22dd9fa0c3073758bfefb0 @@ -45863,6 +51198,7 @@ c9e0c78bf82650a462055f7494e70950 c9e120d78b2f76e79e49841078cc56ec c9e22bfb0eb621a504869de732befce2 c9e25c56e3ef86c312aa1e76ede58b83 +c9e2ba41a5d989f74cd999209d141665 c9e479668f5783a53e0de5b36a0484e4 c9e861f2b20e636b5121395d093f37c5 c9eb5936ebaf1afb70afb07442680ca8 @@ -45870,27 +51206,32 @@ c9ecbcd7bb0738c12c02958c3c291097 c9eed3ad3e58906fc69e0d3d67da90f5 c9eeeed8b519da2b96f6f7674af9a9e8 c9eef4d26785dcf56e5a415b8bc929b8 +c9f2d48df783c78eecd62cd5170e450b c9f2fec98cad4dcd4b570b35cb91a77f c9f4745e520949dbec32897a0960600a c9f5c330a124bc3ae07d23a028e23b1d c9f5db8bc29714905358df69fae7969d c9f601ac68ec6b740f0480587b1acb6d +c9f6657a477618ed63910b8ad1b7948c c9f81614604f24f61eab354d3690f998 c9f819f0b9a87da199dac19d5e97240f c9f9451d915888566365f6bbcebe8450 c9f9ae44b3692440964bf56bfa545274 +c9fa7963aea09ec5e6157578b1a2d1b4 c9fb2131e0598aaded04e3dfbdc8e71f c9fbe764bbab6979c02513193c68ed15 c9fd6df7a5724c52cbde048492c4e7eb c9feeb530b2b4f002c0b5740bad30290 ca015d4162dd74eb4f7970a421dedaff ca0190748117809bd944084f75f2fd8f +ca01a87a1df1e27148535435b10944fa ca022b333476cf0f9c25e4b18a60418f ca02e11b8d148ded5f45d02310ad185d ca04107f006add016d7169f1968299ff ca0444bb1e5bc3400164fd010c329eb8 ca04612fbae159efb02e52eed2407545 ca0778635184bea008ed22b32a37e9dd +ca08a813a414532e388ed0848c89d57a ca0908cf1b532df376d5a4cb57a6c7d3 ca09bdc976b58c7172b4bd278f307a50 ca09db494d5b2eb2deb5e0b2fc87bac4 @@ -45910,7 +51251,9 @@ ca1af0bac10f552724a0ffbd8fdb583c ca1b2f736baaac352bd528f55913cfa0 ca1ba993e13eb7e111f486c934e6597e ca1bbbd7c69c4484622302edc1b43c89 +ca1bef086ab5315c024500c4d6c1c629 ca1c50cedf52354c711ab8cdf8e8c59c +ca1c71d92dffaae0da278344196d1496 ca1cb0d9ffe8a36b92b0683501f68262 ca1da282ec652e3ac4aeee189c787685 ca1e43b9b8b8dfb816fb784aa27f870b @@ -45924,12 +51267,15 @@ ca232fd5cd14301ac37e546340748571 ca234e965e451e973b945b2afc61ed1c ca239728f18aebfc4cb78c7d4981d8bf ca254ecf99ab8e16ed947af84c14c84a +ca26d92eb3841d482f91462874bd61b5 ca27f8440f908f8adf1b0bf4ee29879c +ca29d2af053e65f64b046a752b10dc16 ca2a30bc0261c490218745d09901e7f1 ca2a6743bc1d1356776b7ecde4b40efe ca2b624043598b33d89e2912a01140ef ca2b9e4641b24e259ec28c22192cedb3 ca2bf8b6a57c324d3c0b3a5cdad5918a +ca2c856398f310a68c214279641883b9 ca2c97c052eb63b302d60c4cdbe1b771 ca2d4315447ad01d7af21e6e77dbebb7 ca2e6dd2fce8198e7f542fe34d6a64af @@ -45944,12 +51290,15 @@ ca3388bbc831185b94718b4fc460da44 ca34c9195faed912347f6298427a58e5 ca35a4fcb4685bc9a5b60b056b165d42 ca360e16b9a34d4e67cf5c15cfa019c8 +ca3680b2bda34753d79b9ebfd289b78b ca368c4d5955fc068698f5ce8a1b65e1 +ca36b5b57173acbdc9edb14f8d2172a1 ca37171996af1b00cd7fd89d480bf85b ca38808832c8fdef7567b47c68b761ca ca3955eb36acb13002b480541c7b3e8a ca396872bfe9c36f9025f8bf66cb0570 ca3c1e9fa0f47fc8fbe2f8a317db2464 +ca3c9ef33f0e7d6bf7561ef066453595 ca3f7636b5ad8bd9bdde34d98c0bcd08 ca40c8ec7afef2afb0d5cdc7bb9b22b7 ca4386447580ddfdb2ce5a47ec0038db @@ -45968,12 +51317,15 @@ ca4f5a56aaadbfd42b2c8dd98122e75a ca4ff050768c6ba9cdb2dc0a765caf54 ca517eb11e51ed4f1a3987785673f153 ca5477e421ce1bdca10c7c533effb796 +ca54b3e6e677c028846219387626d6b2 ca5534d23074699f8524be5c456fe1d7 ca56725304d72128609e730ad4ba579f ca56a2bc0db84b8c869f2bb1ba8d8d1e ca56ae7990fb049e3439ec432596f49d ca574f6372548848ea6299138151e5ad ca5752b20db1a5714a2dc1296a9802a8 +ca57fa8fb7bf84ab2bb40c789472ee27 +ca59df0ada5bf09fc936db2acde45031 ca5afc076122c1c5226dba9f3abb5757 ca5b060c18094045a0cb01a5d40c8806 ca5ce677031a6c8941677dd0329a6f72 @@ -46001,24 +51353,31 @@ ca73efce30c26a91180764783e4c25d3 ca747efa6850fb2a8d108cf67bba860c ca74e273fac6008b049087184be71692 ca74f3dc84e82d3a075a076e4eafda42 +ca7630fd7851f4867f15b06acdc2b3b4 ca77ac1976311f268779d82bc631a748 ca77d685e42cd5c39f3fd63a42cd996d +ca780301423e03f481c65968d3d558d0 ca798d4b3a72805560ef81c45f0be93a ca7e04dbc311f40706e190a9dd38b9d4 ca7f3d1084d3c1b11e6fef0554356e75 ca7f90e6fea01789c9236dafb0bf70aa ca81988c016978c485bfcf4f3b433395 ca829d9f9420419a72a86d493539c4fe +ca82d77b2431ae11959b519796e4b26d ca8369efea14229ec202a26b0fe7b519 +ca8470304cf5f2edd11df42a7a8fdaf1 ca849ede95b3a50d9fdea841ce556a11 ca855de6e84ac52a5282ed3e667f28a9 +ca8a2babf41192206137e96e8bab3433 ca8b435ba70e6048ea1fca19c121eff4 ca8bf5ed05247d969c89fdc295664f9d ca8d0b26aeff1efa0554c5de466edd09 ca8d56bcc7e34c01ab47adbdae692195 +ca8d833a27a45aae1cdc732c367a385a ca8e542b92488d1bf0e7f61bf6e6de26 ca8fd73629e355d015e84dc6d68cedb5 ca90714075a8fd91b1a8af280dd97918 +ca90b7f913db3448fa32775530d38ed2 ca91188bb014900da3c8910a8832beff ca92a561c11cc348f218c34726c53fad ca938a05fc95ccdce740883dd0367f7e @@ -46026,17 +51385,22 @@ ca94cc6d453ed0b2d072fee031868d39 ca9577bcf6a1343250eddc247aacff39 ca95d80a480845d4f56089b93f30f554 ca95f845d3b417c7d348ae1f51ce7815 +ca993a8a5ec5a52a5b532dbaa77a77a3 ca9a84f0bfa163a467ea626ae3b9cf3a ca9c5f08abcaefd4d59fd2078ae8b587 +ca9dad484906557cddc4e062c8809a2d ca9e6326bee3a5eb50583875cd220bed +ca9fe9b2c39779229774b9491957a716 caa157054f0f2f315c79b547958e9ca7 caa1f4818591218fca6ee290a2117eb6 caa21042e28255b26c0fb25d2784397e caa26e651942dbae56bc1cb25fb64826 caa295fa166deee3f60d7760aa7d7ece +caa2c391de4abeb481d8d30be32fe8ba caa3d85513f5f23f32e4b049dc9753fa caa4039f5d3446566d01d4039b105143 caa4c01b31dde1924f8fb78b0ca0b52b +caa5c9e776cf9751968f615fb3bc4773 caa5eb83c86fc7d77e4d6cdd64333c0e caa72009577e8f46133720b89daf817b caa87c7dfd33254ede6f24eccedf070c @@ -46048,8 +51412,11 @@ caac5af1e2125dec85e3f481a4a50ecc caaeafecb563ee0e7847bc52537fbe86 caaefe8714062df108172a8e16531053 caaf3edf3abc58763e50fb9077ba11df +caafcd36bfa9510198adcf8ecea60e32 +cab06a9e59342618335cd471d2ddd108 cab1bcdd0b2631a1817cd0c4c621681d cab2c79110ed6e07c901bb9e1b2a169b +cab326c5d0093f4ca540e91679a9b941 cab369d3667ccd70b1269f42a4f2bfba cab4684f3297f516f5858f0cb2f1a94d cab51c9736915b98373030fe7e352d15 @@ -46081,18 +51448,22 @@ cacb89e7e708c338bf740e2abfc8f5be cacbfa9861bc169c12100837b60e4a22 caccb4553bea14b850173ed929d48427 cacea158c089d6f047298ce91ceb6778 +cacea4bb7323edbd5ff5624d5674e597 caced82dd347209825f7bd435575c0bc cacedca97c4979067966a58cb2fd45d4 cad0cd81ed3e0c3d103ec9833a6e7bfc cad176479d458f23fa37d93926571252 +cad19888d3f9c8c2fb9647301e142d98 cad2863df97bb016b7d29c0f6ab827a7 cad376d4cf459558b575f799e590fa32 cad54c41579530a07127f1dc317d8f54 +cad6b6ec6a4db80f396b14d10283b119 cad76650641ef43923d50e791f696de3 cad8092f85fc5c76675861f02811aa1f cad945ac99336820ba0d8f16117f60d1 cada2934366802dda0bb05f45ac31a2f cade78891eeb015402ae5fac24eb6f91 +cadf24c32e19c8ba349f055998e42886 cadfaf3f77990b6f998930a728ebf1d7 cadffe2921f997857e83fafba720fe19 cae0a63bc46699f881fd05a1a82fb2f8 @@ -46100,6 +51471,7 @@ cae134ceab8198475aaf97c4b62fe962 cae212dfc74c97dc059442839c0879ef cae328296e8450f8a2b621b212bb24e7 cae527d13edc8a3bf73576f4866f3e56 +caea79209650334632366e18c5ffff65 caeb9e84ee355bf3254903b332df6413 caee2addeac69191a2c8743459cceb67 caee94bc413d0ef312718dd94e66ba4c @@ -46119,12 +51491,15 @@ cafd3f91f960f18d04478bd22b8a9b0d cafd73c3234d89d2bf5e5fb35c0cbb01 cafe15d7cfa5514fd6e2e11200a083a0 cafe6d8316727b3563194adeac822cba +caffdc09f9cffce77b22252018d9d120 cb000a0b89445812aeb015991e262885 cb0234c86ad1f0e1a09d989abc65f53f cb04359b6168da8562ab2008cee999f8 +cb0593a36375b7823c51483ed93aa8ca cb05c53322ccc013c61e73fc324cab4f cb06fab0d6fdcb6d7933a0749b893e41 cb071fd1c728ff567043906072eba5ef +cb0749dc908014e467c3eb7681dd5a08 cb078facace9cf193f2232b47023261c cb07dcadff4a47e479dd29199268b4e3 cb0946d5b58bebd504ea4f06a7ebca3d @@ -46143,8 +51518,10 @@ cb13fe4ca6886ba4c6f7dd1e10289572 cb14c1f3419f3a4248f6251be2629d37 cb172db34d8a97f84f31380175dabd89 cb1808d59b2dfcac84b69e8fb41f2768 +cb1933646b77dacd416a587c6897e2a7 cb19dc4cecedcc8292a558aa1e267ca6 cb1a32bd293141d04e7d146406d3ee2e +cb1b20d17e121ba8155221c2a4375a7d cb1b7d239dee21977f5ee738734b15dc cb1c95dd1855c8f85643898a03e31167 cb1d1aa29be9398575bcef7d0897373b @@ -46161,6 +51538,7 @@ cb2806597b69419878a7e2ca14ab655c cb293e48de642c4907024524578eacce cb29ba95e7bbf8d010511beb91b3212c cb2baddba2fdf3a1d8f0e8ebf0ce1ee9 +cb2bb6c82f851539a1c33a2f1b52ab06 cb2dbc31d58fb65b18633c14d455393a cb2edf61ee2ec82c9588a77574b167a0 cb2f7c3653cfd92f75cb72fccfd25a24 @@ -46169,10 +51547,12 @@ cb31ef360799ab5fb52114c11ba741a4 cb332a11f7fed43f06b3eb006580f5ae cb348640f2f276db265d41b79035950f cb36242efeaf168ff5dd6c5c6c8f409a +cb376fc4cc0c5f506ccabb207f59e55b cb3c23fdf56c77b1cd0f63c1c10105c5 cb3eb00089b24249a48bcf28c660dbc3 cb3f91408bcf36b69fb91cffae517997 cb411545affcc1ce86141c44a60dbed7 +cb412b010fd3be4f23dd770ff29fef60 cb454eed48315bf4051d2043f5308d78 cb45c5dad9175962a38662538e25db0b cb46feb654d1d78ba997d99d4fe8e747 @@ -46190,6 +51570,7 @@ cb53e8cf3802d84ec22a79a69fb5294c cb5572f0d8ff0648deff59feb4f17332 cb55ef81f8c685a6f50f821f3e7462e7 cb560091ac67ae3374038e98293d8bf4 +cb57c4aa68a34be5d80c32d1eafd9bec cb58fdf66ead44259a35f887b1878558 cb599129d59708fdc4680b1ab3b53bce cb5a51ba00a55775af2203550999934b @@ -46200,6 +51581,7 @@ cb5d1aaa01f863cd6d37d3bdca4b907f cb5d8079b6547c51b68f1d70453933e3 cb5d826e1110615a5fbcdd3f5454d4c9 cb5e0d49e41601fd0db7027ee8fb60a5 +cb611a888e2caf226b092222462461db cb62241e7629f2a0a6685b5445820b82 cb630218d649d1a9be5d43bd6d88249d cb636a557ef0854f80e4edd4a1b4e4da @@ -46210,13 +51592,22 @@ cb69923cbc5425a51ad94e1dcf1ba490 cb6a0046837e7eac42f5c085382c0b8c cb6a99c74cffb1a6908cecdf16b20308 cb6b158ef3c5c54cf4fe1d6bf8ee9a9f +cb6d1af7bcacdc8ec8dc39028b81416b cb6dff36fc820b2d14256de9acdcde80 cb6e8494b1986da9aaea893f89451f48 +cb6f809b4717f8b992493ca7ff6bffc0 +cb70810283618562962050b59c2036d0 +cb70d98f5cbda7d1e1797d5234f0973b +cb715f704ed8913e4f6e1b81dc4fa55c cb71cce2c6007925111bcd1d97630520 +cb7311155e6b44161c561498a54def33 cb7314cf34bc73e19f52a34c06997059 cb7475a883d17e1d52e39769fc8897b3 cb75b8752778c4c049e899a490962cd6 +cb76af192ee7c2dcd80fdd286e0fb3b0 +cb76d9a07faf0dbb7a9023cb5f985268 cb78a60b0368045c5c2bf05cbb678539 +cb7b4306ad9bac7a06796dc4094afed6 cb7c0180fa8520c6a8ac2cf2c44900c4 cb7c6de8d0ce3d288a39e239bd5fea39 cb7cb819b971c81380255caa55a3e3d4 @@ -46259,6 +51650,8 @@ cb9ab669a70320c23188cb33ddb1df4c cb9d26750a35b47639d6aa2f2df27cc8 cb9db5e11e6fe222e8ebe592250b81b5 cb9f43ee8d1c509df1cc4bfdd4ac5889 +cba03bc61b99d81e77723742f636605e +cba3404ac880b28bf5c31926796b6ee3 cba35b11ed5c9052076f4d5f2d1e3806 cba3b6bea0e97aef4c104a27ca1e4423 cba3f06de4f5a1bf582087625961c325 @@ -46271,22 +51664,27 @@ cbb09be49a9b04c26280a0d4ef9785ef cbb115ac4077403ff96b0a27fc18b6f8 cbb1766d744c2b414ea1b507e1922dc6 cbb2cd76f635a36aa24e00aa898ba75a +cbb333b798e001e7c3fcd1660641cfbc cbb53b52cb34d8a7a03477c151f994c2 cbb76f7859176ca328c8ad82312b8107 cbb90dc7a0fac27543e5e16d81a9c516 cbb9b1c9fa3954a024cfabdb5e4b7a71 cbba5449481b1bc45a7fc2dd9f983a33 cbba835dff719928b24d94c253972b19 +cbbaec4fc9e86ab429eaef252baab66a cbbd2b6ffaa57dd6b2dbe5b364ec3ebf cbbf4b428f416d20c2767fb103af5251 cbc10cf0cd55360abae9bf666d336730 cbc20591c0e6a3ab97b8921821a8d0c7 +cbc2359074c56f260227d440e210053d +cbc3faecd0ef50b77a6e153f457da95b cbc4071a1461a6075638ad0aa8a16b47 cbc4ab46d8845844340cc6e78ebb7fd5 cbc56a368038201c79f2a8c1692926c9 cbc7a15bdac22c8bc2e5f2544c7a33eb cbc8c9c93e81edad99b1328c2fb21a98 cbc8d06939bd0dba702d2103fcd255aa +cbc9da64d6cd5569271d98bba13203da cbca6feba8e363e304cdb8297dc26bbe cbcb2c0f4b496dfc2818feabffedb03e cbcc06ee780e9e92ebcf4fd558ed6e91 @@ -46294,6 +51692,8 @@ cbcc3a6dc7aa5fa7eb1e5d05318c519e cbcd89debd24db7f78cc3dd738a712d5 cbcd93d86aed18c394771e5805278da5 cbced74435dce96f8a939a830e860763 +cbcf7d56683a715d7b1eda0ba4ae4aca +cbd13a7e9cd04bd6c902ca8ca6492ca7 cbd2cf93b33afb7d6c374c6fcae20fce cbd4493806d133055d74b4bc23f163df cbd5680c7a375f949592c065a7396cd5 @@ -46311,6 +51711,7 @@ cbde8a8677860e0f920198d593a59917 cbdf2ec3a789408bd54cde73190649d5 cbdff875ffbbc2214ae6cd9b254b55ff cbe0b69393d696c20de52c91f2335653 +cbe2f58aee040da2e3f336dc85d281ba cbe3c1175b0f224e2cf8ff17fc97dc50 cbe48bc80292342db3813cbfc0d15585 cbe4bb839d7abeee70144c43c7190234 @@ -46354,10 +51755,13 @@ cc019577e798080dad27c6b34bef69fc cc023f0434ee06a7e2218622f3a35ace cc02b0100f7a63dfbcce6c09b2e11742 cc031e4a02ff66290b2b7fb4bd519325 +cc040d59efedbd8051880452261acb49 cc0609c4466fcddaa638a5714b34cc4c +cc0b408658191c79885318d410c227f4 cc0b961f15305d08d5c5cf5636f16f7a cc0baba0b11e4dc11706b97b6fa460bd cc0c600be175b105a15fb741c3b0926a +cc0da3585991d9506f7fdf26c98b5755 cc0fa0ceed0b0df38e24a48f21e6a934 cc10b8705e3bb6998f944fb90865ede1 cc10cdbbbe64fc415e6fd85a6a8dfd5f @@ -46371,6 +51775,7 @@ cc17bec449633f066c5c63a24fc173ed cc191afd5ede7ca8b491c13fc96729fb cc198d528f67b5b006e4728fdd9ca0fc cc19e375e2e8efd996ca6a1ed40d174f +cc1c3cb97376b7f2c2a3c896a4732472 cc1d14f96944593a2303c3b3c92c7411 cc1d7b53df7ad44b1d5e43dfb858002c cc1f6eefa65fe0ad2d32de2450067068 @@ -46384,14 +51789,18 @@ cc283ba548942bb55af3f19157d84065 cc287ebc8a179bdb429a24c12a1accb3 cc29123677a195fe5d601227bb75433a cc2a6a4e475587fe0db859bd774d55a7 +cc2ade6b4e9aca67f217e475848ce113 cc2ff76b280b3e939a994bd2884ae265 cc30f677d7af3e03b5bc3a8cfa136acb cc3360de9aaa4fe0a41f41ea5a7cb19f +cc3427de7faf7418d3a82c8cfd478c86 cc3446fb96b14ceb4ce9a35d94f43b23 cc3470a972e67e8dc382259a3d05fd53 cc34da747138be4d9918fb97324d03b3 cc369366e2adbc41de87d4d59f11208d +cc3724a9fbf2df5911e6bb5fbd6b853c cc3729ec002b491c460e2656a9267e19 +cc37a7901cc94f3f350f6ccb165fe385 cc37c13b0d984602f2699d3f16e864ae cc37d0d168eab7c032c1ca76e36c77c6 cc38072edb8418af75aa6fe9a26d852b @@ -46424,6 +51833,7 @@ cc5a43b54e0a0b481c10889e6ed6c675 cc5aab7442f5478b548e5165e0d0480b cc5fb6ed6875c37e2b2e946591992189 cc62782885db4c409709af75e976aabc +cc62b64b8790810593f33f4041d0dd86 cc641cd4a773ad9f4cffb5228f1a85f5 cc6574e10ed17fcd7ee9b5fe064e6986 cc6584f54f0d2ba99cee06f4ccd26211 @@ -46431,17 +51841,20 @@ cc66392299547ce689cd0c1407b2e4df cc66c37acc67d49f9e145528aba30d33 cc67204d264f71b7a0062fdc54eb0b84 cc67da7dcef0d83d1c0cfcfed02df2d5 +cc68ec9f4fe83dda0fe69d22ab3ef840 cc68ee76374c07266c1f3c6d01ce1adf cc6be062768e334c846e051b4ebf5776 cc6c556005f4cb67d036e9295c5a5020 cc6d0aaf99501d9a602e35a8b789f36c cc6d14ad5c331ad04d56351648d261df +cc6d91daebb1cc686201b8074c4af2e9 cc6e76b559fb864675993b7cd1f2a1d4 cc6ebb9c13fb140c81441e01dbbb20d1 cc6f3dec028a1ed0f8e0a6effa835d4c cc71b2fa94d18743c3b96c0d9f9a2695 cc71ff1ca46ba592257a731716ab2c84 cc72b38c86b7464106a5f1c4bf87da41 +cc7341d69dda6a630ed1fa07acc062f2 cc742f2c760d567d691e95f692450d1b cc74ce17edf75124f7da910bc905012e cc7576e2fb71894122df0a16e8164d7f @@ -46462,6 +51875,7 @@ cc81e9011b3449cc05f80943955323d4 cc8407eddf933dcafcae2a8f18ccfc14 cc86ce4e58e4b4e17fbfcedd6b223cda cc86f8a90359eb17bbf3399509067dbd +cc874ce0a929b901b2af659835d1b1e0 cc882ab91d7f1f86a17fe214bff8943f cc88344aafbbad6785f72438f39743fa cc89cfec63dfabf2d030da7572ea1dc7 @@ -46470,16 +51884,22 @@ cc8ae9308a694342a2f26190d01f7c92 cc8b808b7a4c0d48fc236d5ee23aeb86 cc8c96a75e7bd468859aeb70e3fcede7 cc8db31fd975c9aa21feef7e8cf58a43 +cc8eb175322dbacb8bb6bc846a83a6f3 cc8fb366db50005055c37530fc3ce7cb cc9030d3e0be0caff4ecc992796d751d cc9194566093f036b33bea4ab6329393 cc933a002104e0f3ef90688b149042af +cc956edc96008b240cd92b0b9233e789 +cc9640baa8f581d39425608d7ba53635 cc96e4ddbd096a4af52480ea620505af cc9914560f6197b696a08c827fd84edd cc9a495efb03bc6d3118470e230e91fa cc9ade658bafe3c3bf0192ba13efaff1 cc9b40737b8bdcb1291b95bf335e3aed cc9b6b9da0c5a78a2c2260cf45542fc6 +cc9b9bdd6bf26642c42d79a4cfd9d8a2 +cc9bb500b6c8c6723870c897fa03c122 +cc9cb2c4acdb6f00bab54034b90749b7 cc9d7bd77c4fc178ff9491147ce8f43d cc9ffc375b693457a0ca05ba4d957d80 cca02436f1954b4097709db575b7606d @@ -46492,7 +51912,10 @@ cca711e25c07e0ef8d783ca4bed8edc7 cca725e86d2a3e2c7446b6c511930617 cca798ad16b61787167eb9d365d797eb cca79cc5ea29814e98e55837b315d788 +cca861039d3811effb44074007edbe7c +cca8c8658364bb0b406f70ca4f86a7ed cca98913041225f76b4ac740d71c5c80 +cca9f52f1972f059c7102701ee19627b ccaa43756fd9858323ddb6e462d0f8ab ccaafb7d7e0df6e1151511399a037871 ccaca57bc58df4fec1400e5b9eb43c47 @@ -46507,14 +51930,18 @@ ccbb3de62bfccfe4c57e12abbc9bb786 ccbb40fe494578b0da2297c811c38994 ccbb557c3d020bc20ed1c052213504e7 ccbc14c9bb61dc544b54c8dacdcc9254 +ccbc9ee51e7c298617ad93756ba08197 ccbf24a4d16a81fd842ac8f14254af29 ccc38739b1e6488d8db15bbefcaf61b4 ccc52d0734d79b5588e9c0e303f6b433 ccc56ea00407b6ffbdf201831104c75c ccc57e61f61bf97f570fde0e3a02c9b4 ccc69d60c6d5a323962a2bbc83d32bea +ccc6c1157a5eee460c1b00b4e2f941e5 +ccc70d6b2ffa127819eb2c75ba085a63 ccc8bdeae955648928f0a092d70c2802 ccc9c282ece804ffb2d8566f5b1ee6df +ccc9d713702dbd6fdba958897a25faef ccccecbcf0cec12e9856f1bde6dc5895 ccce38326fa5a1f1a89be8ea042dcc42 cccffd87efad1c006a992fd6b51ea846 @@ -46525,7 +51952,9 @@ ccd6832b08b8812229715f68dc4e0437 ccd6b21179c3666982b9d9aba4264fe4 ccd7735f30cbd462c7d6c15c5d074406 ccd7f568aa6f8e858cae34b6c11cad50 +ccd824c820862b2dedda7ede1aae1dda ccd8ef5d36f3bb64e70accb65e3891c0 +ccd9ad78b95d37a0adaac51cf91f6ceb ccda38420a76c7fad49da5bfffb9f98c ccdc4ab7c09feaf24a29f6ce12362ae7 ccddcdcbbda3325403a7553cfce918b4 @@ -46553,10 +51982,13 @@ ccf9677f2760ebe84ec12b28ebeb5f65 ccfa221f79a41513bdcac2bdeea3a7d0 ccfafdce7904eb52529cb668b8496184 ccfb1424fdb62c66486923184c7af373 +ccfe87b9e3cd07588816fc723a61923d ccfee191fab36bd275b4fbddb4e0a73b cd01092264efd09c2a5d39f129a2e6bd cd01965c341c41aac6b697c32b7d312d cd042b6a31b640f06e9241bd26492b6e +cd0568d38a19a7f0bf5b44bb034b992a +cd05841ab2b47818b799518dc79fe640 cd065d1837560b21564477bb8ee8a138 cd0b683827f310583f76935949c17a26 cd0bebdb6fd3c58a18d24a65e73ab457 @@ -46565,6 +51997,7 @@ cd0cdbc6087b05d1936fd508a336e824 cd0cddd8d7414bc2a0c3cff2f4db6cc2 cd0d3609f5f761f7dec3d4a0750659bb cd0d789a624f6964cd8d37ff9b84339c +cd0f62b8c02c76b9fd2293653d69fe6f cd10e789372447d219250a3b7340111c cd133739691e472a6939bc01aa980956 cd137127745f1b6123716abb05ddafff @@ -46583,8 +52016,10 @@ cd215b823abf65d8989c23a5744a4977 cd2636dfd5c978af262cc37d5f762ecb cd266bab945f92e3643ab7b3be71911e cd288d8c2f5797b77199630ad8e2ab25 +cd28ca585e9a547c1297bbc900c1c2f5 cd29c2ef5f2d76f7bd91ef9865cf7f56 cd2c36e816e8bc64a312c2e5e26ff9a3 +cd2cf3afbd8ee93c8d5cf3ba598f279b cd2e4208b086fc3b7bffdaae4363b35c cd2e8b734b59debd08a26d9f8d17ab85 cd2f011012cd3d7e9b2c640053489a39 @@ -46598,7 +52033,10 @@ cd360819edf9fcdb36091e604161f9ea cd36ef0388c59bbef1cb3cfe196d48d7 cd37d7b8116329f991765841856d81c0 cd39800d7d2eef52fbc4fc6b8721a8ef +cd3a76923b5540779d8931c8d129d83b cd3ae427aaef11b0f36fe4be47521280 +cd3b4623e17a8c7a2920c273d723bbc2 +cd3b575e6b9e8e1fac783fd342586f22 cd3bbdb619277bc6c0fa77cebca9936c cd3c6e9549e14e55807e34dba2d64583 cd3cae86c82c0d0a2c8f264f7d38720e @@ -46606,6 +52044,7 @@ cd3d636d3a5dba56eb8be46ab8f3aeec cd415c3614f857a0b264fb0ccec3c323 cd41ac6f780b63d38498584a7789e033 cd41c9c98015c51091aa1c47e5e008dc +cd422f4387c065b7d5a8e5936a6d96ff cd43b72e2d6348f4f4f1ea1d5f4dc94a cd43e0c0212972d5a5533e98d68c1acb cd4461f5aed6bcbb0ac98315a18e0866 @@ -46616,6 +52055,7 @@ cd494e6eb23a395dcd7ec1cafc907152 cd49835a59c3dbc12cd4dae9d67f8a31 cd49b3ec9400c59ea6439fc970066ff0 cd4ba304bfa87dc86011c662ec32e78f +cd4debd3845ae14a3e9856c921d19bb3 cd4ed706a3c78b98e7506e67b3575942 cd4f662d43bcd92c3efa84f9011e866d cd52bc2723f7d3aefae0874de1b74702 @@ -46626,9 +52066,12 @@ cd59264f3cb867fd7be2a36904a0ece9 cd5c7315eb3e4367a943e782b958fd2d cd5c9c2c6fd4434b7243abc90bb087fc cd5fa186f2b97514ca006c38f480d2bc +cd60b586b37da2546db38e2a2b0bb7dd cd60b6d5795548adefe75c69b90eedae cd614bad987d92ea4dbaf2f66e11af62 +cd62276ce4be4f55d619ce2dbbaa3ab0 cd628edf9b1271b1f4de15554ce540a2 +cd63b14db81ab00653b3d5bb3d3861e4 cd63d93a224bf25ec62eafa906e50e67 cd643ec8edc66d87111cdaeecfb56e11 cd65610e61039ed285f25f239e892c3b @@ -46678,11 +52121,13 @@ cd85715e9cfa81c30bbe8399f6801e73 cd85a5c5a3000ca7a31f839941013865 cd85e8cdaa44e2d8f1e1bc43484808fa cd874431d0a0b8b67264b2f2ef42bb9e +cd87ac0ad5759126821a899be5fc92ab cd88f21eef8b4a4843125140b856990e cd8a4a01d3ce28ff3519c1849a1890c1 cd8adbe1e796eeabf7112ee568b7480e cd8ceb03f61f0964e047d46574d7a299 cd8d7dcadb45ddbd91c1f8532b268b70 +cd8da411c01067915ece0c019782cb3f cd90083856b4dc1931189c42e25affae cd92657c95b7ca8e1d27e627a663f4e5 cd92f56b474f2393006d8fc1a8f61da6 @@ -46702,6 +52147,7 @@ cd9bd38246b47f4dd6320a2975fdb45a cd9d6b76733b22c1714bcfda6d1a17fd cd9d7d47324b7c2f4dc7e6ce3eaecdff cd9eb0f5e4018a176ea7ce61d477e164 +cd9f487a343ad1873611d57ccc44233a cd9fbe7d068ba85ed970b634161e9303 cda1fd9609aa772fdee19be0cf4cc5db cda25f28df36e733bcdf6c88bfce3b1a @@ -46717,6 +52163,7 @@ cda9937313c55594fbbe0b94c93e6721 cdabfa4947415ddb3d0c94e833efdcea cdac3656979de93a0c81c10d81080cb9 cdad26ac584c037e388e6834ba65bac4 +cdad669e6ccc942275921afa28718a7d cdad9a447dd1e13591712a936d8fe2f9 cdae9a5d536184d6346a79fc753efa1e cdafd216d276b0893cb9f4d217caa4e1 @@ -46724,14 +52171,18 @@ cdb037c6aa7a0821b1ee81b7cb906563 cdb201dab37158e6f735c9b881bc296f cdb33a3f4eb9f4da46bca663f46f1c4a cdb3d87a29ca9f284ff3972eda189d21 +cdb5202f9a4009ce7b0cdd7e9482c157 cdb5202ff75ccc11efc5f2d31ad99f44 cdb581b6b0fb44e472fec15839b94fd5 +cdbb2ed6277cf26b286696470dd378bc cdbb3c222e051f6b00bcfa7fc64eb155 cdbb9745a8bcc13bc1a72a188b3cd769 cdbbaad23cecbcd0f92f3363f6d6b8aa cdbbb43c08e859cfdea12e472ab93b83 +cdbbd367c880d4723b5e3bb92a010391 cdbe2591ee4ebabeb76ddc82247b62ef cdbe4a8d77ce596be6eed1697452118c +cdbef58768da74b0569e43d57ce8477b cdc0cdf3a72c7c8ba3f8d42d452924a7 cdc25c01cfd5d362dfb2791a8d156503 cdc3dc84382d50387f5ce2096ad24428 @@ -46741,15 +52192,19 @@ cdc86b2225dbb52b36604ba9c0629292 cdc928c33e8282a691e34bea55cd6052 cdcf3e95c69705be3a30d4b90f7c3961 cdcf996a26d62bc8a859b8169d78cbfe +cdd047f479d1707bb54ba0e77c621fc8 cdd15952c7a518a806b6787a713a8951 +cdd2cb91c341cec7693350722544e5b9 cdd36bdf4d3551b6af186ea90b98fcbe cdd4103e1ca488bed5a59f4ab18da23a +cdd72889825ee8b657a9154bb4472ddd cdd9229a9cefdbf6df24f99b9ee5bcc8 cdd9315186f14a11cd545e9f18835e01 cdd9dae9af72bc67f4687349e587eb19 cddc0b5953e5a36cdcda5f65a6ae8dd0 cddc9663c45a5710e3d9b3a03b3a9967 cddcb880b143b1a1c014e709163f9fe2 +cddf6bfe57242c4edc898200c0082c6f cde033531d6a01c65f7bd3f8239a1c00 cde24efb7826c804b730f82c12770d89 cde29dcbe09f9430eb866fe6ad3dcf2c @@ -46757,12 +52212,15 @@ cde4eb1db6092561f9ad84918ebc1112 cde5767c83b73242c1292d5cc2d97096 cde6dab773f6c3db7ba6e2c92af18ef5 cde86933db1ddc469acc431d6f9856e9 +cde887362e9c517670c409b7863471d1 cde8dbf31332b79760d17cfe15107863 cde945a41cff38108b70bd02c5baa11a cdeabd6715f0983e851aecb99a951c9a cdec5ad26a5f47ccf89ff2b30961aa50 +cdef0ca627f6ffe15400d55f6b4e1c8b cdef951b269e652cb71406c5aa33e939 cdefa6124dfcf90ecbe9a2be746d4f7c +cdf0e48aa0eb6aa754f19b0b91f799e0 cdf170033f81a57c80102b037b280d71 cdf257413a589dc573abe39e1116d6b4 cdf4b901b73db72345c91ff558c35426 @@ -46773,19 +52231,23 @@ cdf80266bece467aba3c378a06a9fc7f cdfa6d9ceffb47f2b8cf05f6c13a3424 cdfaa3cb36f58651c81e44c87271271d cdfab8cd9096c3e137d1f706c5d09a22 +cdff130ba18b782f2a68557e40e277ab ce039f51b2de2c5c6290aeef302545fc ce0527420603d953c223d865a51d6ae0 +ce057d13620e43a65969fe596839777b ce06ea6cfe067c1851b87f40a23549e1 ce07316bb60fa015cd0de51e663a3ec0 ce0830eb28d609d24e520ed57f48c1fb ce08bde6de55db75d91856c9dfed02c6 ce09026ce9f0e940b11ddd57f29277b3 +ce0a1434bc95948e127cb2a8d735a6f3 ce0aa74974d71e0185e7e0befac3b1fa ce0e68a71e0297707e5fa5bba25e1c72 ce0e742481d7c77b11d79073889b291e ce0f9469d0d101c721ad1d3d8bc4bc64 ce1029bd8d46ab526f6bbfa133325f65 ce105ef793b8eb43d902165143a623ce +ce143b1ff9dd921b6798b20aeaf8efbd ce149f541380f7f4c4fcb4d47107c781 ce15069799694f621ad187149ded315a ce155517510f43d7904b75d1a99dbb43 @@ -46809,31 +52271,44 @@ ce3182ccef66c88e46dc2819ad42ca6e ce3363e5bbbea81b7f7c0f50a2239566 ce339cf109d2408eb074267329d4e336 ce34e579c37e7afedd17d326b8fe5ac6 +ce350985f528261dd10a6dd4111e26f2 ce35c3e949ea714e84604121643cdcbc ce361e3fd4d2c04530e39d5a44f9d823 +ce369331f6fcf1df4dc3607b6dfbc5a9 ce3898f22c0596796ef76a49b005e40e ce389a253e1cd6104df0f06839661d3f ce3c0767e606eaa5ec3c881f7264d54d ce3c0f1c135a81faf17b6a3a6a0b4ee2 ce3cd68a2281be69556f0b9fd56f8628 ce3eb936fb5b332ed7bd431649ee9157 +ce40589987c9f87ed05bc93e24f6c353 ce405bda6a9df7cd68402e5ffcd03e2e ce40e30178b07af29c741d3c18e5f64d ce40eec6c249d6a765056973b00f93a4 ce41d9997d1049084c920a18634ff405 +ce44428cd6b90abd6243bfe2a9c6ad0e ce46bb377956a0de61080988ea7b592b +ce4937abab12510138dac41947c48dc1 +ce4942c1b4d5e401921ed060147fb194 ce495d8aeae2c9361f6bad61c806b2d8 +ce49a507eab78d36f216bf84b190c1ee ce49cee67d3fa5050b7439242e0c39c0 ce49db17e3f734d97ef26fd54bf0730a +ce4a06dcb2842d5fe74a13886f3a7e86 ce4a099743fbcc3a9020bcdd2df1980a +ce4b843d72e1052dd6380b75fff4324e ce4ca8bd41d50c4db6cad8c7c75a51f8 ce4cc12d319e7b3675495eb63208df31 ce4d1da14b357c71764a2f1e7adc9d20 +ce4fe2432603c5b086a189b4d75fa39b +ce52a0965b83a71db5f91557d3965ab5 ce5354ff079a64b85076d6de263a5a92 ce53564ef37644f63001c6ae08d15328 +ce53c689220341c97a691f1e07960bef ce53dcd6a587cdb3a2b2d9ed1e3e570c ce53f62ba78fab4005780cb29b85d5c8 ce55116425d6a5e7946b9c62421ad49e +ce560c332b8ddb29758a59a5a1fbfeab ce57b3f18d55041b2839115a9ea0e58e ce57d8c26853fee9ac4ea2acbc4e9c2b ce584f7b05595c4b84e678dca5e6cd88 @@ -46842,6 +52317,7 @@ ce5c929460b066e849651e9365781225 ce5d8bf9a3d9c310f6e3b37d08309c62 ce5f293d504026c32464a3c32e67c3fb ce61239de4ef9188cd967bdd8d52898d +ce638da551d65582b35420f24fab5654 ce65d6605c1171d2e66cdec017b18226 ce65f1dcb15385a40ac009ae44213fc3 ce662947ac9c1872bcdca4877193dacf @@ -46860,6 +52336,8 @@ ce73a849a84821b83ce0717e8abd8e0e ce753a955aa8902276da9b5563ce57fb ce76bc4bfefea4c782175632821a3725 ce7770801757389f8049ce2e42ba8c39 +ce7867c52ae0849b5cfcc2610e4a4771 +ce78f7e220803a640af5b2678645d653 ce7944898cb8191507a6f5563373abc2 ce7d09507490b631c66ed5ca43ca9081 ce7e5fc309c77a73e0fd420aa8fcd4cc @@ -46891,6 +52369,7 @@ ce96d21024ffed7cc2e2293db19dfbde ce96e53e72d4f5aa98517a57c042d9a9 ce97c8b314874cc8361828a719d8b9ce ce97d913b63ecb1eb735106de841cf29 +ce988f809d7ea5d6e1954c7d16776849 ce9b5bb21e6e02a095363cf48a712794 ce9d4c0baf45afebdd33a77b3fb28e81 ce9e28ff23c1b65603fc6ec7612667f1 @@ -46905,10 +52384,14 @@ cead5de32302c9a82854290f52f6f288 ceae4c08a75801c0f76fba402401ccbc ceb044db89a2f489d577773981c60932 ceb1d56a60eae51d3601e1fb5b9d6dce +ceb309cb6ffe9f8e5ef79771c7078977 +ceb309df51b38711b6d0a98fad51e335 ceb4bbed65e8a891d5876c57bef3a136 ceb56d8ebc465d5ef0ecdedb9451f5ce ceb5f26ea10b5558c84f6ebe027a6a6c +ceb6d8161e24e0d920ce18f2541bcf95 ceb97b3b651567d2eaabcc9a28f45caf +ceb9c2c563335a8eafd294b4854ab634 cebd3736b84a51e1ce2b4dbafc8e0b38 cebe793d8861881838a20b73c0071d75 cec141212789f7c449a84a82fe7402e8 @@ -46922,11 +52405,14 @@ cec9716f1f5bdec87f774adc59096a99 ceca246651679761c6a631fffca56a7a cecaff46044d34309e3b8dca5f45dd2a cecba4881f8c567ca5e52bbb3b3cb662 +cecd563def4bad9914492f29a436c9f6 +cecd749d0b970cd6fbe4e9b3799f367a cece90b2b82a5cf5dcefeed6387cab74 cecf253cef182c4582ad0fffdc0e5f6e ced02c4ae45a04fdb1f92edadaed7066 ced0692e69f651b7eda7240fb703b965 ced1f19c1e9aa471e60eb2757bad7db2 +ced2cde492953f8cd92f264e79d5f086 ced37f9c5bb9ee20dca2cce1cb83e52d ced542e7fc2ee154e736bd1c3456c751 ced5d22eee5f004806457d68b10c995f @@ -46946,11 +52432,15 @@ ceddf9bf53971397c64a29553933c256 cedea231bf91f0b8b5581e748eb89742 cedf795ac59ab6711cd69115ff75a209 cee350a6e8e2c4703d89a28a441f6dd4 +cee374671b4465a954feb9d09ea232d3 +cee37f9d3de0d0997773b4f94083a9ef cee40efc9451f3104bb894b683b9112c +cee4b0de08ce507bc2963ee638ef072e cee54c6989ce27445dfb410d4aff7e52 cee5649c61e6a3b384a6adc91a6a0a0d cee56e2c9312255e87c8fb5d2e2a2e9f cee78384106b7452a43172bea70372e0 +ceebfedbb7278681916515d0992a5370 ceec96a16ec40deb9deaccc8587944bd ceeca37380c88670154458b12b138f40 ceed33f3023c4da886ac7e65b5e774ee @@ -46990,7 +52480,9 @@ cf10c83c42df2cf5460a41502e90d24c cf11c18cc7f4c7559806afe4adcbb065 cf12d0d807080a99c9bff90075ff02e2 cf1569fa3f33cd6e1a21c16c1ba0c1be +cf16027177baf63c4bdc6f1d1fec275c cf161c3fefcf4fa671fbeb9bfa14c30e +cf16c02528b2e3bbcaf28ba0af4236bc cf197d4efbaec721a79718b77e0892e3 cf1b5e4788946255298f0d63007c1788 cf1c228e3a6fbd597761de345c2b350b @@ -46999,10 +52491,12 @@ cf1d4864720ed021a7eef8d74631b11f cf1daa02554b849e4130525cb4c55e92 cf1fd8a636ebb34e0bb2c39273b2264d cf2091d9e7d053306ce945133c23a543 +cf20b18c5fa1f0ef860e400a0e3d229c cf232be4a208c5022262fe050dac8cfc cf23fa0dbe19a460c8b917be446445c9 cf25fe99189ae15e6500dc827fbe6cf1 cf2803e692a4749a780124204dccfff2 +cf2907597db3bdfc5045a4e3ae46a83e cf2a252261c7b89eb801db0bfa03f0b0 cf2ce43fcee2f80195327cf10440cc41 cf2d8421fca43ac11462049ae76a65cc @@ -47011,6 +52505,7 @@ cf2dfff9499b79ef1ca832635e1948b5 cf2e8e896b5722980f9c3af971e7f4e4 cf30628ff8390b998561dbd3e7b42e97 cf324eb7923f8cf54dde50d295e1fc0d +cf359d46f9f2e32c0e1634f849ffaa43 cf35af81ccdfc4f10499c8f61db25f35 cf366b8025348750e7c8b23d430d12e2 cf3729b600311ca10959edbe0bcef81a @@ -47026,6 +52521,7 @@ cf3bea67685ba2a7df75af85e9f06368 cf3cd8a4cd13ea1dff4e386507457735 cf3cec4b31795ee8b69bd58a6eb0d479 cf3d889e493e2339a08b0300acf93ff1 +cf3de7796dbefa9d5a33dd5378a3cda2 cf401e7c0e7f6a49195c32de2f45f3a7 cf40f04ff33c51e3292ac43fdaef9a1a cf421bca64d40fcf95a422528c382d85 @@ -47040,6 +52536,7 @@ cf4eafe187784b07782839b1c7b39a92 cf51fe98f5d26cb01248a32cca41d747 cf5224b3e8c93444df7c1c10f48d6870 cf52649a7d97df7fbdb0d8b421d913ff +cf52a74a28d8bd6bca1c621c6ee10d38 cf546ad0f34434a188ab06b05c1a88d8 cf56878b985ba69db3c80d91e749c974 cf56dcebeedc6586e3cb790fb0775a43 @@ -47050,6 +52547,7 @@ cf5b92f19d73725ee79597ca416c7146 cf5b941cd43127a79d6776c14264abdf cf5f157d38139708ee6034e3a9f24677 cf607dda9f8ef33c99ac204a08cf47b1 +cf6223bc0ee41dcefbca2f6b7a120d77 cf62be85cc30ef3a7f94e53d6a4764c7 cf63276fe30d33ab44999f944b94d7bc cf6340d9a47d760680575e5d09f89e83 @@ -47058,9 +52556,12 @@ cf6b5f769ae6cf06dda78e1ec78cef1a cf6cb2ed4d2ed188168d686d195a8805 cf6d6fc53b346753928d429c752c783b cf6e2ecdfc3f0aa628380943682be128 +cf7088d45a5ff2d3e12df3ae09aadd14 cf721edcc25e880e01fe1f96888eab53 cf72667687674ddf429292d7a50b5e6a +cf73511b19645806807fc2c5c8506cd8 cf7352653b38b8893b3d3eed48543d49 +cf7370ab9ee51c6364bdb42fa66924b6 cf7397a74058359daeee9ff5038de94e cf740e0f9363bea215cf6f0940c971fc cf7416ef3d3702ab508d4d1e5321c91b @@ -47074,6 +52575,7 @@ cf78d5a2927ca22ad3004c16f6b7174b cf79c00f74b1f201d67746c1cf06cec0 cf7a04cfcafcafbc4cb12c2ca224c0b0 cf7d36f9d73b05bc4fbbfc00b20ee112 +cf7df7e5208e9da773b5b5b2ef652be3 cf7f720edeb6855841aa8372e5cb05ac cf81616b490b0d4affb401871f6f344e cf8193d93d349dd7eee00de8bcc86e00 @@ -47119,6 +52621,7 @@ cfb06efe5dc4645edfb048bb9a724b4c cfb435e68933c13805dc94fbd788e4c7 cfb508d42949f56c1c2994e133977711 cfb58e49126ba1bbe9215959129442e7 +cfb79b201852afb23105d2163312e21b cfb7d235d4bdcac074b6840842656e90 cfb9e440de16bda23eb4f56927da6f44 cfba28ad02a866cc3d9516bd62df6f41 @@ -47157,6 +52660,7 @@ cfd59e55527abdd2e980ee296dae21b6 cfd6c34498a1f64cce5fa82dead2309b cfd706ae9092c045dcf46d88ad98c3bf cfd74f5e7b199021b8922893a9ae6992 +cfdb1ccd1f33e49b664a6074746ec425 cfdc50d686c6902578a8472a62a4c02b cfde934bab75cfc713554212aaac2fa3 cfdf67c396f50b8c59a10a86f69bf94a @@ -47166,12 +52670,14 @@ cfe1c003a5ec473cf739ee1879ca98bd cfe2bb8060082b0011aad76d705c92e7 cfe2e5e7844758a373a670ed4bc19fb2 cfe3d7949f02e1884a48eedd482c886d +cfe6965448c747d9413c873a73a74cb8 cfe8483dc66457b4bc87a19802a1bd80 cfe9324cb2a9e767902be3b54c67ddcb cfe9c13945418c703a1d599af2a89bb2 cfeb1f619b34f58af33e5dd19aedd535 cfec0d1f544f0dae0ee46f94f6ccaa3a cfec0ed3108326c908b438c1bd7cb613 +cfec3914b24230769ce59fad8309a2e1 cfecc31e35d34e0d4ead71d94f554be7 cfece79120c6ec56c7cd7d5778adf5bf cfecf7d9c8d20283a73cdc351659b5c6 @@ -47193,6 +52699,7 @@ cff9954e2e6580753ac9901b518eb782 cffaf380f23830ebd5089b38df3cbedb cffe5a7321c1e8a561366a971b6d7263 cffed5fae4acd32aabbd9646924a37fe +cfff36e283691efc8e465fa2ac692cdf d000188a9c21011447ee43f0311241ae d0009ab23d5462058f824f8f55c488ab d00137aba9c23f66cec0fc38ec014da5 @@ -47211,11 +52718,15 @@ d00fec4066f8e1e985757ad7fb00f1c5 d010a4f35897e483e8a37d6175dd9d4a d014bb06a604345e591962475b816d75 d01590b81990d80da4a0de8ffdbd1dcf +d016a85eb22ad72d308c7a824f92e549 +d016af4d4174e9c1d42900f2b967c0ab d018248f7124a57e6f02e352afddc4c6 +d01a9df5c3fd795021a14f726aff9a93 d01abdd74a50964229d227c331bccbe0 d01aebcab96fd71d5104e6b8efde4fda d01b4ed3216e3246d472a50d9cb83dda d01b9cb785b3a3774a13dcb858ad3c58 +d01bc7a2c326c21c2a94286faba6ce55 d01c2e99287184e7426427deea270dc2 d01cf4150c740d6026f14f216d4b114d d01dd26a60e85260c2ddfb2e8605c3b7 @@ -47223,13 +52734,17 @@ d01e54688ae8eaa1de827bc60818110a d01e5c6eac0184d1dfc76e3010203436 d01f867df34510993478a44fa3176f52 d02053f75bccc853adf45ea62ad5b801 +d021e8b37e40c2759d4460cf6362aa8f d022027318d8b0ec0087e0b6dd73e847 d0222f21beeb038d4b152785b8bf1738 d023331656d9e9fc4d0ba722e3ce4f2f d0237d02c89c07dc906e9a50d4dcf261 d025f8585b82b7307869e7394ebeb209 d0283da776fe5aa2739f5018ce9b3c89 +d02998a3ce6ed56bf21110d57eea7637 d02a3c2be4f71cfe87d0a3e79f828c70 +d02a611e445f15e89bda8d8748e649ba +d02b83c0d80a9a5122dbc739daca52da d02c56be9acf9b65fac969d96b1d208b d02d060bd15ee2078605d4df449446bb d030cb7d05316cec5ac4b970c28cc67f @@ -47245,6 +52760,7 @@ d03a72757916217972edc9ee9ca17291 d03ae6100ff3e2a39c71748b1ace1b54 d03b65e1a91cb4d7d564aa9c741e3ebd d03c4f9114b541467bdde04212403be0 +d03c780ef951a83f4d8eceb2e2431b9d d03c87a8906b4fd51acec6528d068321 d03cb8960b28ee11cc4bdab17811909a d03e39d4fd6c3eaedcd0c104df9f022e @@ -47258,6 +52774,7 @@ d04a7393a7d3c7c425100b15fc6595b8 d04a87762865bb0914fbaa045f02d268 d04b0b2699cf2c40fa9cb0387e8f0910 d04b82339cb0f5832d8e942acef6831c +d04c7a41f82f6e30062a70c2c652578b d04e6ca02c9886f3d689e380ffeec1d2 d04ebea4abb7e17abb1c61940e54e5cf d05198d89c0a93206b614b96739697ec @@ -47269,6 +52786,7 @@ d055432fc376a78612bc40f6bc5c5fc2 d056c79952a30302ca3ff88b60c16401 d057f344fe85b0a8a3af57c06c461102 d058343eb61f8d449c30e50df70284ab +d059590f8ae13bd28eb59ed43843cace d059fbd290ae160f185eb264d85164a8 d05a223edc3f941a314389756c27c9c6 d05b4c6cd27b52c63645eaf67d009b4f @@ -47293,12 +52811,14 @@ d06e38337ab807da87d5f77b94431e6f d06f3dfb3bba574bc26f422b52971c73 d06f69b8eb4b60fe9e63ef0ecf0f664b d06feeae3463157f9ecdc29fddaf8cab +d07135b11643ad0c4f3e8b950d47ffb2 d07137b9b700e7c7e4d41769380acfb2 d07190e64c19c51a4894c5af90733125 d0740a9f91d4892d13b00b8bca0b34c1 d074ae709e0260bcbe9c44a3b57c9bee d074d0a962d7aeb93f21f90225759658 d07857d45b0a88d2fc95f315ba9ed706 +d078cb9ebc7677f7c493f2028bec35ca d0792069dde20e5ddaf62bcacb9a127a d07980a3f4750f6d7135be755fd8e268 d079aa1f59f0b8684c7246d6726d2c5b @@ -47306,8 +52826,11 @@ d079d2f57216dfeed18af5c9e0165bd6 d07bbc6d0f4a4ca2059f5f02aba0d453 d07d04c02f15814611740b7d71d964f7 d07d3afdb60443c2b98c48d31021d322 +d080af9350d91682b793b0162e4a6649 d08160abc8441d1e373215cbb51bb53d +d0819deea6a0bf3d231dda374dc7e243 d082204b2e91dd040953c1c801adbc19 +d0824f6fc8fabe9af130d806112d5402 d08413a7258b4987da76827200d48bb8 d086ab30d5e865b7feb8cb17aef20435 d086dcf176ecc28343851edeb42b85bb @@ -47318,7 +52841,9 @@ d08939ec3d9304228346a89d49301fef d08ad997d2bfe3f51cbc355c81813ee7 d08b1ba1aecd4594638787cb353adfcb d08c5f43e03bcc8f5d3a7f8e80292a34 +d08d68903bd0ba6c869452078eef177f d08e3cbf95a408ce17b21bee5f186cc8 +d08f824c0eadbcd64405ac83463ad610 d090102695cefd1377e2cce82b2d69d2 d09015f441acf7abc2c17b695376bfa6 d092abf1a8d58e4bf5802dacd1873f6c @@ -47330,6 +52855,7 @@ d097c8e773d3fd54073a82d0d4ee0485 d0995f89551ab3fff372e6eb65ac92bd d099d1969f3fc7587ce69a778816f5c2 d099fb273a4f5f117e1a34a79454d145 +d09a0d44f6e344ca23668ce6801cea0f d09a17aec471557bfd17075aab893b6c d09c2ee6b9f7365d662e39c1569ccf78 d09e26a73f10fbb50b0b631fd773e6a9 @@ -47341,12 +52867,17 @@ d0a89c472776b769b010eea1ab86706e d0aab080cf1de684de83474b2f28a82c d0ab3158ebbbbb1b0fdbd7861bf95045 d0abe4576e2bf6a56eb229b5e204db34 +d0ad085c56060ddcd8f4069db81f618a d0ae2e49184750f018afcaf4b267251c d0af1561ebe0f172e3cb012ff85a2732 +d0af2c3b766c1a9c6d145a591a9a16dc d0b0874ccc0a89b85cfdd584095e8eb8 d0b17fdc441c8aaf5e2e9b2f0df21790 d0b2e714ae2a016701528426ff88e3f9 +d0b5207eecbe66c5b217c809ed80ef3a +d0b784f7bde9beefa3abba0c7f888475 d0b87d6060ef8c636e93fbacebf51a6f +d0b8a535b6a22f3491320b17eddd1bd2 d0b9772b62e197f167c7a3aac8a66948 d0b9c4805e302959f9c91fe0057524ce d0bb12cc7fb122bd50e1fb05674c3320 @@ -47361,11 +52892,13 @@ d0c5c7e979cb8060d8c6eda47d8b8dad d0cb480a89eacfd12acc96501a9d69c8 d0cb499a383d22090f7396ad1e911fd3 d0cba01355c238183a3eb1a1f21ddaaa +d0cbbcec2f97394c85d0b961fc97866b d0cbd4fb868fe322b7c4b90b04ad57d7 d0cbf845b5f9377fa66b8aafc7b31875 d0cd268590b731129dff9e9a9d5ef59e d0cef229469961fbfaac4d412200deb3 d0cfe94a0f0af304be6f7b39439d5405 +d0d0da3dd5c79bd8ebc7dbdd8d6b8afa d0d0f830be6e236d2a4b1151d29f6ec4 d0d3552f13005fd7b8ba2238d2b322b3 d0d3deb31f064312a1ec155698cc7051 @@ -47394,6 +52927,7 @@ d0e50a2a945501d9f29d5e0b272f928c d0e69640ec541daaff36bc8b726cf16b d0e7beab8ccdabbed3ec06f6fdef323a d0e8055441eb583c7fe39498584247bf +d0e848b330503de9dd025a77f8647399 d0e8b80665ea8304b6b590100a6e594f d0e93348dc58560d895de517748d1611 d0e969177068fa624f03b32bdef5d479 @@ -47409,8 +52943,10 @@ d0f1ace430fc259e940d2ca83fdaf664 d0f2c5fe8cd924b82bc1d8450a423adb d0f7534c660655100294bc92f2dc7956 d0f7a77ae4f21ad9c1dab045d10ba584 +d0f7ea8fa5096df316937be96a8bb058 d0fab6666eb979caa8935841315d57c4 d0faceb4d705719a78737535f79664ab +d0fb607b08619da1da4f8dc4fedc07ff d0fbe2e4af8bfd380529acb634874ec7 d0fca3a4fc738b216e515a0608a791c5 d0fcc29f06d2f38639683aa0cdf47bc9 @@ -47425,10 +52961,12 @@ d107f52f252e930e09826230dad6bc06 d1085c6e98fc0b9b432f85e47ea48b58 d109513f3473541b6b0a1d5132e90afe d1098e26c9671750ea11eddfb988f7dc +d10a1a7260f44720abb7124ee0ae6a40 d10a1e889baa17e210438d13b92a5141 d10aa7796a7d2f449d4dfd058eed1c3a d10ade6eb79842f4e0210e1b793cb0c3 d10bf78fc8f7b5bf5fbfb937bf2f4aab +d10e6bb8f725b17a03c328c7d255a625 d110ac798c5d84c8844c58eaa117ff49 d11148facada0a3bcad62394a3e332b6 d112ab476f3503b1ffa43aedff6dfa91 @@ -47452,8 +52990,10 @@ d12445c0d56ae133787ee34300c90a27 d124c8fbdef9fac5ccecde9962dcd3ea d124f2b2eedcc9186898410a65e619db d1250b3df7085d771b2f011bfdb32b69 +d1269ea83eccb00416928244bc10a516 d12733b3bc742549205da818a931f7c6 d12747c7959ac15ab3375e6ee0be0ce2 +d12797a32ccc466384ce994bf097ffb6 d127c265fa1bd55dd8c0ce9223407893 d1296c1283cff880f35fb0b7af6528dc d1297dd1666cd79b001d00b4841ec3d3 @@ -47465,6 +53005,7 @@ d1312bae197d0a0b6802a4a3e842d35f d132dda0e4b7df36f94c7ba66358d17e d1337c55efda4f93d2edc7c434bef7bb d13419d959c39993c8bd4b0abe163099 +d135cf3328db26d2d7e14f703c166262 d1384f915bd1414ae2c7c61ca0775074 d138a56cca9e2664892780169df94e21 d138e2538f69d07649d0148d1007e24f @@ -47497,6 +53038,7 @@ d15055d0d8003535e0dfc2b1131a71bc d15073ffac631104347f06ee0b0a663e d15365e5e73390c6bf5ee7c11df8eb8b d15487c55cbe5383cf0e49d65c35fee8 +d1550d5bd33e635b67ec53995ac0d740 d1569f3db6d2c3cf65f0c3639329a447 d15705776e3778b3f09d1ee915e97739 d157857733a1d24a5fd28026e3adf297 @@ -47506,6 +53048,7 @@ d158271ed488573fb8f8981c7443fdaf d159870c43007b66efd7e295765200dd d15cacfed6744425381969ca98485c0d d15fc33cab0897029efd3fbac752b82e +d16177a6d0f0005e7dd4594e04cbd7e8 d161e93adfa6849cb9f7eb8f9cc8406c d163cd525e2b824901df6048b5702ab5 d16426e5b8b89c1e43816ac18a6c3d75 @@ -47517,12 +53060,15 @@ d16f108ea6ff919f006086890ae311cd d17123b9af8c5bcbce761298405c239c d1718c9b6d02f9993f975a3e83dbe6fe d1723a436000f40e7134cbac1787f9b0 +d172958e9c99e0b933b35ed22777296b d173fe0ff5916fa8df418192b5a531a0 d1740adaeb4ffc46e8dcfaa325f2b432 d1741bf385c4345dc406d251bffc814f d17443af7c39f6795473656073b77ad1 d17472ef993241b391921b570daaf9ed d1751f8bf446473c88e0cb1095c95962 +d17879a73dded596fb115dcb7659be96 +d1796acae1b460a2ba35ad7bbb000299 d17b50b6452059a5f4dd3ef7f0fdba62 d17be78f918542eead17ec230bafa20d d17c756605b4eb35719728cdfbea21eb @@ -47552,10 +53098,13 @@ d18fd5dc12cf8abefb107dc793fb1b3d d191b5666562f34ca0426227232ab809 d19200ec030659f8b9f057bb6b68b290 d1938041d3d67e1b0a83828f97ce125d +d193f4ed84c06824b28e9ee6c179be40 d1940ed7dc660a2e6f3cbfbf95b2b343 d194b7ae743807caf452942c064bea18 +d196d41eed2ba115d9956022a4ce195d d197453676d53351df0a597e320f64f9 d197c9735149613ddc092be8f39abe4e +d197ed72d2814b2985d64ca97aa4e10c d19810d878f4fc883e460ed79b762243 d19bbef3095df639d1ae8cd6fd7707d2 d19d555e7f035d2a391daecf002bb82f @@ -47570,7 +53119,12 @@ d1a7d63191eae5ef7d2a889861317fc4 d1a82d07b8188d80cd6bdd864ae854a2 d1a865424f38f6892a340f0f7dd6c552 d1a8c3f09b7cc0c9ba4c314f23180a4c +d1a9be3f8b2d39382bea83aabb8cc7c2 d1ac8758ec8e37942205146eeef5b900 +d1ad589cda6ac7a79ff2b883f54ba4f0 +d1b0326211df24ac3420a51cfb5a2c0f +d1b05a5f488d806daa51dcc9278b8cdf +d1b24bd08646ca21e138a62cbc22b476 d1b2625da60adabdef0ae26f029c99c7 d1b40abd6bcd116f3c602325e5bf20b3 d1b57db43355790c620238dc6963ab0a @@ -47579,6 +53133,8 @@ d1b71bc1d9aa9721f493956beaa071b8 d1b73a196744171dd5f7ffd19938edb3 d1b745f3bc2f1e36a3e47301415085d4 d1b894245ad182debb6f5d7b1feab5eb +d1b8c0c01fd87112b1be99f6acdb989c +d1b8d2ebc0e1c36e9b02b67dd1ef3ebf d1b9288204c50289df03467156464847 d1b93e27edf39c06dfee9001d392701d d1b9c4af39a799ba9b25d9ff5de8e896 @@ -47587,9 +53143,11 @@ d1bae303bb06a6ba80b23464ca6634f9 d1bae669be1fd867c025fd82b00f55a7 d1bb8cc9908a4fd36b030d3e3a489a52 d1bbff7fd94587d5a9e09e7eb7a69af1 +d1bcba173204299236a44127ed0898b9 d1bdf33d619d6d46e81d1b01c721283b d1be05946c614faffaecff66e69a208c d1be1274a6c8a10a90a9083796a4283f +d1be59d17a8c4a44548bca81e534a56b d1c354463ff151cee3d4059fcc3d1e29 d1c65c6bb4c14485c5f6eab9f0a77ee4 d1c798ab86b03849420f15fd23632d85 @@ -47606,7 +53164,9 @@ d1cfb7f1d2ee38eb14c5f2b0fe304413 d1d07b412d07b920cf6b1a5249aa71f7 d1d09908c2c9efac01e0b60c6adc7d82 d1d1b1dadcfd8844b4fe38126bf313cc +d1d39079af041ea28d4e2d9f36f02c60 d1d39e1487c39994bcc1df9590feb706 +d1d3db80fbb2f8e46d736e619860af99 d1d6017c330f806ee81e9201e0b2cc00 d1d8e466abf5f3beafa196383fac806e d1d9597ffb45939261fc774c9c28e023 @@ -47620,6 +53180,7 @@ d1e09a4f4d0e7812a0c50ed15a833eb7 d1e3432da751bcb6fc193fba72880074 d1e50dd873bbdf0bb0d752c23e114463 d1e526b2246d9319b10ce77950ec670b +d1e62c11e94f34bb5c6a3b13e9f9066b d1e75f551773176efb13431560c9bfbd d1e76a1725aead00aded3a90539dd293 d1e7bd7fe23703ab5337ab80902796c7 @@ -47632,10 +53193,12 @@ d1ead916c775c768fc6eb4881625179a d1ecbd8cb04477d2193c7124411f2417 d1ed41d5da788b1a36ead7cdfa4920a0 d1eec1b06a0912e13ff47410152b81eb +d1f35e081307252236872b462effcd74 d1f5f71e0822df2acc4965a2a81dd13b d1f85a74699c1196f47f4d7feba1078a d1fc21ac2becd6756c29bba1b59b68b2 d1fdf30d5de54f23ee577a022be9ba2b +d1fe004f80a2f689588fb4bb94fd8a1a d1fe114c38dd756aa56c7d053087d004 d20281d0746082749e2b427b01876904 d2035f8e0c3c53b829174fd728a84bfc @@ -47650,6 +53213,7 @@ d20c419f8679f1b5264eb7c9d5e2793d d20cf29eafd83ec3010a7d8cbd4f171d d20e580e0eb5944c2e52c3c2983e55ea d20eef1dc552fe4d8dc9e17d8e163208 +d2104ac347d434b13e8c5aa8c1d5567e d21083021c83e424f184b3417dd0e436 d2108bbc04a5f04a8acd0147139dd45a d2108f1577f2199e3730eb62d882f483 @@ -47663,6 +53227,8 @@ d21848a2434e55deeff7e6e80035afe6 d2188c19bcf53bd75e762b4be9e388a6 d2192838db1a9836df4e5b1fd349df1c d2197b07d5cac2cafe8e3556658c657c +d21a412f01ab81d49aafec06c24308dc +d21ab5882483b2b7dd8cdf005a1d2aad d21acd26cedefc9f0e7be5bc6242a2a4 d21b80109a0637b8f9e56d2279f40fa7 d220c89339b045a87d810e3f4088053e @@ -47671,7 +53237,9 @@ d229da05b20ce8b1ac77d8b52167c295 d22bad17b29704a938353c42591778e0 d22cb7e620362ea80756e3cb10ba7128 d22d809ca19ba378c8f10c3a394bcbc5 +d2304a42d3e5507aa02fcfe84ea0e6c5 d233735b89b2bf5687a3dadd74e221ba +d2373380a5745c3507e5f425a5854f81 d23a67d7af0cdfa988f3c8cdc9c38df9 d23b9a110ee55e24836ffaace0a0fc38 d23c7af06285e03df6a40756d55ea81d @@ -47681,6 +53249,7 @@ d243385c9faca72dac6593e0520d26bf d24474379eb9cb9868edb2e95af33370 d244dad11970e64d5c55e17189b1de4a d246c8d2d6ab81d8e51ae1b5e21846f8 +d24892988227a90a98d6241904797221 d249285f3dfb6067b532d488b3f29e2c d249ed8d990aaa608519dcbb67bf3d7a d24a60b00f70226ac5870d70147a3385 @@ -47694,13 +53263,16 @@ d2512f1c67f4598fe3409d8108c56973 d251c9d88fe188e072d8f19095c43cc6 d252e67b8bef0570ab70382d250b1490 d2534104a8b7ce69e3a950295dacc437 +d25491f896ee4dc995f69097756c0217 d25510983e412c5a96f182dab3f61f85 d2558e8a307dc01fe6a8007f9b608de2 d2582e87f3a13eff5a2c977b6fba13ae d25b489396b4b4832241dfab47866efc d25bdf1d3a69b89159e9d6d9c7c82abc d25cd61b90f2f74b4639f6ff1b34a532 +d25d27899fa4c1424d7707aaf9d6d301 d25d4f0d8c175f0912f8c6916e201995 +d25d95cb8a54385d61e699c6c9366c30 d25e6334e5dfb3811e0b3e17aab7b990 d26275c4cbe4f468e9dfed81eb9e3ba8 d264aed056710bdffc041b5730e5dcba @@ -47714,11 +53286,13 @@ d26ab7c2d39957c77def5d26a2db6bad d26ac869b328a2a27221f6d1aeb7ce7c d26b998b334c5395ef5c57cbe9428057 d26c8026c5fe47a09a9b558242209b24 +d26d3cc51a0af416cfc9d305a84aa63e d26d809405d696169bf3b97b53019ab1 d26d9efab710accf0226f327b4a2db45 d26dbd1afb71bd419c89418960c38f84 d26dd3aa938e4ee8a87016a50b365d09 d26f95804a664513f7c5af7e6730aad5 +d271e6cf0bcd401e75edf9e8a8eb31b2 d27502e9e81852f0f329c1273f90ba41 d275dbe9ab76b490c5c6f5623e706817 d275fe8fc18869f4cb961b3d13cca288 @@ -47729,7 +53303,9 @@ d27b3ad4a0510f176b0d407f71f78e8a d27bb3b15382b8f12be448744ba38605 d27c7704cc15d395353b80a679468660 d27da9c7c9c1e3cd5a590270daa594c4 +d27db2e1ba83a4c0fe6ec7ab1b4c3c0f d27e53d59f7ba2f29d4e3b3566ff3ef3 +d280f0508b9aca475a129fe06b2f0c7a d281db73fac9ea14b4bc45c69e343367 d28262765273f96d572374a5a7e0273c d284a748343acbd660abc8d83d28dcd9 @@ -47744,6 +53320,7 @@ d28c9f604ff05acfce412efcf2b5b996 d28ce9ea4e9d01e802570017090c7188 d28e4522b0e2de89faceb88803b505e4 d28f90f6cabceb95eb28f1ad1ddf339b +d292bfefc33dffb0b6787dcdf0679b6d d2940edd91c82543250df9db99213217 d2947a19c130d53b61112b85c392ac30 d294d2fdfb00c88e09ae60c67a1addc4 @@ -47751,11 +53328,13 @@ d295704bba1c3307909ac2fe0c7b4232 d296b57644ba7914010a0363952a4015 d2974e2e2bf8a5802a09f778170d3f4d d297f36f9ba5b769a840696308330b02 +d2996100a7dfaed0d76fb65790e0f494 d299aa1cea1ee15a3ec4b755d4d90163 d29a7cc80faa94e444097167f5882772 d29c8e692e7f8c266ef53205af88403e d29ea90f33eb605af44c3a57fead2948 d2a10645dc9f6a4f2f46c64fdba482b6 +d2a1b32ad3c19343c9b7b9f8491171ac d2a2dfe12f232d06ed61e0a66c99bb13 d2a438cbd2c6707010065994c2a8406e d2a439d19e64afed27b7ec41cadd8925 @@ -47775,6 +53354,7 @@ d2ae6c3181f1aa06d3ba60a56358432d d2ae80d52153d435fdce44529ebb3180 d2ae95066ebf79c4cb6aacaf4dd184a9 d2af2b812d42d0196ca9e828ce4b3f5b +d2af8e426cb6be855b76627069321376 d2afbafd767971a35b33dbce65e88ca3 d2b0a4e2169ec7ef47598225262b585c d2b0d2c15798501a8302b47d058b4efc @@ -47820,16 +53400,21 @@ d2d91261cbdaadcfe9f5f4a117f7af34 d2db4d3310d5c19e42f3f97b8d621c85 d2db71ecdd8bab6fa53cf0b6e234d25b d2dd1d44fbb786c4a17f09a5d03ad57b +d2dd25705b8b09644bcb226e46e1cb0e d2de5972c16fe3804df4efa405fdf204 d2e000f7b321238a17bde45e6665c6bc d2e119597ff1b7bed2790156254554cf d2e33b7fbc1a52ba67cfbccb5f8e389a +d2e5e261b055557aa5f0ca7168679724 d2e681f8a72d39fb4248171d8a29a738 d2e716608326fe341c74ee94efaf488e d2e723b608dffa15074d454e72724dc7 +d2e8128a800257cbd35568292049b9a6 +d2e83617b8fb726b97ce9cccf5f26969 d2e946f5a868eb9d91643d964d5573ec d2e9969b5886f15f498674136a238bed d2ea5e3eb5509becb661300e77f1c954 +d2ead85f55886ef8b249da961601ef99 d2ec02b77cbdb6623ef66883d282743b d2ec0f20643a8bf8e1ddac20f0980c73 d2ec14e11baeb240f28233982d02ed12 @@ -47841,7 +53426,9 @@ d2edd2093407d0949828cf420231ba44 d2ee2cfbce277e9401b28257497f5ae9 d2eecad7c63980a4db66dbe4737a3a78 d2ef72ef5184d9340723b700062cbeca +d2f000e560efef03b854ef61ea08fa12 d2f0d1b28bff7e04dbf5db05dfc6ec2b +d2f2910364f49f78348072d41485552d d2f2a789972cc1f0f8820e1bb54223d2 d2f40a280db24cc8aa733b67f826d542 d2f4720b7f344d52ada5b23f1adc69c0 @@ -47866,12 +53453,14 @@ d30db9738bee61da462205f612b10489 d30e3b174ae1995cbdfad872a91d7fcc d31004b1702091998a9369f192cfbad7 d310e2d2dd232b96cbdb1c5fe96ecb55 +d3115a22a9884a93bcabba297e74f99b d31320d50b037c8eb7e5c023985ba699 d31420ed27ff25aad1a8f24b697edd68 d31516320a84335bfaec4f2caf1e1bbe d315f2f210aece2af3c5ddd9092c7e92 d316767df9e8baee86eda75830930614 d317b1dafcc751e7030dbfe686f00735 +d317d5b7f380cade73be2a21773bd14c d318230514daf35bda74cc16ae0eb232 d3187617ade037568c052bc2a1fe1a04 d318b2be51467d27032e6bcbc830dca5 @@ -47889,6 +53478,7 @@ d31ee8d41ed8f6fbd35eba9f10fb7e55 d32067006c4083d92c9a3e9ed690d41c d3225dd1918cb075afd1f0fdb7951117 d324cbb3de1436a425112ce71e3e435f +d325fcb8afeb96744379a70417c460c8 d32771fd877d1fee90fa7eca4656fbb3 d32888b5bca3d28924810df698051a66 d32905aa7aa6547f37ff909f12e00d4e @@ -47899,8 +53489,11 @@ d32b9d6aface685b2ceadc2d740f5362 d32c0d64f2c5676a4792544f1201eea9 d32de7c5b12d0d2c31f969d940758eaf d32e20c60cadff4838dbe1e383b55477 +d32f7327d616d0dffe5865aacd72b92f +d33104bfbc0aebb53abed2e79cb09a64 d331d2193f392a9ade297a2350f4eb6e d3331b07ed46137fdad06be1c6d34f95 +d333a44911deaa334216419dac5b3509 d3355d9f7b57dec4667b328f31938813 d335fb14e3c6da4fcf58ff811ee8c1c7 d33627fb2063121cb295bbeeff8a9426 @@ -47912,6 +53505,7 @@ d33c3ab0177ca7847814fc373b0deb83 d33cfa004fee22d6587c7271f19d05c8 d33fcf0ed1dadd3a4363ada52e8112a0 d33ffc3c1a255fcd76573e0f409d7e41 +d3403898510e6462aa35c8134310b662 d34079cac2dce833578ed4554c877990 d341c8292927c3efb5ce3321a01c1f66 d3420343bdb50b8e96fe1e5b142be060 @@ -47923,16 +53517,19 @@ d34a4816fa9d71bc33ddbe83646c5aea d34c7b09f1217d4ac7b8b1c139d67623 d34ca3ec5d254e184b9f98125e77d750 d34ece886ffd8711fe9e0b5a6c93217f +d34ed2e983644a718699f5a3151170ec d34f37b00dc8b612313b4e365ff07057 d34fb277d2a4d5cb4730e204ed5fea35 d34fcb99ae31845c514f176b14bfc4d2 d34ffe487aecf078379f70b43484159d +d3509e272e5d0969c7030f1b20d57187 d351787ec793808bcc3e3300e6b37d10 d351c6107656ead6af6d0c8af83c894d d353335b6f55255700361872d3afe09c d3534e9b716d19ac9c4789d14e1dcb97 d35645550e8a94aee9f33ca6283aa58a d35710c796fddbbf29a3d73c3da796a2 +d3576995ef6a16dd5acf760787a6ea0a d358f0495b70521c3f55847c8cc84657 d359c50c2cab207c911986e7aa265c83 d35a45d6c48dd2856a1000ef07633e48 @@ -47943,7 +53540,9 @@ d35ce58b693c2e495cf74e016f8e44f6 d3615e708d1d533ef36d0f44e2037561 d362987a326f020536a4786fff89d3b4 d36485134a042b1e5a66a5bcbac885a8 +d365a6fee2282f57e28bf89b82297543 d365d72a6fe3f7c19a01df2ef074f9d9 +d36809ac20d102a6872d57b4128179bc d3683b49be66f9a23797c56898cb3869 d3689ce9802743f276d6ed83becf5bd3 d3697c49b3fff297e9cce067c13bbe86 @@ -47952,13 +53551,16 @@ d36a9b90c5e4266b3998cf8e48b681f6 d36b08d99464df020718916e6b537143 d36c2cd9016e00e815a19dc1dc70501c d36db712d7c5ccc4133cfb1964a802fc +d36f940c937a9ec8df3fe6409b247ae6 d36fbc5c3128cfd489e43d72da3ba9fc +d3729ab723c703893ffe6a6aac8d3811 d3729bab9e89617745f5d911e53ada7d d373f9030dfb3587f900378246a82a2a d373f99a2ed653c9bad9c685a648d2eb d3743ece113244b68460337023cfb56a d375fbc59ef7665e33d0a0f0bbda8f8e d3787c923bd35e1d48327c3a51ff0681 +d37969ba729382a97cc8f12a3c9e2f0e d3797bfe0403d0d7042f3ad84a1badc6 d37d1098a9004d06df7e0a1bc4adb598 d37d3ac62f11207e8ea0df9648fb4610 @@ -47970,6 +53572,7 @@ d3805e84b8eb97023e2c5fd8cc08ee5d d381245eda4ce3aa9be170f5922a4ab1 d38382c85cf4a0d3ff87a01afb227114 d383ee1e05ef1c073f9a96164ff7240b +d3840043682b3e8041e5993e76bff08a d385aacab18fdf40f32d9dac011253b7 d38637346097741c02d54a19821f3aa1 d3867bf6aa4a90c590433257ceb3b59f @@ -47987,6 +53590,7 @@ d38c97c70b24eada80a953592a83756c d38d8b94815e3447d8bd09816bb927a3 d38ffb9e9cc1622d8cb224560deb1282 d3907461da7d7adbb2186c1c3d5550a2 +d392043241b1f3c7f36fc7616e707e5e d39233adf938cf839635432b1018101f d392b5538887ebcfb97ab3a24bbd5e8a d393142e9e81d3e25b7a03d5ee5331ae @@ -48012,31 +53616,40 @@ d3a4acb99774d8ddd8c1de38cb9c5910 d3a5b7b7548127c8a9a31ba9b9ec5aaa d3a775a20af0b1aec4ec43c9ae70035a d3a8307a3a16df8e4725bd290b247358 +d3aa3f33703a702f0b932bf53a3e68e5 +d3ad6950c0f141c7e338ba953ed70fe9 d3ad6cf6bb5910e8ca960baaf630a6ae d3af0084646465f2b9cc13c26d937663 d3b0868e1fe61103f452712ec3cff58b +d3b19f20424f0bc29e0547995495cb80 d3b1b2ca4da935bbab03f428d6c3eac8 d3b4932e5ec44af8626d51e997e7e9c2 d3b8de4fd112a07c00990b3481897566 d3b949ecfa9b9256b3bfb9abfd992aed d3ba0e5dcadfe43abd606dbd9e9f83f5 +d3bad5b6743df71cb98c6657b23fcdf7 d3bbc3726546ca0f4a98945b9acd3c77 d3bd595cf7204ea3f6ac4e9a748f0426 d3bf038e57ee5352136676586e0243cd d3bf78e4ff7d4cde3433c0b7a6cb4e96 d3c1251f70cb16256d1e7c452117a62e +d3c1ddd086d2f03d992a50bf0ec7accc d3c22de93616e9c28b7a85b676e128f8 d3c28d34e0bc5cacca531aee91f3b944 d3c2d6328418890b7c490a51af448371 +d3c2eaa1f0c59622d96c5061a3818dac d3c497eafc342dab23b0c0f86c5cd124 d3c5110f78b3ceb8505ce48449edecca +d3c67042c41b0144a8c87fee521a6c76 d3c67ab006d4ca913b70b04aa9454d2f d3c6d64b90ac2e0f90dbef29e71a8998 d3c6df1c29fe43edc84f78c68974eb07 +d3c73dfe3fa3e586204ca55d03723891 d3c7e2205802a9ccc2d19ebd97d7d9ab d3c94669b0fa13ff5d76343bac20cedd d3ca11a445914c5cbd886ac1aa71a10f d3ca5c4e7c7377ec997ced0c4764179c +d3cac007510671863b694c8dda555775 d3cbed952d8f5c03ba4633323d4e638a d3ce26365eded38ab2242f0eee56cb18 d3ce2cd6c08f79eae6aeb13cc72e84c1 @@ -48052,11 +53665,13 @@ d3d7213564057160734ba3957320cf87 d3d833fdb311d54e2bad9745e01bbb1d d3d8adb788aeb43231d60945e43809fe d3d92e0cc3f03950ce7b78f02b71722b +d3da5f2a15da3b67f324b847b45cb1a8 d3daf98bea54db3b1b79786056fa153f d3dc1dacfa5442d5a0ad4f1b5d6ebfdc d3dc2590c728a42d6fdf7ce0871d9496 d3dd122e271066c5b529ead775363fff d3de57bf2b452efee5a167ab93039976 +d3df6614ef528c81e5da670e3a5a8f2c d3dfb0b7a0f49b9e2276c8847bebd9cf d3e03728a6f07ea3c0971f4bc8ee4048 d3e0a93ed32b00ecb9892763bf1c4528 @@ -48070,13 +53685,16 @@ d3eb68a7150cdeb5ede5d6e1c7f2c565 d3eb916719e11d6eb0c21504a21fe900 d3ebdbe9631d70370c689f6a9e696ca7 d3ec9dbe208e5c1224e7ec09823035e2 +d3ecd3d3ee0e010a825990210cff09a2 d3edd807580d8d22ece431438113fc97 d3ee58c8e1d237dc915a9f06cc86e2ec d3efcc7cfa9ee37631b6febdf2154935 +d3f05978d59765aa7476af169336e78a d3f1348cf27706f1d77ddae286344e52 d3f179af45a9ca84e18be7c56df960e3 d3f63bb266aa4ee329383eb9c0c32826 d3f7902e0995ad2550a35453aa1d65bc +d3fc631e317aaa874ac5a1a45ad2135a d3fcdbf2330f879db3c8565708ff2305 d3fd585d61f73877dbbd3896c0780c61 d3fd845c17482dc4286aa16c97dd382c @@ -48122,6 +53740,7 @@ d42ba83ee23c6e0940050becce52e4d2 d42bd48c2f792ae673909c9104a5fc44 d42c069ec2ec85c5e82ce68b3210a732 d42c7871e1578f57cbb8fd4a7d5f8276 +d42c951d3c76222bcfe2182df5a85785 d42d40bdccee081676bb1b453a13cc81 d42d898c002653e337e217d502aa4557 d42de439ded5724355f737c3da6924b4 @@ -48134,6 +53753,7 @@ d432486d4904242cd70bff5e07d0d168 d432f17dbe5e5c648c772a253ff9701a d433beabd141b5b8b33f1c2af99354d0 d4343e388feafbe646762e893034bb0d +d4353d935949da041d5ba42ba487e5a3 d4362ffb3c323fef9c1abc3a56d15bda d4370e5f55acabcab3368a6a0313e300 d437a1f6c745e47de96807a31548d21a @@ -48168,9 +53788,11 @@ d453ee0d247166eabacf30631a1dd126 d454f0e451c0e06ec8e41fd415075039 d4576d78a5e1c67b97ee21a486281821 d4584039e91246f97a375c31e1928490 +d4588720554a2385f85148246d7498dd d45a62660eba95a355ab216299a554e2 d45a9f62f88d1aed6fdc727337a1caac d45b4c16ea2bfb4aeae50e99cb2af7ed +d45bb1b916ad1faea449cce362784621 d45c58474cd044ec44061adbf748a8ed d45cd8ebea79d94dfc46452b09d35613 d45ce9151016133510780d53d0dd9a1a @@ -48181,12 +53803,14 @@ d45e5f642da45f2d34464b18573a1c44 d45efa03214aa319bb65114b1b5f3429 d45f28364491cf47c43f441c9cef103a d4608164a95ce68ff710d7ea5ac40d6a +d4617926f0f1954c4f55cf3581e1e4c4 d462738b506a7627d1fbc5586260fe57 d4627965b0621b399af024442ad69ffc d4637a217049a313e02044d114ff406a d463ae4a8c8ee084f68b8126a57a418b d4647071071c6ca0a55fa12ca8cc6c21 d464838730e59443e8cb5524c15f447c +d4649191ec07e60ef08bc0547b5a81ad d4656eb758ceabb336f971e335242e4a d4667fc2c302d393e38a4c4dcf29ffd9 d4669e9b2f115a4836c9bee661905303 @@ -48195,6 +53819,7 @@ d4699ece8e8fb561055d9be540c83ad8 d469bd61b06739f07d1289871405d4da d46b46fda39ad9048000cea18c7aca16 d46b47c75d8e572b5520f29ca12c3a39 +d46bee31079d27ecb0f73f453c866e5c d46c8542bdae301e9849a5f79a41f616 d46ce1db03fad2b06e0f3ab18e7bd9b1 d46ef648a9fcff66186fa6d57bc8a7b5 @@ -48214,7 +53839,9 @@ d47d99a82dcaf4733c2b9820a242a0d5 d47e409972875598e6cffa60980cf368 d47e9dbb76e2bb30b47ed595cdac4ebf d47ebb01b3560eba62ab339e3f86cdaf +d480809e77c64c0ccd532ba59781c481 d4809d37b78c377b0ebae5fa9746139c +d48138e500a5f96f8a1aae0a92e27d49 d481a4a3cd99f1ec26442684bae6d42c d4827894277625aeea816f8941d69dce d482a8a8295a5cb9b01e63851b260bb0 @@ -48236,6 +53863,7 @@ d490a4725dd21c1a31f0cf292deefbb1 d492e18476804c87edd75c9e0dfc8dbb d4939d5602d36f4a4d7956992dd5b8ba d49485b0a85ee1871730b591d22b7377 +d49a2ea087f28f874c67a2ec5ab1b190 d49a934efcd8f0fc5d70353fd645dca9 d49bbd4ce84b81003ce48642f6ae54f5 d49cd6ef162c415841fff2b49b6d4fc5 @@ -48249,6 +53877,7 @@ d4a413da3749798bf106243c92ef38db d4a49142ae6780a78da765d65bf19b23 d4a849377608f57f4b5e1789b405a887 d4a86deac504fe1bf806a2c10d2bdd96 +d4a99c5cb6e5f54e3f5e60c3fbfdb878 d4aa173ddcba0e9c5813d09056bc3b56 d4aa967cbe0b80c6dbfb20d6f5efbf8a d4aacc821ae202c66874a93f18cf1bfd @@ -48264,10 +53893,12 @@ d4b3573e9e4b1259d21c3ac8ab290ca9 d4b4841a46ba5c5a151a450530f3bfc1 d4b658a611253bb768c88a307aeb2b50 d4b75ffa7ed39ff96f34cea2452789c8 +d4b816fcc15b58e1f27eb7bd028c9990 d4b879b4754838966b43bdc50ba1bfad d4b9c338f515e82a94f6066fc3a9f09a d4bc01498cfeeec7cf254fa925e032d3 d4be707553f579c5571e4bc573185cf9 +d4bf9af6c6dc4692c4b5d749813a359b d4c12d6bd6ebfccfbe3ef9873b94075b d4c1ac26c9fc07b82870b3c4cf92c970 d4c1f6b6e32e5911239a8b7372f9e6d9 @@ -48321,6 +53952,7 @@ d4f2e67f2f17f0c3f5ae0743f2023936 d4f5b5607a5b67da75144201ffa38591 d4f675969210439ba9ed14578e4ebb8e d4f752deab5181895111692289c2e7b6 +d4f8833af45b94e341146f543b8cddf9 d4f8885fc4fff9efaa90c5e28152df4b d4f8afd033d4caeb406837b15d6591d4 d4fadd69ab7f6954f0ac3d18b0eee511 @@ -48350,6 +53982,7 @@ d50c3173511f9031aad6b5d30bc17919 d50c3faa5183e592322aa0404ba95fb3 d50ca5b03903a5ae49f8617aaa9a6667 d50cc8d9087c80a435f30adf269ad1fa +d50deb4d4fd52ca716c9b1b0eaaf982e d50e6cf7eb88deae981454363525a7a7 d5105f31f96e810a19295a9afb55ff4e d5112ea0310bb7921cfc1b026d8a591e @@ -48364,6 +53997,7 @@ d518621b82888a2055edd8c388cb4788 d51b04056496ccee67262f94fe54daed d51bf75d22924f6536ff34f965d212fa d51df9a2a6fe77d5c0ac36c741885cc2 +d51f90d7a44994cc82bfed0a1a334668 d523260923041f8cd140692d0c869821 d523fc31955ad270ded62e5606e1b72e d52531125814e61d5bb9a01f0f1ed4fd @@ -48377,6 +54011,7 @@ d52c9ee6b51c2d83c2f254d61df6c71f d52cf41757728ebdba6c6dba08cdb2fb d52d7eb47907f5fa493e1325b1d205cf d52d88585e242ce3cbfa868b0502829b +d52e31529b4becf5b3410e166c29a7c7 d52fc8432b4f222ce858d7d4366876fa d5311c379baed55cc78f3429ab4500ca d5319f9a9cea9b13557aea5d9b36f8bc @@ -48390,8 +54025,10 @@ d53aca0e386d2fa37f69cd9f3aea8921 d53be08e832b9546cd94159c311db613 d53bff6cb1decf2a90ee551a7b35e86d d53ea2982eaee6ade698c8d0e8d1be64 +d53f1f68012e268d18573a2a1290406e d540ede391f8ec16c257bdc051524375 d541c09849925954af470a42270e5f94 +d5463fd7d39341cfec2a5aeedd829433 d548f7f61d39d1baaa16245731d7a98f d5493c9793586c1d482d000fdd4a972e d54b32ebce9601acb4ed14af17e2a9eb @@ -48403,23 +54040,28 @@ d5504682a9e310d3cc1185a3cf15d129 d554505fcae6c8235dc79a5359742089 d559541ac885289871bcbadb302b1211 d559961675743d1068fae868b93d23df +d55a01b5cf554e392995ac736493c017 d55afb5badf230d6c800cd810fc621a9 d55b8ee553ac3ae8e9b9b343ec3dfdae d55d694491842740721c7b5621c91d75 d55e5165d75295c337f628fae4859dcd +d55e5e67d7ecb2c7cce64eabb78cf513 d55fddd1afb805d77973a6b3f6579055 d560e0132ab8473c0af3b80d05e9754e d560e1a42964a03f36598a219d6eb71a d562594124eb91f3c3fd7d3ea114f800 d56311cae8680c3b6f47a45c041a070f +d5667411e0cd67a6625ff80f89da4bc7 d566bd5e5998d3284473b6b6b6721a5e d5671a673f10f946529e6476185900a7 d567cde103753598c06ea8c7d4606d93 +d568e039beb5f030aa3aaf2e01b39db2 d569dc3391216328931ea3218cc60d81 d56f098db7af5ea8dd2955f777da40c1 d5700bf4e4df3c3155ab94b0a612f3c6 d571252a060d5983e2a8615344a5de37 d5714065ec6edc02c04dfc9ae5fbec9c +d5734f5b0e275e5278963b3af7d3f353 d573bfebacae24f898938c2cfb590b40 d574217baa45278c338b901905d6f695 d57445a34a6b04ad95fead42e21417bd @@ -48427,6 +54069,7 @@ d5768b5ae20d6b552856f34c64e939c8 d576be5c6137a89609333d2c36817fc1 d577937172efc8f39b0503ed97f7bc3b d5797687047df65a8920f07c46b17925 +d57a531541bd758aa178fbc4b3892344 d57babed438b9effda531857073cf792 d57bc6be5802f698119e2c398208df8f d57c5822a1af26fce84684daf28eb3f4 @@ -48460,6 +54103,7 @@ d5937d16481756f9d58f2b43c306ecac d594e30cc2d4c7544f2b8eee0e1d36f9 d5950f4e333b64d729612eace641b952 d59512c6fa06fc3b5c0ff9005bcca9f6 +d596c7b75247e4f6039e617199c32f78 d597747358428d814002abda48cec29f d59815397e825d61b879351f4d52d974 d598f3781fbf961c67e76824663afbdd @@ -48477,6 +54121,7 @@ d5a2e57f39f4a74bebe036daae62bb71 d5a3fc2d5ab49d8c41d59e282008021c d5a440c8872a8dfb8b9ea1b7ad16e485 d5a76790d9af1883c15688abdcd7cf95 +d5a97c0d9efd9f68be6a79e56ebf31d6 d5a9c9be5b6e7fa79f9ebabbca94c5a6 d5ab2dd2b7077f2c58ea352a4cc996b5 d5abab97813e54d1458ab22082005482 @@ -48491,6 +54136,7 @@ d5b02de53313da9ad258ac324d0a5935 d5b26b8921f8748dbc2dcf9a1181f308 d5b2a201895a01fe3f6233c7fb821097 d5b2a2c4ca42041cad38955a70d2529d +d5b3809d405653b07ba533fa74e820f1 d5b5d7f060183022548808a6dc4f6708 d5b641e6182f2715ef49f97f3a755aea d5b96021c9893f2c19f5ed06bbbfd5a9 @@ -48504,13 +54150,16 @@ d5bce06d6df4d35885d81d0175eb20d8 d5bd4c14b3abb67c83690d0fd62231f4 d5be38d3d5c34222d79c0475649263b5 d5bef5f537bbe91412d6b18c6f69d8e5 +d5bfb5e8c4c90c7067ab7543ef902692 d5c04b11d84840984fb9f1e946f33fd8 d5c12bcaddfa87ab95556be9a739a418 d5c26a20eb8e05edfab10e2eeefb203e d5c3232df2ab67a798eef2eb23d3ac2a +d5c3b51551d85781dfedcd9ca7c62d8a d5c44ee3e04c8686b7f3b945e3102ee3 d5c48f6996af8a1f86ecf99a2a8ec5ff d5c4a5eb0538505b881d39979c1d9196 +d5c4aa74d7ab63ccbb784a745f2c6933 d5c6e7b03360f4bf7bc298bf27ec39bc d5c754c9a974ede70b6542bb4312cde9 d5c8f4f97ddbdd7e15fdf2f9d905a266 @@ -48523,9 +54172,11 @@ d5d143677e330148c56e760934b854d4 d5d22ac3449a0c432f0362b74b7077dd d5d237ccf5758877b612526f1f87464e d5d302b2533cba877cd718a9264f49e5 +d5d316b55709ea3b54527269a67216d1 d5d3267c18eaffafb5c65da526abfef5 d5d43070385539600ab078a04ca3e305 d5d4db32ab45a7b6fa9075219b32318e +d5d53856b8ca5e1ea4e95ff6d5035b7d d5d727a84bfbbf68aabaa229acdb0a38 d5d7b83719c5db0bd5399d436a0690ff d5d83286aa22b22b6730c70583432c2b @@ -48540,6 +54191,7 @@ d5e15a7a7beddaf9d4571256562a39f8 d5e2f0a1616fb4b1e6affb1b4a2cf927 d5e55309352ba652bb7fbc8e0f2d9497 d5e555b7fbe17def9d74b353cc9bfbd5 +d5e5b2b3e4397b23ad7396c1d762e5f1 d5e686307096d16041ece80b05de0e20 d5e74b6491205f6ace53b87748f21c4e d5ea48ac41c9853bbd984d6d95f3b417 @@ -48573,6 +54225,7 @@ d6036396f35e13f0ea3a2fed579fbb94 d6038df4019f454aae7a4e43253927ae d60395a686aee787ca4b10d12555da56 d603ad23629db20930cc2d30903eb0b5 +d603c7b3696cf14d2d2dab947d416cd6 d604b31d99bade7936b33df7f746d534 d6054e484415a0a277f3750c5879d902 d6066ef3c0e27a5d40d2019c2625a72f @@ -48602,6 +54255,7 @@ d6257fc3202e5ee80bd8cd2fe7f5a41f d6263ff18f83487d15a5100c7876c180 d626c81c16ccf02169e5242aa738d186 d627f8607d95d727106c041f64747698 +d6283b5dff6505a731ccc05b819a7a68 d62a07e136638f8553195c7021739286 d62aab5b2174238473077b95b0b409d5 d62bc6aa347d6dbedc8960b03c314f45 @@ -48625,6 +54279,7 @@ d63c7b5fdb539ea62331a1030f57022a d63c8743983f39da1a6539d41f274dfd d63d0fcaf904d168819250e2fc1ca68c d63d6748cc359a441d9dc14c386adeff +d63d78be74133145e8986a62857b0914 d63d80278927f3016c925f3fb7c47657 d63e1c782dd6d1bb8e3f40d8eb817fd3 d63ee6cdaee717bc847ed0bde05f13d4 @@ -48638,6 +54293,7 @@ d64201892fef4e6f7e2f984696ccfdb6 d64447d929eb6e49225d2bd0a21a06d2 d644a82261b4ebc4611c993cd4bc4952 d644be43c946905c922c00dc7dc43a89 +d644c73cf5992f1046d87e095d7908d9 d644e6915299452580bcee8c21530e1d d644e6b45686b35b756192d57764fd24 d645a3646e8df08dbd8bc4fbaebb42c8 @@ -48660,6 +54316,7 @@ d64e3df9612b9de71ee5709b64c88d2a d64e6888205dde66c609c72b55a0147b d64f4598906aaf2e8a02f8b89cc99955 d652f7b11eda1eb5ae11f9821603a67c +d65435a0038da1041ac8ccd56a163beb d655935da4725fb1247520d8af4e0418 d65681bff2e47ed8c2fe2a0905a9dc64 d658fb220442a6d07e6c0a6f67264e2a @@ -48677,7 +54334,9 @@ d6688569bda250320b8c6f87b9a889d8 d669b3655b31d500fc6e24b8b6dd8e2c d66ee0bddef24b3b08808130986aaaaf d6706a27c8f99bdf0be7da8c5d95eaf0 +d67166a280e1a85acd1383e27e11066b d672fbab04dac910af16f1b675c28ad8 +d6736c228908fba332b30795d994ae21 d6760a2c9c6973b7556ef76eb4675c6d d6766f8615d8764257f4089fd6e5cdca d677ab124429eea4f8569edbc9128379 @@ -48685,6 +54344,7 @@ d67857bc927e19fb05b9caf357ac23a0 d67970e37708fd0817c376cbe009ff55 d67a7a342d7266d63514d045454cc09f d67c10803171f4b5e99933307dc77ddf +d67c226a62e273f7691b19058c8ea137 d67f503af661bdfdf8c35403ee510be7 d6807a82170184780ade053616779426 d680aaab6b281b668b682dfc223adcb0 @@ -48705,28 +54365,34 @@ d68f45230f341ff7a5d4b34cc40c8c1a d691ffbc2841a00bb9a481b2e94d123e d6933983a2d6f7afbbcc583c4ed023ec d6942adcd3561cd98bcd9b0963eac659 +d69488abb7b14a1e532c6dc2a59f8403 d694ece2a4b12697c5d0bf44d5d583f3 d6953ea63f0dd71030cfb62adc5e373c d695c8e3653b6ab72c492309d7b75432 d698da34cbd307a09dcea2a01a42d642 +d69912e72ea6d3408153c09b6c5de225 d69a74d67d8be7e4236f1c4ed20d588e d69cb7500eb9d4237a7f5e968b652e18 d69cf7192452e63cda4f51a4c3a56f6e d69d934c9947a106e790121489bed030 d69e6f6846f2391569aa2d6a5e4e8c0b +d69f7ba453d8b743f273b0c6099163c2 d6a00adee05d276eb78fd701bd782e70 d6a20c6b848c9065b10a19d9003b2410 d6a4fbf789d1d1a66ccb770a8876e65a d6a5be584ec5ff92f823fe925f00c56c d6a646d1a4edb48050f7ca52e62a1e28 d6a65f0ef296a7567a77518012379362 +d6a842b941abf2a6a8a4fc26fb41fe4a d6a925ab949bc4dfb253eacd7103723d d6a953f679bbf3b469b070c61d0d6ad5 +d6a96eba4691fc5d1e9928f06ae89b8a d6aa8da8f877cb0ac2dca1ab786b588a d6aae0ca9270270c74ee6b7177af9136 d6ab7e4ebf81d95f3b342c23422e329a d6ab9049ab4de843dae0ea5985d73603 d6abed1a93934b33900fe4ad6ed12f8c +d6ac6ea232669b62166df25213797251 d6ad6d06ae0e601fb75fa5d835073c0a d6afb5dc8d0413e56acf947ee363dc8d d6b1f05d0985ffcf4ee09c5eebe5572a @@ -48742,6 +54408,7 @@ d6bceb0ee46124615609027fdd68cd69 d6bd9d091685636970d75657e609eadf d6be85a42697fb96f84a760add1030a7 d6bf5411bfbe493c530156ab3aad4e2e +d6bf88a8de1cd86edf544e1bc294518b d6bff69813990323acc10f0cc9215115 d6c05aac7b9e4a2e9ee55a78248fe51a d6c0ed8483aa7ff51743da3fdbc812aa @@ -48750,6 +54417,7 @@ d6c1782fa0159c7d674b7e1aeeadb105 d6c1b32977aefa1e20b4d81f4bf6998c d6c1ec93f06b2430098c2e65661efc90 d6c3fac795ce907116fa2a3990f4a10e +d6c415dba6f3a001a699c8c4d9af4be0 d6c691ab467ecd231e5be502fc8dc1cc d6c751ae52cdb2d61351e5d6c7291bd8 d6c79639bb96b3be36254da94fb9bae6 @@ -48762,18 +54430,23 @@ d6cc004da0af4e02048c0fcf15deb65a d6cec3739f24ba0488efcb0bce4181d2 d6cecf69ff57aa0177aa795e95bb2d71 d6ced0d9335fdd54379afd89c122fa0d +d6d1fbb776c1ead704ccdd062555c083 d6d2297eb9c8f51b5ad732deafae32b5 d6d28d051d9ca8d3af4b398bc1f4aa80 d6d40175fd9c2b152391a5a43cc138b2 +d6d4f2ba98b91b08fe5706b692a963ae d6d56365a2a60bc3e50e59e1591f2e18 +d6d624689c6030afe5653fc22a0836dc d6d6e3dbea996bd7744b9a830e856f54 d6d80d01d0306a41d484201bfba86e2f d6d900f3530455c4727821dc1f1b4982 d6d9120aa43b87801d970df31bb0b521 d6d9f2cfa27c0360a7561b0b837d3a15 +d6daae5a0316f1fd27ddb4f04a3fd288 d6dac00a0f1dd7a74cfbd787ce1894b7 d6dcd85a989495d2b7245c5682e074e8 d6dd0ee642a2bbdbd6a4be87808be0ff +d6ddb49e2b1fb1463dd3a3258efcfc40 d6de5b028d51da3551b4a033bf32ecbf d6de79026784b77457a3e27dddab2e89 d6de7d82f200252df5a051288467aaa1 @@ -48818,6 +54491,7 @@ d703cba0af57c8f9fbee214ec9684a42 d7053c73881e70efab6a6c5835d48ae8 d709e40dafc19739190f714f2a98a6c4 d70a2921789ba485e8d7c3bae4fa6428 +d70a751973c50595ff5ddbf90ab31d48 d70d38e00a87a03ede4b40fc90a6efc5 d70e20d0bb71e9d036acd83ae9fc0d78 d70e6fad23511595a994d91e1ffc4ae0 @@ -48834,6 +54508,7 @@ d71a5c7709f876c2bfb8f8cb2d8617bf d71b6c83b40a3e64f50e47439d8f0b53 d71b6dfa02d0d4f17eb92969a2dbf75c d71b7fdfd2fe252a16fc21f14ff1d1e4 +d71c45de27741694b4f2034e85ecdb45 d71cbf957ddba62e91a53212d00c07f6 d71e3418d44e2363778d5d1fde340179 d721f602a1bc33dff410af893f1e6542 @@ -48842,7 +54517,9 @@ d7231b34c0a9b0bb873103ccae2f4a22 d723a7d284b0988cbf83165bd213aa0e d723c6293aecf22de6d9760c29b0a27d d723e520e0aaa4579392ab44d854cef6 +d725612e0425b880c415b684f9064a07 d725bf7748d213542f8f39fa5fc3b3b1 +d72851452b21cb51717263ee8c669bf6 d728922ac1d62211421b87abebdc027f d72a7fea019e2ac10020d8ba35ca5375 d72bbbb9fba0c1f3f7a81c45553a9285 @@ -48861,6 +54538,7 @@ d735cba164bc1db1f5388e7bd9e8884e d7360e95d09847c0ce25e188c971ba46 d736c131076b3cd535ae18142c77b639 d738f67ba252ce2ff0a3206689974b56 +d73a06052c9e3329591f68acd216590a d73a965f8a148dda18240967a238a89d d73b430bb39397e126efaf78bb9b8640 d73d49b490a5b979049f262f4c0c7c19 @@ -48869,9 +54547,11 @@ d73e8cc4b9f074f487ba0b0aaf9c311b d73e8e1d86c88b398c26a53891892f40 d74049a46d0ca4a6e131875611764715 d74051bef1dce32872041d03495f88de +d7466bf5868b3a25f61d1b886e76e419 d74841ba3b385c489fa495accefbe968 d748ca44367de33ee1c818caf3c8a1ef d74b3d7434c3cf5babdb4d73e8b07503 +d74ce3faa65da049680adec932ebbaec d74df916f6ea47a5c84d0038ab1d9f21 d74dfc6ba8790442395f3f86e1a9c225 d74e2f1413125eb5b13221a2ae3a10c7 @@ -48889,7 +54569,9 @@ d755f61332125fa33e154683005cb5d1 d7564266bad6de050d873d00b36c10c6 d7570d9506736287363f2e14cd46879d d758a974143f703be21325446c3ef0e2 +d75b582cfd742e037c501ad8d722c2ca d75b72423814e21cd20a3ebc1254529e +d75ddb782fbd5d7080e26f191b643c1c d75eaa22e2908fd05acf9d51d0da9d2c d75f4ef3d8b1a9c7c2d80a3f810dd64e d75fa12e88cefd42ea903b4d25bb268c @@ -48899,11 +54581,13 @@ d76347b22d2950033b76ea4c60573b6c d76351f838a99873d056c262e9a3a56d d764a43d970774102984191dab01c2be d76598556ba12d59885ef25fdb5bdefa +d7660bbdb5332e72da0ea1dacea50499 d7663292a877323ec1be24f3b7a814b8 d7663bdeffec80d453a8f2f8638a27fa d7673052b09f7446a035d63bb94e622d d76a2522b518b7d90fe1e18a467a5b79 d76abf51dcb55d798d52c5ae1833c9af +d76b0d166b6bcdee6988a84ee642929a d76d33e123c476dbb0bc7078f8e571db d76f586642a7e7bfcbffaf0867e23f75 d7700208e7d79e46389d61dad341dae7 @@ -48951,6 +54635,7 @@ d7972d9a0b02c4e70bd57986b8d4b53e d7978db229679c288814402d6a19e6ce d797a912e35ada1dd1aa6f00bee2bb68 d79857c356a1a04775fe99c3ee508469 +d798fdae29fb7c5bb71ae16fe261cea4 d79a400dc305cb6dce92484bf731b640 d79cbc8e907c83df7b0d5cc99c689a4a d79d73a1ce1947a9b6213ba05170a875 @@ -48965,6 +54650,7 @@ d7a2ea17bb3ebeff2e545477de3798e4 d7a40a67a9f49a14c7686efa6dc30474 d7a5f1267f73bd191e0ce20559a98b55 d7a6e5030d2f3ae367636723aa0eba24 +d7a7136574ea6c0f1b7b6259f34abcfa d7a803fc6f11639ee9c64f2839de7b36 d7a989d1ff2f0ae020d34d9c230ca9b3 d7ab28b79da0a8ec76b9cce393eba4fd @@ -48974,6 +54660,7 @@ d7ad4fb2b93a97fd6a3df12380572dd3 d7ad8d7bef0a62cd431bcfd0c4183aed d7ae45ea9444a5a91af4662aaab3b57c d7b0a8d0f149f98e50f8a75d04a16055 +d7b11fe3e63e637e7f73e09bcd21936a d7b2bff9fcdee0a317d48d80b69ca60f d7b2dce46da49ef8422ccb137d1ca534 d7b3a085e9e9024b1f0dd6c2cdbe6290 @@ -48984,18 +54671,23 @@ d7b5f131076556c3deb495fce7474d3a d7b6d8073aae0e5f62a7bd327366d70a d7b76e5119c7e379613bc3f478b77445 d7b7aa7189463831313b8d4d3f42150c +d7b95c5425c828f170685bbdd777defc d7b9c78abf0a0d4164f6c6181c530e8b d7ba3cc67a76bddfa8c8a7566d047247 d7ba488918e090afb02243b29c65d224 d7bb888c76a53e590c0b0383be83b56c d7bb90a6b528153e98b8d60ee033dddd +d7bde6165264aa1c0a228f59d9d34f37 d7bf8d49f3ba12629ccf03800bcd6668 d7bf9f5248bbe65d2d7be3bceb6bdb0d d7bfb1cb3ba3e232409ddcd6a8783725 d7c0b9a6ed7e6aa9ad232df7e9553b6b +d7c386a4ddd12e1559062bc93effa574 d7c3ec461e5e4264a999ec6ae9cca6bb d7c47044ca9c819d5c0841a47f2bd207 +d7c48f5eca5c07d0e516f3c7e3686709 d7c658b42e2e491fb4a7843ebacaa687 +d7c73917a2be31a92aa688db84f6139d d7c7d9cd38b40c7b7b84598fe0b75537 d7c9241d76e3d01de83cfaeb9ce60513 d7c9c5745958461bf22c5716cc645e2a @@ -49006,6 +54698,7 @@ d7cdcfd448e9aed498cd9b6f18cd59aa d7ce4495096817cb6a24c69efac2fa41 d7cffb7ea3aff5ba523360e4c1af01ad d7d020318a3b1492bc6587efe84f2cba +d7d157eb510e5d86bcd3af509e4b8c26 d7d19589519d378271547910ade76c07 d7d22247bdd131503288c4b31b83e0a9 d7d25241d5248f6db834d30f852506c5 @@ -49020,9 +54713,11 @@ d7dbc2e7577831080a8fb1c617ea1a27 d7dbde5a37beef3eb6990b69f9cca4bd d7dc2b6a06c35b0dcef9537304397e16 d7de393cd6c4efa50aa7353dd7079aa5 +d7deaa7bf2972fa19f3ffc1adfb144e0 d7dedad771fc082261a072697dde7cb5 d7deedb5887acb67e66ddf4a4ce81aa8 d7e17cbe0a47cae6336d773a9cb934d9 +d7e21e343129c8df8ee2fe65807ec75c d7e2d6668ec320e968b2d93c10712b59 d7e417d39eca46491acea4821e16dbc4 d7e54f18c7e6f0b64a1035d271dc4769 @@ -49032,6 +54727,10 @@ d7e97bfb093664d3ef17fc5bffc5806b d7eb12b493dd980d6dfa0963336b3d9b d7ec34477b7f81e227588e3ec4f4648d d7ee5ec1064e3d7b37bf6eb15b232d66 +d7eeea0ee339d3e4ba95e2e964245af9 +d7f154da2f06253d02e75fc7bc815be9 +d7f26c17dff9635d6cfd0573fd43bf6c +d7f29de0ae0707235ef610d23257f770 d7f2edfa823c4c93fd266721c239f824 d7f4e90061b7faa63054b65b50903a74 d7f56241aa5e61756c71bd04fb670d2c @@ -49043,11 +54742,15 @@ d7f8deb4028a4d9e6bdb30639c1a3f3c d7fa100b1dc7dc09888398e27c9627ad d7fa7da0ea48df57c8863a2d1a6165ec d7fad6f3c9115e78a02d5bbf01e9f142 +d7fba232701ead5b6986dd9f754197e6 d7fc8b1a32bdfcdbd1a740c41a36ba3f d7fe6a0124e0ba305772a11412b88c6e +d7fff64810599d42902833f572464464 d80074f3030ca8c49e1192f9ddf3e6d9 d8019edd432f0c6bda89b6f059fa811e d801a03891259e2d38d3495b1fe421b0 +d803a5161178ddab5a83ede10151bd37 +d80447cdc17bd76e0a0b406f99592a1a d804f737809db8beac71d99686ae077b d8052fddfcdaddba28710145a29072cf d806c71178eefeffc7ee62b4a8fe0732 @@ -49066,6 +54769,7 @@ d810ce4c4250df6a47449a56889e5ca2 d810f0f3575e80ebbf29c8a4c1a6c6d0 d813a02f69b67c15c264de9de662d4e6 d8148e912a774845773c7a4db9130973 +d8153aa13aea2c3a52d0cdbb4e8663ac d8156fa7f4ce075ae2ff5648c7af70af d8167b84ade7a826a19689e4175085d6 d8167c2417c64320a71f905300085160 @@ -49074,6 +54778,8 @@ d8187e607bf10a8f378c9cef9991a9ca d819d2cc7e08764cb602eec73b2faced d81a004bd31108fb708e4207ea94791f d81a62aeb7bcd80f247efbcb96f2bc9e +d81ace7d2973297b8efaf0a44cbf3d36 +d81aeea153bc1b788bfe58d773cdae39 d81b1fe3257f1447d70c69b2547a89af d81b2000a732dfb6ff508cf3d5ff655b d81c5653da7b52b0a3f4cebcf648b2e7 @@ -49084,6 +54790,8 @@ d8233199ea9038b5103d220a12369e63 d82577fe0d5aa1273a842cabe476e583 d825935895e2eeb29112ab2cb00c6cbc d826938d641eb8926ceba5862896e5f1 +d827b467423a06c887d18393bb2f2b2e +d828355d3b459f56a5ff99d6535447a5 d8291f56019dd4d58410ddb427ef6e81 d8298f017f0628a01d8de3e404449619 d82ae43bef7c8262e01a3475112854a6 @@ -49099,7 +54807,9 @@ d8322877fef9442c54599c60faa46a4b d83285b92da81f943e6bb4fdb2851a78 d8345036bd7025c0a63d413d2a8caad5 d83567685c737fd9be5183ca518e3675 +d8375a010950cc68088ee6762681fcdf d8380a43d34ca9b7e31e62bd2c65b3ca +d839f4bad46d0a0b690d3d1b6e57891e d83a59bd7155f88bc53a51a809ebd2bc d83c6fe6599b2c8da41af314323bbc4c d843113e260a2f6e228ea8c63a266e96 @@ -49107,6 +54817,7 @@ d844a5ae46d6422c2671d1441f34b03f d845bcaad4a16ea0c3792d0ce6b780a4 d84812c95d2e616068678f5107a25c10 d848280ff0e0e2841429d015a2c92cab +d848def341a28185aae55d619204a808 d849ea5c447c0d9472e0c0eebc9901bb d84ac48bfab4a1178a0acf8873efef37 d84ad63c4f0180dfd454f30d41cfd034 @@ -49114,10 +54825,12 @@ d84b8e03a11137627ad33a5479c900a4 d84c6104af0d73abea0d2af2074453e4 d84c82f8f22705f9e13b86383e77580b d84dad0f0cf62de3f8b133dea0e8dde6 +d84dbf7cc775cf7ec85a693316aa093f d84e949be3427539ba2e6b96263a4a8d d85131c9823fa1427f0b4ed6597f9d1b d8526715e990e6d7f5a7c36f2faa6180 d8549c4c7755eee2c32c47228a6865e0 +d855c7b3706bd3af5104e81e11e9d82e d8561e367716ea39c34bca62092c5e0a d856b124f3e2e757bac9b201ddddd6ce d8575202d7d6725ffc4fdcea8aa57e4b @@ -49127,12 +54840,15 @@ d859e0189554f71328c3f16c86d07791 d85b74d702049653859b3ad71a4f2233 d85ea1282a5a89547b4ea8ce845270a2 d85fcfa0d18f5f38e722c3eb571d0fd6 +d85ff25985bd70840a7d58791810acc3 d86065c25c58af199a4a7b34a26a93bf d860a1ca74d4f6d4c3e3dd1a4b43401d d860cf8da9a1d550264918b290f48c41 d8626d3cf3c40fa64326a6b2f81a2894 +d864246edbefa44f4cca50356b410e55 d8649e07aa146d0b1438b78729c0d6c7 d8655ee6b3079f313e2f2bc0a2b85330 +d8687bcab1797f984024025a14b990ac d868991cc8fbb07864d74adf19768d69 d8699572e5eb51931f5e162c869181ac d86ab884b3f8fa4da369943b12ad9042 @@ -49160,6 +54876,7 @@ d8804ca4ba3cc37be0abea29f48ec980 d88163826f8cbe7412194391fd0e6d33 d882781a01618a2e42b870d6a5297a85 d883c875a453809cdf6c3852855f94fd +d883da0e694006f443d3dea63ca15712 d885a0a9b754fc5b4ef23760bed01144 d887b3b1be74a491b7f1649c2b871020 d8888907cda8a33942b4bf8381195e6f @@ -49179,6 +54896,7 @@ d8996d7d032274c8a57321dad7fee62a d89c3e29b5b9d351e2b01501d76f902f d89d957e81b2f55e8483ebe16b903a46 d8a0daef74eb4af31c03b15bfded1f2a +d8a18fd316647285b38c179adb66c55b d8a1995833b5d2a177a297f3d2c1efeb d8a31d7906c297a4048e9a31b29b67cc d8a3f287b9666242567c774bba4dcae3 @@ -49188,6 +54906,7 @@ d8a5c36a9d188763d8c8d4c5c70ef2a6 d8a68d322ddb593c52dcbc448a71f1f6 d8a7ac19969026b2fd33ecc3e1ea68e7 d8a7aef0148259056752c83654d4ab58 +d8a7b390ce815bb9057f57b429808e3f d8a84934503c6aab2c19bcf751e2ff96 d8a862ca6d761880846e410c0876d293 d8a8813087a3b6ef2be9f43f7d6cf688 @@ -49210,6 +54929,7 @@ d8b7e30e300a9a21fe6a861e31221f03 d8b8441ba49e36e098e7991096281dd6 d8b8f92d049ad40298763f593ce781b0 d8b98b292c8bec0a17c8a3bc9e334587 +d8bb664e9548afb60e7aa94fcd9327fe d8bbc4ae1f3a5d9eded34f1f777207ab d8bcb3f1d9731b06edc23359bc8a3079 d8bdae1c862236992b3e43034fbb8e27 @@ -49242,22 +54962,28 @@ d8da7edca4a954d4ac1ea53985878ec2 d8db515e0dd20d9773c7d048f51e162d d8dbb0dd8831d5d7bc621f729d98e48d d8dbd7b6d364da57701f3da79f1ca5c4 +d8dbfd633277b20cf7cd3ef05c91495a +d8df84c8fe79650b188e5ca420b7e0b5 d8e001949f0ef57ec6871194e3e385f1 d8e1e9febe9d6928806ac258ad6e7d18 d8e2879b919ff5b80616912f7fb5e8a7 d8e2b4a028fdbc7465dd2697655a250d d8e499ef31b4fb320ba9f97a19c8117d d8e5fe343fb97235f41a5b683f364c3e +d8e640502a725a250d44a5cae46ac7d9 d8e70d6bada5bc8fbc82bc1c381345f0 d8e79fc93d982abc40d4cca9883a6f81 d8e8d9045152ad31946e45639383f44c +d8e93d980417911d5ffa8108bcb37e31 d8e9ca8010325ae691ed0ef976659bb3 d8ea0458a00b5b90e98fb92e4677bf6b d8ec26932f87b9a5f520a21f51714b7f +d8ecb351f476bb0d7a4721c44b2fc2f6 d8ed826966935f1acc7e717ac6c52878 d8ee5fbb48a2823cefa1e0bd39d990c1 d8ef97c90f0e69ab338847c086860550 d8f06eb5d58dc1a3ca37d89ed72f7e38 +d8f104499161e94e69cfaa5a38f07eb8 d8f19b008b0c61baefee24b5d347e772 d8f1affae7af4bec5861723978cea54a d8f1fe6df4dacc99b0c19dca76893ba0 @@ -49297,6 +55023,7 @@ d91e4b5f5d5e802aeef7e9e617d8d260 d920a0d41c9a7248726927fe66f3ee5f d921395e87643bb4912e61baf5e35761 d92215e88c6accb67170dceea64c3f62 +d923aac30cc57830505f21812d1e8299 d924ecda071cf0e24f5b54565661bdbd d92539e31255a2c22343beee70dfa2ee d925deeae76ad6bac6426811acd1b242 @@ -49304,17 +55031,22 @@ d926867f31af7b2c7a3e4b61d748a8f8 d92749265f65b19a811400391ea49879 d9279be676ef58ea8b49269fda258d02 d9280e9700f5730ef6b58c3d015af5f0 +d92975a26bdf478a6fd25cc8836b4385 d929844f17ec45926734d3f33fb95684 d929dfce037b7cdc03d8985997742a9c d92be2b1f771a2780a15ffe26a43bb54 d92d9c4ac1c31b34b8396339313499be +d92f7390849879fb48c8fcc6a2c24604 d93380d0e99a93bd62b010e22d2aeccd d93595740d266d0a5bdc240cd3258ae7 +d935bb453268dcf0bc510020e9ed657e d935bf57235f7423712cc913f0115c18 d9362ebf453e4f1a9489156c1d5fbe0c d936af24676934f09507e8279c088e6d d9379fd640b2d995e27ea7feed45e393 +d9399173ef6dc465ef812ca5390421a9 d93c38efadf2865dd76591aee2ca5035 +d93d464886a33678ef6e469cedac813d d93e28c46a088c843c14d4ac4667aed5 d93e30d364ed06b54bf21990f979cabb d93e5cc48bedb1fded6ac359c8a2b900 @@ -49330,6 +55062,7 @@ d94309e719d21f2d6e5e416b0fb61d88 d9435fc391757ded4f1b04aee65a0487 d943d7a77d73e1d90594715d4ea47be3 d94457ad204976b3006701b4861db57a +d94478cc80e29d107b817e097594a481 d94738df23b43e42c5ab7885a5d20f2a d94823e31f4224ef5290cce719bd06ed d948439460f4bc0f63c1cebc36787496 @@ -49340,11 +55073,15 @@ d94989dc39c2dcba447d2d6ca5e8adfe d94d4d7ea9acf9d0f755c2978bd73110 d94eadcbac42b117f9ecba3175b2620a d94f134cb39fb0cd46c5f572298368f7 +d94f2c80a2774d055429e7d5c1a70c31 d9508cd3b90b61830aae203eee5f025e d951da28d99583fd7ceae8b3916cebed +d9524d2431fbb487f7376914d7009e16 +d9535e49c14163ba809110a57777a368 d953ae337c242c0c5ca34348cd94ed85 d953c69830e607b4a705ae540be4aaee d953cb6a8c08ce443c7b836c3808025d +d95585108315062ce923b09901fe8489 d95726ca39f29449f5e2536914652ec2 d95c46fe85e823cca12a24814a14d5f2 d95d60d8f5cf76127ffab7b95ffe661e @@ -49356,6 +55093,7 @@ d96366c11e4eabbcdb98210a3af6c44c d964cb45547df2a1a2848de66129a013 d9655e08ebfafcba6b3b59ec1ab0674d d9656a0277b64d7db51c5d1c67c58dd4 +d965992e3cbccee8ba6aa27ccff656ab d966080620868f991148d61995c845f9 d9667dc7af364868ab8c429016ce4f7b d9668ee3a6fb165d199df98f43096dab @@ -49363,6 +55101,7 @@ d966f795bad6e72a292717f429b39851 d96712e77147769ed11240ff7dbecc79 d96880aec53e9d43cb8823a42fb1b70e d968a7c1ee613a5d5af1e5ff89907cbd +d96b62e6c5942bf3e9ef252ecf5e779f d96bc8e77a4ea323bce705a94d2b07ec d96cb0c9749c333140b34d12a8b5c50d d96d66752028dc5f62be4f2a9ea6150c @@ -49370,6 +55109,7 @@ d96f99e82d6d0223cd870c87e9a9e4dd d97004d5aeb1913292a90443a647f5e6 d9702538dff23d97568b1820b45a8054 d9714ee46a3e7d6702551d717600b82e +d97245b135d73aad7f8c2a1305203f37 d9730bc47394e15a0667a8aef26bb0d0 d97488b516254827f09efc511edf1f99 d976406679c4ee3466373e0523deee4b @@ -49383,6 +55123,7 @@ d97a1d4e95c23b7f31deb2a6fa792b16 d97ac4894b30e787c144c1c2dc3e7082 d97b3cbebba2f9fbc6800530b913cf6f d97b4485a37f6065c9cd47f7faff5d82 +d97b576a31f1dcf3a0d69dc4dd49899a d97d50586fa2db407d9a5d4446467222 d97e495491fc252b8f3d1402d94360ec d97f71e7eeac655045dffea6b962831b @@ -49409,11 +55150,13 @@ d98f11212d1d5d73ef86819d22e1b5f6 d98f1fc5d2ae9cdc102a0fd9a14b4da6 d98fb5ad5aff33296651fbf24c29a6d1 d9907c8c6ae954be7badfb9d16620e3a +d990b5036e6961e4d3ca3868ac417579 d9924d5c5370c9cbf089658fe3c6bc20 d993f7c1bc5e9c2078e850bd2d9d6e57 d995254313559db572f0cea0bb8435bb d995d7500f74962bf3a89515faefd29f d99765421dd75e332ef7bb80b03843b5 +d9979384fa5b2e18e0db52b8c1bfe786 d9979c7a39ff219e20c3f0cb149d5559 d9981ff756d4022e99f0856bc95f2e22 d998337d38b91f34c5333e1cd0b60f09 @@ -49430,10 +55173,13 @@ d9a09d38f6aa5564d7a9dead278835a5 d9a34b811a334cf460c45fa8a6db6401 d9a54c25c70a1b390476f0c202e640b4 d9a559268d0e066d04dd33e902cac1c8 +d9a6de865f9c234c7d254a2c5dc9593b d9aaad6fa6510f390ac4f0ef68ec3a16 d9aebadfa3b131e4230b2704d694c1d2 d9af211718814a204caba598295ef75d +d9af8060b3c0cf793e53d978fcb9995e d9afc800afc0a0bbfe66309baf5d5127 +d9afe0d25ed5604ab45819527207ca4e d9b018be86270ed6c9b976654151d393 d9b196b6e25b9e3a37abab5768364cbd d9b200940a1bf8a8268d6c5651e04b8c @@ -49444,6 +55190,7 @@ d9b450acccb111d045ae3de0b31e2211 d9b4be9d0611bed8755a01a6b8b32e4d d9b6e43450c496083b56cdcbdea5d9d1 d9b8a3e8fc4434f7d65cd4e8efee55b4 +d9b9dc8ca527264d3fb134afc8a13802 d9ba3ee4f2e37dd2fc7551315b960dfb d9bac3ce894941d7ce1525973dd46895 d9bb775675837f2306c2104511c22307 @@ -49465,18 +55212,23 @@ d9cda644bd1e019c078ddb8dcbf5cecd d9cecb42abf3078ed89265f6a8289098 d9ced19a4d6d0c989b29ec5d1a804e15 d9cfd33e23d71f31551a04b0a0d651f5 +d9d159dedc4f123682a3fdf0bae695f7 d9d42001147ccffe6f434417ecb3e8da d9d448e6b2cf3ce2079e714ab01e03fb d9d4734371a8ce1b6ce4d45138d6128f d9d4ba94bc910132eef7bab88a99feb1 +d9d598a677bd5b54fce87e709d0ad738 d9d5ff6658f3e86a16f0681e5a8bc39e d9d6239c5f328a765f12924f960190b7 +d9d675524a5b76f96372ae4e4ab6570e d9d6b41ae1381cb9b0f0c6171c20ca09 +d9d937532370268816b12d88ee504b18 d9da1bd752fd1ca3f1f94dc4da8c1505 d9dbbefce8d3cc6fb856f35b67b90ea4 d9ddb7bb15203df335026a8a87af77fc d9e0413b487a7cb856e74e7abbc24256 d9e2212594d0b7bf034a406449d317be +d9e233938e564dec85eb073c1f9b926b d9e26cc2a031ecdd5acad381391b6b71 d9e32c45846b259c8ef0a24a5d3a6056 d9e3414533a241f27a780832ba1436d7 @@ -49484,13 +55236,17 @@ d9e4bd6fe997ed4ac1b7710d6f492c8e d9e7b6de4a0eb4cf7338306bd1f642c8 d9e89afb807e0773289c32c4c0c5c597 d9eb1540ab7301cc2d953d33830058ea +d9ec6becab14ffdced3ca51bc54a4226 +d9eccdb53ca7cc94f003cbac6a3ea5a6 d9ed3f2b3d43803f2b7fa56b88f9c6f1 d9ee57d304f818fa194765bfac712871 +d9f027055b4583ddb153760a97643fef d9f14231787b170fad92bdf5ab2b5195 d9f24ec963ec236c263a54b33f798f59 d9f448a4a538efc0c15127b357f22933 d9f648b08499bded3711ec7752637f68 d9f7047f8219f08414d75acd77d48e98 +d9f8064cb0ae2c19f94d07836f71f10c d9f843e103b1400847808a353898629b d9fc0908fd49941228cb21820252e3ed d9fc95a97681fac94cee942f66ece2aa @@ -49507,6 +55263,7 @@ da043b833462fa9633afba881db0613b da050487fb96b7a0133bf8428ac697e0 da05dc3f8ca2fe19b6c22a86380f678b da061de7ae8718bf8ed7ca766fd5aa1e +da08d7ce947ea4344dfa82b1b9bda3a0 da097f8361182d235afa8c5d3f23f71c da09a1934e249d7e4d1432b6665ccea1 da0adacc5eab3ec4ced0dbfa9e5acfa4 @@ -49516,9 +55273,12 @@ da0bbc9da1234c616c4f0338fb02f777 da0d1f8e4e459eb76a2f3b8de0b4c9c8 da0dc9b136b5e2450f5a3c71aee55f96 da0e463b70369bcfd6d57a623b976bd5 +da0e86bdf969a856049eea3b11044806 +da1083c952bec17b8a6013941f4a2e44 da10c6626f007db1f5853a176f5f89bb da113e0c327b20a58c60cbd3d3af6d69 da116a76dd54e8eb0bd559f0aa79085c +da1224d69e41ceeaf5567d973c7bf8c4 da122af56c2e5b2f65d0db3f9737fbd2 da12faede1e1769ca4edf3d8f4d85f9c da140ecb43d9e1b6a4b0705817cf8b4f @@ -49533,6 +55293,7 @@ da1c9446477ad607e9431bd3ba942120 da1d11749e244b89fb36322029f99c45 da1d65d090dfdde1dab98ceb2d16b707 da1f50ec74311b50cc90241c0a89d6cc +da1f9d146e2fbe11d6f9af87ce085984 da20ae228d000b845e1c32818a57bed0 da20fedb97745ddb9e09d8737fa6c42c da21a8ad1b712a3c5849f412ede5c2fd @@ -49540,13 +55301,17 @@ da21f6b299b8a0cfb13bc58ca7c9a944 da21fcfb64a579d86c5e0c6065f6add0 da231c6253109f5286523c5b7ff5ddcd da237d669c20e6af209b36825615301e +da24829c44e1185766aa66d6ea5adc94 da250b4be9573de5b0ac65b4e57c2a76 +da252d4b9f2f0079b579fb1a701eeeff da253af147418fe6f9713077927dba08 da25a6b4e9d0826db2ccc5da321e972b da25e4d8c742c40a86f176a4c4e104bc da27b4aa7fb1393e23e924bbda382c54 da29147628c0f5d5d967180ac61fd78d da291b0275ca12f62d9d4d982e90a576 +da2a6fcb4c0ba5ed04dd595a97a803cb +da2adaafa907ca25d7d72c278eef0a43 da2b1330f25441d3da291f09e573b220 da2bb2af57d6a1d9eb7339e675b5fcfa da2cf7e678739110ee74f88e9e6f4d97 @@ -49554,6 +55319,7 @@ da2d1cbe5ef21751dc660a7e1d6f3248 da2d27fc8afc199616e31643e5a7efdd da2d7c65d76ee60e483d50395275de10 da2e54f1dc19beab5c2b8f5b75abd671 +da2ff255bd892eefa0cb50d8e868b52c da30325599bfebbf3c63435ba87110fc da320863ddfb53f82904f8e823599b99 da3347e045b932443adce6a3712a654d @@ -49569,10 +55335,12 @@ da394e4d21f565ba02c876dbc55f9a6b da3a6b47478fcf4273baca7f46fbd938 da3b0ef9b667c0b8b3c1a7b9294a93f7 da3c0d8e138eb0d03ba0813c30a83ccd +da3c3959b8f4dc354fdd2540b086a464 da3f42ed0760b7ee3422444df60bd6e3 da3f588cf09ec7cdb294b024b8ac8dc1 da40d474613db5bdc12a8e90979155c8 da42a94ed304bbd1c7d1720a9124d0f4 +da439229128325750fa1e67da4ef889d da43f4036676663c7c7bae22ef6fc6a9 da440ccd442dc7f4c35b1ad6a1bf781a da44141d5c8e4080cd1562de1927f9f7 @@ -49611,8 +55379,10 @@ da5b2591674c8f4289f8e1fd98e7d07f da5f7c2671accb13980fbed1bd1f844e da6042e0e2a0d8b525cc23e18e94d388 da609e34c8b8a613321b8d51c5203a94 +da60cb33f203486300deabf6d541f588 da62b13bfc05a76fdd987b3ab62b5873 da636cf782872f68007745d463e290e3 +da64353759cec0a4c8717222bb4434b6 da65596e663dfbb244373f0b0c3a3f5a da659a5b63e119351854180407f42c70 da65f00d8493065133b41e7b7bac04ae @@ -49626,6 +55396,7 @@ da6b84ee797e4ca70c674c5f24369e6c da6bcb0c22482f7bfeb67c92a5c1291f da6bcfb2bc549ba966fdd25a5c5edf50 da6c9b0404cd62b57e6924498eca7c1e +da6d50dd2f70e9a071b69778f6222034 da6f633f58113fd2bb45d59f84190394 da6f79343e506c7371f78bb1281fa5b5 da700baf61780ba076e99909f884c57a @@ -49635,17 +55406,22 @@ da741b879fbd3fd7a9f6361b0d728c6a da75d3ec78934ef4cd88d9e8b7d5932f da7644dd468999e0dde668252c0a20fb da76c11413a940c0eccb4800d1d2119b +da775f6a8a85dc837e0829a4fe8b1c1c da791a5a94e2db94ef816e80cca087d0 da79f5fbccbb8092f189761c7dd35f6c +da7aadd9de6ddd0624cf2675a47e2c61 da7ac7ffb3dac52721e5ea6941672b2e +da7d53221284f3676e24b6dc611303f6 da7e4ad8e63621f81fe757885c67c9ba da7f2c17821f42de29f8fe6d3fa5c8e7 da80584cca548d4076f87922ac98fb97 +da82be11774561b3955a0f59de669c98 da855fb318d92b8c51306391716be430 da86f70e321c6944857e9a065ffb4bfe da8932c182cf2c47d6ea8bebfae15c52 da8a0e3215f61c34eb4bd200a679e06e da8e2570f8008eb942e85e240af92a85 +da8e83c702754d5a6cb6efa03e72c963 da908fe89d2971ac543856c33578ad9f da932e71170f389b0b31627d258d9b22 da934add90d5c5580b1eac0e1ae5f6ec @@ -49653,6 +55429,7 @@ da93abcaece7512c44ec28159d2a3be7 da94f39ac31f5b6caa73a8448fcfa08b da990de2626a7a127d01f3d44653c91e da997b22c6c38da028e6c8f1db668fd1 +da9a5f829e3ab6455bb3d26e919f1a82 da9cb4d71deab10f18cbf9cc209b95db da9e5e0f4ef54351278aac4552cadbf0 da9f21dac400e7588543f9fd9ab70ed7 @@ -49663,13 +55440,17 @@ daa23d4afb62816b863e8e363586d50b daa2c971bbf671a9606b68dca84000e9 daa3e1ae6e7b1a96cc3b080937fcf87c daa4aaa5880e2e8057fb576e9faccf6a +daa55279643497cc7deabb94a3afb89c daa7f50d143560803820234d5ce4be7a +daa7f595fd4cf5bef1e9f0c7dc6e8b78 daa8fc3f971549f06b6077e9f2fd2ab2 daa93d28521254eea7fccc020bb2ae72 daa9927e53b42d8193fdb0e3c7402734 daa9ac5666843d135dd289911599dfa8 +daaa500f83cbab9bc6784905a58f51bd daab4e3f8a19845cf621a57f681bdf47 daab6bd6afc71979a4b135f53a368bc5 +daabf8cf699c9c54920d5ea4895a7cfa daac421020a08c69f02e6b75732d96e3 daaf575efa7add10c8d01865642232a7 daafe14411b1d538fef3e5ef7a3782dd @@ -49682,6 +55463,7 @@ dabaa3d5efb64898f6be2eb3519daff8 dabad457f971451f94af3a01b5dc9df6 dabb31568c6b6620b45724e61362ddaa dabebd4667337171e68ccea46047c427 +dabf402e6d333a3e85ba2e65d5452e26 dabfe2d3c6c750730321c0c027337325 dac28ad2efafef9d81248a046986ccef dac2e148c0c0b58d00ff607b1662918d @@ -49691,6 +55473,7 @@ dac682074e151ca035d249b75510b7ca dac8396b64655593451f33c37e041442 daca9a57d70cc3af4abe00bfd2cc4a6f dacaa820f7f3b674eddcbc8e662499a3 +dacb8531982521213fee2f3269cf9414 dacc7ebfb774e5a620b66ec1205bb073 daceec2e69a3943679ecb4cc3e66308a dad0463f8adfda0667879cce98d5296e @@ -49699,13 +55482,16 @@ dad5e442f39e4545277188c272856f3a dad80bc112e9560d9f6b68a2ccd741f6 dad992b172e7dca39c9f34c54adcf593 dad99b3f96802b3a93fd9752f67f0941 +dadb87841db2ac9eb631a1551761aa3c dadbf413f1af0d2e4dbc4e6dc5b25e1f dadbf71da5b8bc6e7a55e4da08b42b6b +dadc6db1ec33b2f0b456a88a2ff56aa4 dade40cac8b541e58189d8137d5f38cf dade6245909bb43d8d7e89b59c8095f2 dade836bd917c6afc2adadded49bbe63 dade936fc241e8a645d52a91e76e7136 dadea8506ceb1792fa4e2f6f3c1cf302 +dae15fa3f85ddc7dd49d23fa568d911f dae17b08f05610f92c5fe08a2eeac75a dae2251197e2f453f2173f7e5077968e dae4bb5ebdf2a549d8e43d40dbdd78fd @@ -49724,8 +55510,10 @@ daf2e691c217155e20721dd70de366aa daf513f5e9a901c83b6618e475cd36ca daf567e2386547907fea3f7e240eb5f0 daf6a428b0bd511c94e6bc408e2335ad +daf7b6dbb4b230e78ac4614128d041d0 daf7d11c6e8dede9cbc0bf46446369d3 dafa0ff6faa41a3934fef39853b09b5a +dafa84ab637e108b2474a3eb3ae4fde3 dafa97df7b0b9adafc399fc28f592de2 dafad16a345c8ac4b4c2edd065919557 dafcfbec328de73f9fc709198fcd367a @@ -49735,6 +55523,8 @@ dafdcd0b556f984f9eb46eb458d3ab7c dafe812b6207bbfa2882aab6a38d2ff5 db004e0f9c011f0bd28d6b4fac0235f8 db00e504b26834e7355c01a2ef93aff5 +db02b735dbc74cd0f1c3b052e07b337d +db036c0fede4b1b5619476e30448a639 db039895412ef4ac897ba7464499f4bd db03fbbc7c9895061b0609d6b940de03 db04a994038bbe15fb2083e002b5b4b2 @@ -49749,6 +55539,7 @@ db0c693d42e648a4f914ec30e59f0701 db0c9fd41efbfd05e96d7167169a56f5 db0d10f41d26b1bace7c7c1bc0ef1645 db0e76ec1a7aba474c41c7093489c7ac +db0f76fb91e2ba2dd232c1e11871276a db0fe35775bfb4c90aa7c8fa1fa00773 db10ead8517ebe62e8428c201de0aa9c db11d36f80e623cface30b2e2cb4582e @@ -49763,8 +55554,10 @@ db16f63e8f8a0f1d9d363966aa17c5bb db1cffb66e27ca2a5548bb4057561d1b db1e81a9ef39ebfb638f61cb27702140 db1ee535fc085b459419ba6e28f538fe +db20c2640b1be4c9f82c29b94a81ccec db219ce5ea8c50419b8d78a6df9c41f8 db2271666a1fa4ef58e4e25ccea981c7 +db24661adfd70449ae39532459c76991 db25e7de904ca5b74e262318a1301775 db2798f4eaad6464ab337737f06bdad8 db287bd801d1355f7ba058aba7437d0c @@ -49786,15 +55579,20 @@ db34f0d892fd468c6e218c9c064bb4f3 db36eb30437f8346ac31aa03b7961b89 db37f43b809a74660d815c7b0ce48db3 db381b4414f950ad7bad1114bbeb177c +db3a03abd4fc4d44e638788b94f5cf09 db3a55dc99e399162af79196443ba141 +db3ac121e2991ee0642c71c94279a88a db3c12df99c8c55bd324bd034079cbee db3ce64e552c8748f29fd684acd61945 db3dc5f1c2009bb8327c543126e935e3 db3de177ce9d4f7e454925723fb8494b +db3fa347012066056a82d02016bad5b0 db3fec346bbe722c3f312d6b2f19e2ba db402d2185f55e32b9f883696ec0ea51 +db4050962b0a8bec9bbd695d5a3f2fb7 db428afde915368bc509f1ba71b33c53 db4607e80c6bd6d00a3d97d5d3a1afaa +db47c58f33858c43b1700685dc182096 db4b1b12ef30b17cd8112218335fada3 db4ba3571d116585edd908952b117c3c db4bc4ca97e8045350a1fc2000ec59f0 @@ -49818,6 +55616,7 @@ db574f3a2ab3585bdb70a7ec92ceed11 db5766f3fe382ee6acaf1d6b0d1415fe db5834d2fa59ca43614d8ba9a681b437 db58fec4cc6d4b84c5dafb9b01e0d6ea +db5930c27c9511b7d4345e9a29627012 db59f90bc62f99f1a4e822f8dec79876 db59fb6956040221a08c775aeb56b7fb db5e63928a133666181d5e00b3f39d19 @@ -49827,6 +55626,7 @@ db5f12dce567bde977ad4b2d2bcfab46 db6157cef182ce33ac3e56c235879474 db6193682c1b6b46adbc99fd91f17f14 db62cc3ee54c23b9997a8344c8def80f +db62f2c1110d354b344a0f2f12127343 db6342fc810f7f01bd7e1753033f045d db6375d12856777c3adc6bafa792ae48 db6397477b5fa63a3308edf85542dad2 @@ -49871,16 +55671,23 @@ db82ef2f6b0c96b5ddbb7efac450938b db88fa27797cf8046f0edc3d44fbb5cd db89708044936ca9261fd68740951ae6 db8aae83465031ab9f6a39a9c53f8f2c +db8ad8bfeefd84e9f5264b56dc7f70d1 db8c70426d9ee8fcaa777dcfb8700124 db8d1f5d185dfceb5cd521985507e70f db90b97c347b4644217c14de4df8736d +db90ecffd1857ebddcd81006538b4a80 +db91438b4e0ee1b91e69454bce5c2e35 db92d9019360755dfc2ec938afaac854 db946b9a354f86789bddc0206eb71b09 db9502ac4ac8ec8c29ecb6cad31e436b db95924facd47409736d3f6d7754b511 +db9598e6be4f20a74b6478a0ec2a4ed4 db96702c32e4cdd7c841172a45a1ce6e +db97a0fb4e4db26e49502a9de7283475 +db97f594343ec96de4b49aeaa129c9c0 db983a062f0a9fb6e024f889cd083c91 db986464f811c2d72855035cf0562074 +db98ced1ba50d15808334697a2e36276 db99187d54510cd5a2e0544e998cf7ff db992b9a991b786bbe2e696dbc03069d db99a08ab5f7bda923e6b74095b1196c @@ -49891,6 +55698,7 @@ dba06e480bdf156941f7b008f60af61f dba129f9d2c302686ef3e3f4e721e9e5 dba20bd87e651a3a582dff91258ee15f dba3352a3815c45dd220d4e3d5fc9bd6 +dba34d003cb1a7a11593a3584bfd94fe dba45d3c40c3ae92b9936c4df666582d dba4b314619a8edc321bf6cb7a5013f7 dba4ec19510afae3ea00721eff5db4e9 @@ -49905,6 +55713,7 @@ dbac449e6de7d00bfc082c19e4647cd2 dbada24afb7137a081a19a2bca1b1cea dbadfd09f1a5e96ee7e12f563710e9f1 dbb120349d98d873bece8b100f702e61 +dbb1719b446757bcf70e489b146c1c0d dbb3149e8d86697a0cdfde7d8280b75a dbb42949732d41c5876c53a265b3b59f dbb55b662faf07b01a533b27305ff452 @@ -49920,6 +55729,7 @@ dbbd343ddb8fdaf7fe92d1d05c1104a1 dbbe0e7e5479e11e4cba6f4fb3c9e68c dbbf30bff370151b7718e6fb75cae173 dbc785e5ea63f018a5ecced3d8e62e0e +dbc78639668eea75395a9961a243714c dbc7e9628e10bd260d282cc82a1a1cf3 dbc8afec7754fbe26dadb7c67a257736 dbca38177a602022b429b67b3df0cf5e @@ -49932,6 +55742,7 @@ dbcff5e344c48be01711c9ef89c57de1 dbd16db97dd6c159bb996fbac08e7231 dbd44e5a0aff7fb79eee43007b22b609 dbd485329695282d7a773d7fdb3608e0 +dbd7216d2311348f0339221494403b42 dbd9325a368223b91a3173eb764f306a dbdaa10d2bfad8ed99f8dcd25593eadf dbdba0e8c5f31b81f2f58b1d381669e0 @@ -49946,6 +55757,7 @@ dbe6ebffc840b69e0421bdb5cb54e6fe dbe804252883314a675242c283629198 dbea32ec00e1da591f219c8157ac57bd dbed3701dadbbaf0c9dd23f08cdb44c2 +dbee137c98c65a8e8cfc175ca274f894 dbef19cb83c8f2ffc66a80eba6d998df dbf08bb9cc3c92bc32b3f93a52294060 dbf11da88fdf22c99a76dd99e825b309 @@ -49979,6 +55791,7 @@ dc11dd9705fd74263b05e1a343c58d8e dc12ab8d27e5bca3635cadbdd23bcc16 dc12cc64f00fed570edb6b215797a201 dc1503500d1029e34a9009a2d1a1b085 +dc151d22cfefd65aa2e0292630bb0abc dc15554407448b1b0567c38e966fcec9 dc1609517ab5c25d2d74e36dadcea8f2 dc16392b4dda521e8165c962f6c6540c @@ -49989,6 +55802,9 @@ dc1d1c637f7ae076741d8a1d121d44dd dc1fd54ee2cb7e1d321928e92247ea6c dc20cc3591a6bd1e1718f986c4bf0e21 dc20ea5ff120bbbef60ea0b8651be8f9 +dc224191f16a430d1d777c44edac848b +dc22911dfb734dae6f7e5d25a111c039 +dc22d8e487983b2f772282ac167e02ed dc22ee056453c4c39ed91d6d6d8ceb02 dc2340e4a1430c0148c42ffaab5707e9 dc23e9f6047621464d28b0af18994536 @@ -49997,11 +55813,16 @@ dc2754d792a4bc59356f0dfbb1f8bd27 dc276c9ea68f8aa4773398e36a56ce23 dc288996c8011b915a97d0fc0ba65c44 dc28d782c0f24f24fbee0791d54285a7 +dc297c17dc8b0ca130186eb1aaca71ea +dc2a08e1594142827a07d92151392f5d +dc2a3a481c9972d744ae815f0c60cb4f dc2c49eab18703a412752c2692a1e0b6 dc307d9b6a60845c4db1b0aec2b3617f +dc32497881752c2b73e6a6684c41b8c2 dc33d371fb6e7ec1da51a3d75d877a40 dc349f80b05a430e45a01cce4b42d9ac dc36d0651d2cc30bba8e56b0d485c933 +dc38c807168769b72ae2d6264788b9a4 dc3930f352f65e21b596a2b6d591edb7 dc3ac6131a016cfad63229dae3d61b6f dc3b543c30e5c0f89591ddad9a7c81ee @@ -50034,17 +55855,21 @@ dc5dfe288f0cf6470ae2bb61e0b27aef dc5f7ca0d1549650633e4dc599ce022b dc6078dfe90668def4d5562476c536f2 dc616633d6041e32363dc57d6c8a156f +dc619f7e32399eaf2299bfe70e5f0e39 dc64230e626f160c7613c07cb6d4004b dc65112bf863f5ea0e1cbd71877e8787 +dc685ef0f1a7eb1a55b0423191c442bc dc68e3dab90214829a988bc9eed55e1d dc68e9a57a7a0c61f76bcdad245348df dc69ae6fa0c55d5d34cd1f1c4e7f0fb9 +dc69c1476fd373664423978fd4c936c4 dc6ae39a553d69a19983616c2cd10806 dc6b02d243d693f0686dab8136e25a65 dc6bb5d6c818f6f7c008fc924a018c0a dc6c14ff5abe7d7d5fbedce74494b463 dc6c1df240807eead98b60074a86a95d dc71ebcdc321a4471103977c22f4e710 +dc71efe0aaa21ab04a6eca3348d082c9 dc74d15a968c3b49846e46edd05bce37 dc753bf2d2b5b59cdf6e92fad590baa4 dc75ac2da40a977d261ea0095d9a7c18 @@ -50059,23 +55884,30 @@ dc80f9a9d36e46197c6b58b1b5afb01e dc819641bc81fff10fc16ec0717e30a0 dc82cccc6b6a96d63f221279543096dd dc8474000d790684deea94550b67b5a9 +dc861a0fb410d956f1887a9ce32557bc dc863547722a762ccfd6eaf29ea45a4b dc87d7057044fae571c369d806693a06 +dc88917df47c70ef451b92bb65889e9a dc8a759a4b6627b87067c91f5bc2e176 dc8b295a761e48ce0db92853efb89f62 dc8b785c6fa6a18e9fd7aa5df5e1707d dc8d785ae8b010c6b97eaca4e83c74d5 dc8dd782cc06b269bd30b3cf43774e43 +dc8df8300e803fe198d788f83df04122 dc8e04b7733bb653cc9bbfbdc3e13c09 dc8e1660262b2e9ad420bce36cc17759 +dc90f2c30eb9f048544abdf1d7edeb37 +dc92677b37cb02300a8074ad113fa2e4 dc92742f5a003ef6f6fe05187408a0be dc94053f1853d6121d11103456c30ddc dc94e2aed50b894979e6c9f72b7da8f3 dc9517932b97e229bedf4436236c14d3 +dc951a7ae3626a5178b2912b4f9d32f8 dc95b4d778e2aafe89916f83e4d72272 dc95cf3f022d312afd438f16f7e462ec dc9632b0cc88cf7d9d21033e97bd79e6 dc96e909d656229162e1afcf8685f263 +dc96feb66790750ff91a93148f97b9d5 dc97777871dcd50749c0df14a22251b1 dc99cde0ffff78962a57504651b49c62 dc9a56abf7e48062e6625713ef0e8e0f @@ -50088,6 +55920,7 @@ dca0fc8fa5ddcb8de3b3bdd350be798f dca4f8c3b93243cfe860aa3d8d58c68d dca68c56be84788ab1c2a1d2baf3685e dca6d845abd21aa85405ff9a569a9e61 +dca7183b4100f2a7e537aaae93814a89 dca79db9c065671e48ce42604a0fd7ac dca8e4173257f70b7204e1eaf42851ce dcaa02ea70f4c59062832daea13f6f72 @@ -50109,11 +55942,15 @@ dcb4b6bf1c5be26aba8455d9ef9bdaa0 dcb620a490be49e0416267ff80d70ae8 dcb6a636a79a2a7bb6a52e06447879d0 dcb89678bc5ee30d5a8675d09700f138 +dcb955e18729466ffbbcb76f69b53eb9 +dcbb72f27a84990b61cdcee8f606ff95 dcbb8d169c11a4c78f63da6995bf4f98 +dcbb9ce62e6378f3c920c9310dc63f96 dcbbb1f29a7e7ec31832621cf7fb4b62 dcbbe3ff311454d980657e47cd78c188 dcbd91cafd8188819dfe6f593683ce2e dcbd9b9f8fb42e2cd2853a9ee0bcee00 +dcbdd5ad0751931f636b0910ac966032 dcbe52fb43e539fc644f6ebdea0120a4 dcbf3b4497516ebbda068124980faefb dcc04472d2b3bf1bdfdd184977b3519f @@ -50121,10 +55958,13 @@ dcc1996721e40fefd67b57684f96b751 dcc1be292f4876eb4f98a8ca662685c7 dcc48a0401383595250f733a3c5249d7 dcc4a46b0a4766db5043c14be5a5fe14 +dcc833ae252718239a8b06b840d748a4 dcc8ae6cb3f7cb18d486179b1609780c +dcc9ee23d6dea0fa8c51c4fb28c7c704 dcc9f65ce2678598813725f0c8211b1b dcca532fa8fe9efdc91d6e010461b07e dccd18fd398fc2577be606a582291316 +dcce393387a5cf8ee7b49c5b8e9a2856 dcce839dae90bae619521bf682a7eb5c dccf52242ed58cf5a785f05eac036c2d dccfb2a3806e9930596a7ab01aaa0e60 @@ -50132,8 +55972,10 @@ dcd14f8da0565bcd61ea6dbefc03849d dcd2a1c06ac298b09dbf0be34f88fe5e dcd2d5640c9ecfcd8c5182ccd55e97c8 dcd370b7b603ca88bd2b9d74de13181f +dcd3adde96507f5f31c2edd06ceaa4fb dcd3de39f563d065bb4e92804aacdd3d dcd45a3c3b357831dd57ae96106a710c +dcd4608f626cded4c56c00e698de7269 dcd5af718fcae29cec6943f4d63364a0 dcd804ed4e43551ae9695b5be3f22f05 dcd8559edbbd6331cc07f900d81824f2 @@ -50159,6 +56001,7 @@ dce9ae9f3c19f618e7ad5f00cdaa2a45 dcea51da3f6397f4ace7c06f27eaa95c dceaec176112fde09502f50f0929be51 dcee7f36674cfe9e01510b6c51b578ae +dcf0c80b4f21b31b2c23cde401fe9410 dcf140c27a9f07d565742f680572235c dcf1ee7e5d66e1824bfcf6d1c50aebc8 dcf2e9c3088d5e9de3605189cf70537f @@ -50167,6 +56010,9 @@ dcf4dbce01e157fb5b48955a11e38da7 dcf58805d7f00d650ed3826d47896836 dcf5c1ea3dee9f24a9c3706a12350acf dcf6bf049bec5ed7820d1e4c2c209790 +dcf716fbf77d6f6c72cb0adb8c2bbed9 +dcf9782a0e57b4719efd0c82d97c983a +dcf9e2e080883a57e288f7b635798e72 dcfa2179f9d797fd6191c9c46deb8222 dcfaa0dcbad64eb51b2ebea5a2c3d595 dcfcf63a407686db00d59a883a074cd9 @@ -50188,6 +56034,7 @@ dd0d7833cbcdcd4bb05ef4b177841a50 dd0e0bf4ccec40665ccf3bd76b97d348 dd106186fd7f845b7b9fd2b9a28f0237 dd123e8193226b009e42a7efc18b78b8 +dd127e2268c14551545f7c6bdd48b5b4 dd12dbf039001b954ea91f22e15a30fb dd12e63b581f21c9eb33d2e8351d62d3 dd12ed47af1b5044ac1301db07787bb9 @@ -50197,6 +56044,7 @@ dd1651a7169e50153d9b7af4bf93a4d7 dd171b5a25dd11a26203c2b8d5a64a27 dd194c44473591e523a1831484375291 dd1a02bc7068eb26a901aa5b628e18b2 +dd1b48beed97a1db752b5686f3948553 dd1c16709fff3ab614f39aabff56f425 dd1ca7d5ae8fc4f860aad46cbcc659e1 dd1caaee5da4786c367656d6d93e0037 @@ -50204,17 +56052,22 @@ dd1cde010bfa2a46a2f19abfff0d0d78 dd1d61eb8acf373e14eb7ce7114b04ea dd1dbfb858f5fa6943047f353bd718ad dd1f19dbb0e728c01e937918e4e4474f +dd20f506389ef656d38d57a1b1160282 dd212f4587bc79df5ea0b61bf2b2df0f dd21a8e3f5514c885adb9f162a1212d7 dd229420bb828c6a0ea30ec2063b89bd dd236d8963e406f1e5e02aa15fe8e40b +dd24b5c69b5678f700b1800ae753a52a +dd256f75d191f9623595d277c0e16b00 dd25ebec114d06644e2fd5e3fc98298f dd2610f8269eba0f206c3ba69f7b2fb8 dd274a61d2bc0bfa0e95d8e4bf2be34a dd274bbfb976367eaaf454fe1e5b73ff dd2799598dc410ff1dd05d99a80faf25 +dd282431cbbf790ed6f6c554b3f7e650 dd29c41cdcd4af9aed6113021c6df120 dd29cd1b9b565d835321ebf0fea28c4b +dd2af7f4d6a3ff4fbf1bf593c881f52d dd2d75459c18053c8f333419b4f34885 dd2dbe453c9a88426f96f2177c5b981e dd2e9ac5ed4f88c2f8564eaaa0dfb9f0 @@ -50241,6 +56094,7 @@ dd455660d3181a0994c4157e1fd3bc6c dd45f25f8db49f5b794a11a344927cd9 dd466d8b4e2385083bc6fedfb3b5a7ea dd478078e9fd072080ab9d667c33c657 +dd4840679e983ab45d71f5ebf9ca61d6 dd489f7276dc03399a960a24125bebd0 dd495ca3e2f34e577044ee179210e729 dd4989664be488445564dd6daf18f2c5 @@ -50252,6 +56106,7 @@ dd50b879b89bfc3ed1faa85177063bfe dd5149cd4cc71a67fa2f7b4a45ce26b8 dd51e2cbb8134cd5481700abc6ef7d66 dd5211f31026f09fd414138c81e16dbd +dd52b54f610bd9289c671f332ed3557e dd532f7fe2d2ff8c83468b751c2bc030 dd546e1cc779be3a3b4b1b1b226a1570 dd54986ba4e4bf911ca5e680dbe86913 @@ -50271,8 +56126,10 @@ dd600653cff2edbe40943b0f69161e1b dd63ad35ab38da7ad093a0427942989e dd653a8bd5279bddffc31feb3923d4eb dd65eb0b8bba410b1007cd1417b895e3 +dd677b6b18070dc3480347b88aaaad38 dd67985d109f15e3abc4ca337fdd74e0 dd6c3303ffbf1d4bd88e9855419cb1cf +dd6f816fb5e0a9ab8ce4123cc285aa3c dd706915ba00ff33f429b047beb24284 dd71bed6e6a4e34b3baccaf6e8796757 dd73a74d651b9a3979a7f02e439f703b @@ -50281,6 +56138,8 @@ dd756d67a4c6313967cd7b35295e7252 dd769711ad709a294cc034cd1bf23f91 dd76ffa285ec58b041bf59bf3e51d940 dd7b2aed54d89550dc12bd75a1141083 +dd7d22522c07c112d4b2852eea497e92 +dd7d70966a07c6209a32d9a6daa4e9cf dd7e633283b29bd5a63d472cc54168cb dd7ebea78c8296f89ac10f6654be437e dd7feacb0d75320804ae7e2c9d038197 @@ -50297,6 +56156,7 @@ dd877992449f3cc1ccedf533dc37be10 dd890d524acd8cae0251d71f6a5a411e dd89929065b4524a851bd7750c77f893 dd8b7518e4f682d6956fa74dd88fcb78 +dd8b7bbf5b4feac1f9d0e5368db923ee dd8ba350f4c14a14bc12f45c7af9d0c8 dd8d4c74d5a1c5f66bf2d94c5c2ac3ac dd8de05b878089c948de5aef5afe3d61 @@ -50306,8 +56166,10 @@ dd8f45b9e234222b28644cd8abc92c15 dd923ed85dc0d940778a489020ee0acf dd9299203e0cd8a86f508055cc702d1d dd93b4f911f45ec22cf1866245245b3a +dd959e16877d5b42c0cdb05933221426 dd95c35aad6fc28168aab99369fa1b24 dd9649701b91f35422a7049708c548c8 +dd98bbe64ebc6045594c21a9aa4d44a8 dd98cacd018c81ab5691461f4f70ed24 dd98ff1c239ff92c907388051219896f dd9b7f1a65ee495486e8398506bf0c3f @@ -50326,15 +56188,20 @@ dda9e01bbb0d9098d6d83a417fb26425 ddaa1db63e4dc2e59f55b4e12ac8775a ddaa2dd6625ff644c6b4172d4fa1f8ba ddac06c450a6bf7afaf6ae0dc69ef1c0 +ddacf710bdfb15becc5a885a1ede860d ddae9431eee3e00e648b159bca5d49cf ddaf31813bff6083b8c652870c94847c ddaf51c94bcf28921f9a6815b94f92f6 ddb0d9360922c16b52eeb42bf067f19b ddb1a23bc42b0d6341a50aaed64a382f +ddb1b581807836d5f2f1efad62d1bc10 ddb2c0657af7ce6099616cdc1770acbf ddb41bcec6fa763e94b3c9c92a7b3e7f ddb4b90edeb727e102375f108da3a423 +ddb6b454aba289268a68663338c1b7b8 ddb6be63c66aad580a5e5684458099e8 +ddb7c6d06ea3ee2bea83755763a1cbf8 +ddb7e5b5e9e3b25411bb986de88c5abf ddb8810e904b62da7f794c5e82f30de7 ddb9429cd9236958ba8f7a1495798fcc ddba33398c0d268f6dd48a31081e4df0 @@ -50346,11 +56213,13 @@ ddbf48516bd4abc24b3cdb057928e02b ddc17ae9986d59192261c9a238fdb2e9 ddc1ba315f29a1a999a36f6c4ae562d7 ddc2c67dccb91abd7cf69c8ca94df071 +ddc2dde858a4b0fb5c5ee1d8141d41ba ddc36834e9b3e32ef60a64cf2d553e5f ddc4327949a90e273e310d18201e7980 ddc657b3ae687c276e6102ad4f0e1708 ddc771ece5fca7aedb867dced2ab487e ddc8c5f34c61dfed385e4100bfe489ca +ddc8fb7277eadaba47e341024ee2323b ddc9d540a8a7e999855d00b256ddb412 ddca2e43d05dfd5034872028cd693cdf ddcab7f17ece5e9481bbbeb7d54d827c @@ -50372,6 +56241,7 @@ dddb8136bf7e35208bed756a2d8bb90f dddbcb0a2f862d105b512d6c540cdad8 ddde38b40a0a869b1684b89f9a0a5c41 ddde756662cd7d1d24a6ca6828abf07f +dddeabc98acffa8ff10b82267f400cbe dddeb3407477d4e52f60e6daefc7cd2c dddf0a2086151c9c013a9686bc3de760 dde00ce2f8c2c7b329ee687f551c3c7b @@ -50406,6 +56276,8 @@ de07e4c37552b887c354b58df375a4ca de0840e7e3d0be4919725ba39c4441b1 de087678f68db38ef8eef1e1f0b7b05c de090dd6f753766a912a583b196dd5e8 +de0933e1b59047c909218dbc594b862c +de0a0ac822a7b34e783420eff8334e56 de0c7c506fb166f0762d55fe408d1d82 de0eb817ac24d1f9590a7db6c2706031 de0f0d23fb31fdfdf70fc63a46baf3e2 @@ -50422,7 +56294,9 @@ de13d8b04fb582dee27f5c5e58676c90 de142a08f3c0a61a3efbde8933fdb129 de14f758d00611184782c80a39cf971d de16d7e281ef98416a14942bfc0b92ee +de19819ea7dc2134886b3b5b845648f5 de1a7256739baeef8468e0e859c90e05 +de1ab4fca60d6a25556ba8cce2cddb08 de1b4780969d82857806d117a632f7df de1bcc8421481f9c47046233eebc8ca4 de1c152d5fe6563077be2962c98c3eb2 @@ -50444,6 +56318,7 @@ de28ec6967f3ecdc036b8494082c087d de2932aaeb6f6807a55af5801d67fb2d de2941aacf3f42b9f08d9dc664c1681d de2a2588c95f0160f0486af6cfbf552e +de2abfe29affa79bddf0250ebb3e76a8 de2c77b20713acf748bfc6419cde6431 de2fad058af5c797af7af45cdc1df3e4 de2fbb79c32a6406c59f7b5437df94d1 @@ -50454,12 +56329,15 @@ de32a10fe6108c07f32f50faf98eccd2 de32caadd2e24037cfc1bb83dc8472e6 de32cd277598563a09db01d0780598a9 de3395b2f40ae91ad1bb8e1c58534906 +de35d197c36da8d359581a13d93ace11 de37011f1fde88f49c5830e00367b198 de3a85ad1ce1abcf9c4dca50e2d4fb09 de3b5a22d73b12c595eb89267181e611 de3cc253ea0624712cb0c4cfbd28da8c de3cea77548efbe9665cb68896047ad2 de3cfe576e806ba129a7df98da827530 +de3d6c7684933b87ba06909ce781eef7 +de3ecbfddffc7e5fe3e70ca5d696f453 de3ed608e0cc10da9bd8d1333ad51841 de41dbb63d6460d33120270181f26486 de436b0330b4bd6b0a5250dc0ee92ed3 @@ -50467,34 +56345,44 @@ de437fb5477b81720ab01c5bfcf2d32a de44b04b677f2672fd4243b78055d0fe de46872926724b690a53cdb0a0802f9a de46b7cf35ff50a1c17a78f1ab45e0cd +de485e8f9cca5105a0dac4b2fab7e69b de4a0ef8a4b7c887d4a310ffa443d80c de4c2f5cffabfa9e96142d143ee06ccb de4c6ee951a43b86b1d101fb40d471f7 +de4ee06163e52a25494034299fddc52d de4eebf3c371674bf0c2484de3c5325b +de4f23598768001464d65dfc43eb8577 +de500d292bd43c9170f956fc3cd396d2 de513b2dd92c2206166d1f29a00dc15d de519a0c7fbfa4d787fb8618029b6729 +de520e97c23a86e766a8be64bbf4a3df de520fd37e0f705b562bcf02cedd6440 de52354c095203241e0e41c90afe4f81 de528f914fc673f76fc174a9c3ce406d de5398ac623f09fccb318f9ce655fb4a +de5399933d44f9a2c40b340d967e1948 de554b9cc5d266ee3f5d450df524d122 de55ebb8067486136ef08f9041de4383 de565d8981d734e4fc571fad20985cde +de576b41f7922bd9fb21a5e9319b1fb5 de587f009b43546493130ff70411b0b1 de5a559dd0ee880469a52899d8f10951 de5c0b1a2965fb475fffe3172b3d96a5 de5cb59f4df8d1c60b7e62dc58806347 +de5d723a470fa3d81b2e902a2cd3bab0 de5df8ee91dbb492366c8b2f53926bc2 de5f616f0251d7a0c98fbafbb9916ebd de5fc7a92c45e0e22998f3f2fedc37c0 de60d45fd94deac7c2c825b5f323c1ee de617a8bdd5d8ba456a3b9863475344d +de6261eadb813cacdf3ff5a3f709009b de6296763515eda2d9daf40af0aadb35 de63d16942396376e6d69d2101c9b14e de63eb8afb9b7dd56df2d0bbae15a74e de65a4262ebada1b1d896101107b039e de666e7872e3553313f7ac3018edf3ce de667c2e7a1670aa46436028ee8d3901 +de66eaac826d69aafef1d2b2ccf18cf0 de683f7d5d261ece3126677451073346 de696d2f15a582e4fbf0e77ba55b097e de69f83dc878641b593e4fc9b0e3d44d @@ -50508,8 +56396,11 @@ de75b567404039a58c8e86b7304ce7e2 de7631a56d2af81e91e3619475a1f3ef de7747f182f7b5ba4ab253fd90922955 de77a79a98598cc9c89868cb8b0e6814 +de77d8101c25558891c5c5a674112046 de787d032e0d3faec43c86679039ebad +de78e9da25ab8f989e477d49a8ca11b0 de7a4aebb108865b5f80973471ca0140 +de7aa2dc2e1f7c0ef9b1c3219672e876 de7aae9501f1111d7d5555d106ecd59a de7b299b32d1def36e1c1919b163e9c9 de7c895be1cfd499a2e434df0a0a7d22 @@ -50517,13 +56408,16 @@ de7dd48739690e4aa33f0e3a41e664bf de7f29712a9d2b60b2101a2d94278194 de80fdbb9b42e0f53539a90900998152 de81afc3dcf55b1e225ba70965324179 +de843e8694251578d73718f46aad6661 de84788cd858632662a2679c5b7b16e0 de8517959f0a9c5f04f39883f24002ce de853e1bb191f1ced1ef8bf54e2d0844 de88817367562d9f8f038fe6a3aa4f80 +de89a667eb6f0cfcd57dc9f64a1a8850 de8a8e0582af19ca7478f70d7907e444 de8b484401b2befdbab76788f78b9cb1 de8b9020e9148c7d58056bd00ca290ba +de8bbc1f87353be6c6caec36243fada2 de8cc583e41d89ad6bb0d37220c70964 de8cd9abd8a6b8564c503008fa80b454 de9094505b9ef166496a1d68137527ae @@ -50533,7 +56427,9 @@ de9214ecb846ec5ac1befd31ccea99fb de92a124e07c6079cc38e6aae4f9066c de93a1849f37d802ff1c6e339969d264 de950bc011a50e69ee3da5e07bee69a7 +de9588c220089e54b3afe5b3ee79a36c de960d178f2d7465d2164b149b30aa64 +de9775561f4190aa502411a40ef91524 de9a45381715b6f87b7ec8423eebd776 de9dba409b68ed90529b5b694655b329 dea07bc58443cb6cfa4db8eaae5bda38 @@ -50542,11 +56438,14 @@ dea3ca3e153c1ea00da28e4b3e636dcf dea4d17ab13f6baf3e3f780c31f32b56 dea518a887d8a519de053aa9d01fa467 dea521f9afc6b40bff50ac5d9f6bb95d +dea585ad94fe1f2fb7026d9d674e99f0 dea5fbabc840254e8e2ca9ece75950ac dea856623544a9b12549736cccbfbb50 dea94fd49f9470c32cafb8eb6ee91187 deaa7c7847c51721a63e6f1cd2b14baf +deaac1b794840aa4a8cc3e5d83794c31 dead337b49e2117c840accfc39223b23 +deb0533f465da3ec3d029890ad5db1e7 deb3be931bcb7df18211063803c0de66 deb624985c3714ce564d891e73e7ac48 deb6271fd5c1711be00fa88ec023499e @@ -50559,22 +56458,30 @@ debc10f64c8c922766e2826dd070052c debdae6a706748f03c641dc47c11a2a5 dec0e2bc26194a22aee36c61639ea941 dec0fcbb5516ad550387abcbeaf91da5 +dec10804d4db3548a29efb28086a1d1a dec11f03685eca32752ae01452cf62f3 dec205de8532cbf5c79e07c60e35aee6 dec345f0790b7782474c838312240bb1 +dec3b58b151528594155450122914dbb dec56737e108b5232ce1d25c986c81bf dec594e3a337e81f0880cda8dd1bc6bf dec5cb74ef224653aaca8fdd6ad215d3 +dec64b0e8e41544e35b489194a3dd34d decdab4415516362fa9256a8c31adee6 decde065fe0e99a3efa4fe344244549b +ded0115ba632a695755b9dc98fbaf529 ded0488de458253c2b933fabcd9b2323 ded0d00cd8a84858a3ab9836e96f8655 +ded0f181ec1ee579b63d43c9d89ea4a9 ded168536533c1ffeb13d1aea4c3810c +ded24311448c0130c8491b71f29dba39 ded50bad06863f20687d2602c5794da3 ded54251aa79c95d37ebf8cb303e6f66 ded57776fb93efb6007524dafac4ddf9 ded64070aace6216a1f5ebd35419a0e8 +ded7936ed0d6ad42b5774f0763340377 ded86adf73e46011ad8d1a7a612d183e +ded87742c0f6a2ebf4849965b34c38ce ded8ec58f5cbfa08ff2ab2e18eceae45 ded9d2547983fd7b1ff526ee8eeced7f dedaaa87ec48bd46dda3139f7c825b06 @@ -50584,6 +56491,7 @@ dedc5964865bae8fbccbe2a45c408b2a dedd758cd74411e6197ac8450f0b983e dede891801cd3501f20daeb3433be0ff dedf23bd43762b7927c074f4e8379824 +dedf2f775348fff476ede9ea38527d04 dee2364510050e2197292d3675513270 dee3879f69756fb3720955606cb9af4f dee38bcb1245eb3ff220433820e7ca54 @@ -50595,6 +56503,7 @@ deeae1b1a201074d80153c7507112477 deeb050cc6783f533aa9ff62fc382619 deec17b4afe2df013361d8876ea1e9bd deed037d7e9e6c2ab9205b8623da4e0f +deed369842a8821aa3d3bab5e7cfba9a def028c3989b155d3942d50cba64836b def13cdec8d16576a5dba5eb546c9431 def3a9159aed376db09a19e781f11183 @@ -50608,6 +56517,8 @@ defa287f4569dac6eade77d10a1546cc defc3b876933fcf98b2479cb3c45b338 defe81fed7e475e75abe8460ef352ec9 defe914b5259e9450f4518e01fe8b127 +deff411de717292a4449e17bfc04fd07 +deff52ed39abe10cd2129c803fb02c02 df031ccb315e079587312d30f4592a71 df05b3f8ed6ef70762e2f204414c2bef df0630ada81b8dc648e9354c64af2286 @@ -50624,10 +56535,13 @@ df0dea09a7c7be6b9438e9b88b077d71 df0e944d2ca22668b11b3d4bbc1c8248 df0f69e98d236f002c932870f8500f00 df0fd9f941652ffc6e4859a4f53bc4da +df101bcfa763dd6ee838d21001488066 df1189cf9c88996c58e529d6d31973db df11b0784ce782d756d234431286c626 df1245c2749871f109adf896a6236bff df12ce5f0264ef224d5af4fbe6b6a260 +df13980def370359d09154e2dec07239 +df16832408c593502fb4d7d8a5746c51 df17194df770e656f5077692b3a22e31 df17d1c7c9dbf488514641d4a0873c9f df17d47172c7a01302b8658d701291f7 @@ -50641,6 +56555,7 @@ df2657c882d35a497ae1157ef961d59c df28bacf26e6edb4012013dcfbaf5a66 df2aa19a4afe03567fa227a0de3f136d df2b8bc1014158e64c2ecc376cb92461 +df2be3d9c00dfef8093e0a5a4d6872a0 df2c3d8790e4ce52813579c84107c00f df2c5303040735be026b5bda579b7ec7 df2d8f0ad25a3417126324f35c3fd85f @@ -50668,11 +56583,13 @@ df42636742b872273003126bf33d9302 df441578be29e676816cd63663c358a5 df44ecbeaf1465ee6160c9842683afca df4507a168855a05658310bff1674596 +df457a3c86d206edeaa42c1cdaddd954 df467534ba0054b45ee101f23352fdce df4756db283eb213284bbc953563201c df47cf07a3681719bc6e14b20ada82b8 df47fb63de04a2e7acf9c611fc3cb9b8 df48a77e0c7cc091493cc0110e85f324 +df4b73653898c466847c464727b6c50d df4c80161424d27f32fd2a3b12a3c127 df4d750d6f4b067c72125320b513f1a8 df4f74bf972ffd4eb708e36a3841601e @@ -50680,9 +56597,11 @@ df4faffc90f0f8a569fa0daf74a798e0 df4fdbfb2f5372ea34f6d926143527ba df5043eca16313717188782a132a9913 df5080eee7cf7ff33635d4523623180c +df514b6ac18d186e7d8919ba0dcec83a df52492b43061e9b42433411319b1027 df539ab0e50b9da090b98b771e230890 df53e6f78306c9f78cabec880d0cb00d +df54965807d80deaa371eb61c1fa5e51 df54be9e6c6106bbf11dc06c8db536e1 df54e9ab91147926e870ea81f7ba471b df557649bbfa64d6e0507bdc4b87604a @@ -50691,8 +56610,11 @@ df56bd56c81051fc87f24f42ae090298 df57140a957642e24c30df7a03e15392 df58c9ff7abb0eb2d7e6a6356fe333af df59f272adbeb9fab9d144ce12761e46 +df5c3c8b82c4492992a6f0f2c47cdb84 df5dc9ff441894f134438f18ac3858bb +df5de6031e3bd6e4b673251156df62f9 df5edd196d58f830dc669a6a91373a3c +df5f0f7329fa22be6632b426e7bfcac7 df604b67af8bca4d840b3f5a7d8e4340 df60b82e4507b29c624eb11d3a140ede df60e1644ba348e27997746358e91a0a @@ -50705,6 +56627,8 @@ df67a0d660b2f8f2dde37d8bb3d9352d df68772e87ca831cc00ac66daefbcbd8 df68dc8b1e257aee4489e942f50c7d88 df691be6adfa8648cbf58a59ec2e48f3 +df6921ca3fc5f5209efe4a3641e49c45 +df693edb3ceff7511e14a2465f00afde df69fdb27b2b3eb8dc86a8ae55b12916 df6b53df196526d36fff3c9114d447d6 df6b8f0e1739204f9c19f61217e09b84 @@ -50714,6 +56638,7 @@ df6d64d45e9558c83517758af1f90b82 df6d7389e0adb6ea8b2856e54bfa7859 df6f078c880fa5583fba51d5d1997122 df6f3f65724ec08997532591620a6193 +df71f80f7ba6103fd6b0312173e7e5d2 df7217d26e83f4a1e286b6bc4846c235 df7279867982218bbbac2f203cdeef2a df72e97707792b254b4a2ccc483d6fe4 @@ -50724,6 +56649,7 @@ df75a9ea1641de3092b574e13c4d7f66 df77f94458fd8022f9c87a1fa7df2603 df78384480845b24444da27ee2c1a66d df78f142ea1bad586a271847e53e5d6c +df7a0e87e0be9f1e3dbe7542b30e954b df7a4e7a5c624b83b8e55915ec95e637 df7aa4edb63416d21de82ec9186f47a0 df7aafe1d05bd531a3d078786036bf8a @@ -50741,9 +56667,12 @@ df8496010d579773e49b4f8af0bc03ca df84a395884b4c7744bcff1683c672fb df85f8d75a2d5a85cb3f95b883d88e81 df8605c79ac7323df1720be35be3018e +df871be512658e401db0d8dba15f2e2c df882c38785ab0a6416eef11a330f022 df889ee80fb5f56cc17a815de95262dd +df8a6c29ba7efb0badf57a206e7169bc df8a712f75ebe0afe790c9bc58838705 +df8afc05e15683245c2be524a1219fd1 df8afe39386d5ea82029b27dcdffd371 df8c05c8deb00a4a0ea4d11b2742cc8b df8c069fb52ff70b78445588f21915e5 @@ -50757,18 +56686,23 @@ df9346437d5079235f564e8b4228feeb df940f07f92a11697fa414809a725d61 df952fab76ec56126199dabe7c021a3f df956cc9889d3aa1d92667a16cce778b +df96ffc1feb7caadcf58b422be65f858 df9732c3619969119cb9437cf236cff1 df98d9d400f65afca9ff249b61f7dbb3 df99c7b4e10c4d4be3d456775aef4921 df99cad79af53f68fe0dc3a98407a7a7 df9a0d769276ea02e7ab6165ea249cad +df9b5597cb934543328ab873572528ae df9b9bcdd8d7982d86b5414fbb8a6c71 df9babec2277ecbd0592cff83aca4420 df9bf0e536556b5032f124c5a8c6c1a2 df9eb9896c50fc3754c21712b0f953b7 dfa08567c261854fbeffab12706295ad +dfa3e9a13f6f5cd0655203f669d702b9 dfa4e921910f3e9fe62db0a216bbd9b5 dfa5b61be471db6edc454d1fe8c5c1d9 +dfa5dacc7ae751885035170484b8e5a2 +dfa851bd53fa5fac04146e4b362eb0f5 dfa89ba5ac01625d95b601b89ffa34e7 dfa989264dbb3b2dbd7440c14fc1aef1 dfac508d0776ef6d8c78980134357189 @@ -50777,6 +56711,7 @@ dfacbfad93ed14ba41cef3b25217d9aa dfacc114593cf37c206194685b031148 dfad2bfeeaafae79a5fa613bfe44c010 dfadcdc2bf043ed3d889ad9a2d60446e +dfaf196d0a025bf320da95c8482a9d41 dfb091636f40114fd93144f265fca1bd dfb0d67df7c8e5bcb50099b443f7fa47 dfb0f023d879bc70a7e2baa71b01a61a @@ -50786,6 +56721,8 @@ dfb36ba622d453d4fc2a16eaf1d2d6ce dfb3898f36bcd0170482624f7190be7e dfb3cc25f84edbc4056747a76ba6d8ca dfb5dda48c3effc9eb646f1ff5833689 +dfb656bfbe38b9f1af726f480be1ff16 +dfb8c492f813fa68c76b0025b185ca1c dfbae1161cebed893da94d8216620565 dfbd466270d3438202b1fe3cd3b62da0 dfbd8b9bf444238c035ee3a310ee5fa1 @@ -50794,19 +56731,25 @@ dfbf6ebee47ec23b8ba68246b7858f1f dfc0cadd8591cc1758d9766944a810b5 dfc0de7f1f8decd685e57d26cbff0af4 dfc28eaae27ee5bdc44149142967998a +dfc31c5efb15a202eb735487959405b4 dfc35e528b8922017b2bec12b4a3072c +dfc3b50934c9ee582e734e74758e4992 dfc3d2229272bbf86755538ccd78fb44 dfc57e405c60c3d56b6273d9cf63c085 dfc71755b1a7c63256f8081dd3c347c0 dfc85438d3ae7fa235070ca5522b07ac +dfc9db9224235a8c10badb61e0c500df +dfca6f5750fd0106729750851f0dadc3 dfcadf78ba18c01cfa7fed0afc21a648 dfcbe8a8b64241421efad6f89bf6fb94 +dfcc92708717009c0eaa9370c9dc6ff7 dfcd9e1059c933629221c16ac8ece127 dfcf27907bbee5050af72b2e336546b9 dfcf4320effc2ed481f66c914dde0fed dfcf5425207447d02ef941a5c2844d2e dfd0d6ebea1fad4611ef569198f34e92 dfd1fb553310acf554955a7920ae84da +dfd2b14bba8de28588677d8619ddcbcc dfd2b5542ea8f990512f9bc9911c754d dfd3d1cdc898a6bf0089775d37f26277 dfd551e3a12917381ebd30456ffbeab8 @@ -50826,7 +56769,9 @@ dfe07d712b051d894945f71d3f43bed2 dfe0b1388202e7057650d5bf28970259 dfe16cbe4d26ff5619870314b2371595 dfe1ba2ae8a3e17b5101eeb90cf47818 +dfe20e9a98f835719a9a3e69916ca7e5 dfe262465196022a6f38ba3dc1bbb544 +dfe305868efc77ac0090914371d3aaba dfe4dfe5c566c6362b3b3ef74b90d627 dfe5d9bd7fc6d684a34fd0dd4ac37eef dfea8f4f5011a13ff6b172037f4d78ab @@ -50839,6 +56784,7 @@ dff021af78ed0f8bfb34cf469c5d25e4 dff0ea2c893f4fd7f50fccb5ac1b62c5 dff14404b5e578f8666c3e85aff21828 dff2db9840bf1159e84790a8781d7bc6 +dff308a79fedb75b05225460832feb79 dff308fd43a09088a36dfbd304be9f47 dff5fae3d9627f45b55ae400c55efd7d dff73fe9ccc59660893dfd7096e0986d @@ -50846,12 +56792,15 @@ dff77364d51fb40cc715d5f0eef4280b dff849868f097c2fd24b9fa461c0cc0c dff99939a12df3eb9ba98988009f01b4 dff9e46afd2703ab80101d3911da84dd +dffa8036f683e8553b825b752db4a89d dffb1eaa7806e34562a58f8796d6e6c1 dffb8b523bf9bbdf1eb72d51084e7202 dffdd1c47f84887aab261564cb28c0a5 e0034292299df09cc7a9924918d51bd6 e00381faf0a3c1d95d26b58d3ae9acbc e0057a7029ec30c5a6c0a289e1708bf1 +e006269b6eea696edd5f5bf115efba93 +e006aa00acaa9ad76c18bfac9fed3235 e007342a8609fbb26cddb56748ed79eb e007d2b98088b68108cb0bd36fb807b2 e0090608f2961196bee84f3c358a9126 @@ -50862,10 +56811,12 @@ e00bb7a2213fc59fa6ce2ad869e08e56 e00c4fba652b5047bdafc59832d00c4a e00d1d7deb3663032e4b7d27fdb69b6e e00d364da1f6b56a35cbe394f5a253cd +e00dbcd4988b1b9962d4e881d477c046 e00e6ecc0cc7ca58e38ad55fa9d0f71a e010d5dcc1a647a6d23a7f6f73fb45c3 e010d744876eb80f5c5a95a325f28f20 e013dd3b7129abfc7a8a83ff5c8b8a8b +e0170ea9dffc821d9b44ce7584651dc0 e019819dc32aed02235714b502efbaf3 e01b8b0b490b97c942c7cd0a7e28c44f e01e2a8c5b65644b35d272afaa6f4d9d @@ -50899,15 +56850,20 @@ e03d807593df03732ebf59cfcf964045 e03e39f6d4fead0b47cdf2f59df123ed e03edd6ec07f052977e800234aa84a61 e03f47f1e387c3b4baf0bff43ab6e8db +e03fb8f75216b30e629411fe247dc7f1 e0429ab9d6cad51746359f97b6ec94e5 +e04315bc6208845013db00b8fdb34655 +e045a43cc8dc9dbff85922e81f8a4a07 e045ecbc09524efef01cc53d6dadde9c e047459c0ff805c8e76f3e7914f3e015 e047975ad4821d9dec5bbeaa12c2b908 e04868421c44c2cb7ee0942a84850bce +e049f2a9f96af05fd6dbe812fa5072e6 e04a570465f20c19b7b2004789646f3b e04b9bbabf91a6878599cae799f894db e04c7f6fb3b6dd143f343174335dfe74 e04ce4e7c29b6a2457ea0efa1959d160 +e04e38c76ce3c9da4d820cec6a7d6149 e04f7d391e7d99101d61e1ca37b7b9a7 e04fb6362dc2a0c64a069c78fa497fdf e04fe33dbb73f4d6aabb3b2f9d4eaea6 @@ -50919,7 +56875,9 @@ e0547ee16607c6a8804ac4fa6dadbbb5 e055acc15c7e02b11751c7623ef1f7ef e055b8440e5206aaf5559b67726c8f3c e0561530c846e6e21bdea5f5d77a9b23 +e0577e27740b00d7e25cbec92495830b e057a1ab02724d2831cbd8208f9ce53f +e058ce81bda6a867b710378ebb88cab2 e058fcede8d162d544e93a7e4d2cc217 e05b685a7e4280c8cb991f15feb3317f e05b802e01e98eb16f047bad7300192a @@ -50930,9 +56888,11 @@ e05e26dca1875c326e5553989dde81a3 e05f507fe0bf59af57eb11a2d6d929db e05fc08710cf39a8a77bfa9c73cb1a35 e05fd9691635a052d250aa8e0065c3f0 +e06253dc8d6b9f80bda7196807e6d6fc e06352046cc526c3697d5eb766256472 e063a645f3be6abf9c9c882b5b166b81 e0657178bfb5592d0d54a51a9b072206 +e0664e3238bb2065cf8a8dcd67806ab7 e067ec7f5596010fe8eed689f1a4551a e068245fb190bd10b9c69cf3103f88ef e0682aab748c34311229b3cceaf74592 @@ -50940,10 +56900,12 @@ e06840738a9d2429dbb4d555432df301 e06dea321c5cbbf3e07fe2b40543fbb2 e072456e566556d3006c7fd12bd65c3f e073134631cdae70973d69812d72a889 +e0760311578e43a7584671f1b604d7bd e0792fca475b707673d9c81f13afa160 e07a2d2c7c2565cebdfc7db42bd47fc1 e07a4f6437ff08ef003df274e6d9b32c e07f8039a11a00afbca8a56eb940923f +e07faec92bd1de17cad31f179406a7b3 e0821adbbbb6528a46439cacae81f3f0 e082b78e67995ddc852c7abcd67a479c e082d60b1b31d773f877d81dad42fbca @@ -50974,6 +56936,7 @@ e095bb5841f4b8f98c1f8157c4f0a668 e09684f21173033d61c96ad9afe1bc81 e096b4d44fa473a1abc89ece5b85ca6f e097f5643a1ce888145104c7dcc4300b +e099ef1542cd14d547d04c90a7863e10 e09a7d828af4f9220f2145dbdd02ad83 e09abc06c6f6c63ac7e99d5767335898 e09b907174bcb49ac3a45ff359219720 @@ -50995,12 +56958,14 @@ e0a6637760168d6e04e1a5dc8faa077c e0a7572d8d12d3b8ee3b5b3b3c896fb2 e0aa9e0bbc5bb7f557b9e83af621a531 e0ab1bf0a8bfa97639f1781ef08461ab +e0ab49f62317cb746cb8cda6fb4ceb10 e0ab5b7f02540ddeb23cb4b4f0d4ed3f e0aba62984483e2e112ad6893b2be240 e0ac1f565e35ccdf226980f223238bca e0ac8cceb09b92c6719ed18331ae4768 e0aca4544f0122216133f3387783813d e0aff91b5f4d10768b9320a8c36fbb28 +e0b070db4f5dc735e9f9bdbe7ae2c4ac e0b0c5ce1f3f32771fe23ffb63be8d50 e0b0edb3e94758106db668e04a159cd5 e0b3144cca7b88f3f2baa8599ea1b689 @@ -51010,12 +56975,15 @@ e0b97dea53b2ad6d20c595c42e2f0308 e0b9b1c685107149bf37c08bd8cd2670 e0babd00947264a9815dda7574f0eff3 e0baf75b4b40e0d99a91e8348bfbcec9 +e0bda402529331ed31ec6e6c409d5382 e0be8e4572753d435844efbedec42bf3 e0bebc7db2f9f759c4658e7fd4c27ed7 e0bf7738cd335b82e7431cdd27b896a8 e0c009f9f08af9e755298d7cbb7ca5eb e0c01575339ec01632ff01fdff90d9d3 +e0c1c120843c3c737854213cf0fa2ddc e0c3b7ae81bedf5ff4fbcf30c2d88241 +e0c450911557934f21ea434693a58531 e0c612d59b93a52f528728a9c64cb780 e0c6768022cdf171a0495bbba607c78b e0c685b3aa6b892a7578e2850652892d @@ -51025,16 +56993,19 @@ e0c8da3f878126a6b023e5e4c2d2235d e0c905dae4c9dfba19ebe90a4876b17d e0c91418ba050dd7c8f95d0e18b4c2ef e0c9b29cadcb59eeffc5a5b0d9fb5015 +e0ca16f1d25da28e2fd2f15e1fc497be e0cac92a31a996114b9680e504923af9 e0cad6d5ad62a0dcb3445b7abf2f326a e0cb7d38d0004a82f9c285cdd5b4a6b3 e0ccc6b9d327a894ba3dcf370809df68 +e0ccfb8613b5de7f84e6ffeac203f01d e0ce5a01525b40a00bc3715849da8bef e0cf7d5f47c66dec862f5e737fb5984a e0cfd250b5c754d30b032be61a767e75 e0d179f43d207a3a3c067a593f16f451 e0d3d2a9a48b61abb7e5a61f3c6cf086 e0d48629a16d765134ac959281993fa6 +e0d4af8f00fe168d3f9172985ebf1dbe e0d4cd90d041164827d2793880cc84d7 e0d666888005c43fa77483d0bb3cc7e3 e0d70c0caade9c63ee991cdbc009cfcc @@ -51051,7 +57022,9 @@ e0dfd2f98ec9ca88b29336555066f5f5 e0e04191d19d9c343807fa2dcb148e8c e0e07880cf62a7322ec10033ba6745e9 e0e08f04bb0f73ac08e627b911a155e7 +e0e136c12bcc31ed5686897dca243508 e0e18551d14f323297d27e257573c88c +e0e4595c3db931ae4812e098c8f76e91 e0e5357d1d66d4f4fb8f135b78a702c3 e0e6f97c4f027551a8a793ac14e14fd8 e0e7d17da9abae2a9d3826661d56df71 @@ -51064,11 +57037,14 @@ e0f439163a789eb87e00eca8a0fcaa4c e0f4da0bdff9800793c01a5ddbf299c2 e0f5c90ef8c96bc105223b008d62402d e0f5d726bdb5aeda450b00fcbfc366b1 +e0f792f590857833e09d5f0cdbcac6a7 e0f9f174e7bcb289779d29e7107fcbe7 e0fac25e8cf2202856c29a7b8b3bd8a9 +e0fcbcaeec05de6adfcc40a0416606b5 e0fcbfe72a98798d6bbbd5a90a468728 e0fd4030c2f46ff9abc922be72620be2 e10018e17ac2d16a0a218ea15e1b469c +e102a0ddfcce2cd62e0023b9a51f5f5f e1031ba49216077cbb1c55f8590f3ff1 e103b7845ed5396b68d8369240aec0e9 e103cee71334b712d361d67fb35aa606 @@ -51080,9 +57056,11 @@ e107cb2e92b0e1788cda87787cd3aaf7 e107e02a1d410b8837220b93f703aab4 e108f57665f4cb9222265ffce83140fd e10b4503aba4b19911dde451d75ccf1a +e10d0e49b41c21ae41598364c6229854 e10d55187c42005623e9b509e3559195 e1139123bc966a4dc1ddc9c4e2530165 e1139b597c80333d7bb3792ffc35dd6c +e11513e50695179fc29fcde2995728d6 e1169e42d1ca3dd6a5abf7f57ffc16ca e117de4e11db21ea84f7209117d6c534 e11923d353a50c784b40a97a5099f42d @@ -51092,6 +57070,7 @@ e11bbe28838ddc6ec26efa3136260a49 e11cf226cfd9cdfe92e05816eaa07151 e11f2fd4b2a0686ec337a9e4792851ef e11f7dbe9ef549f52adc49a69153c24f +e1254c7a6301ed761677b8c5ac039fc0 e125691d1406407ee69e6968a118351d e1263f65821d69d136dae8e4744b12b3 e1264c9fe9713654b0391498b85858ee @@ -51106,7 +57085,10 @@ e13055bd65c3dbd08aee44ff0d93e8de e1305ebfa8db32b61b3d8fbfe9ecdff7 e130673d57a35fd98ed0e63c34956c7b e1325f1d7acfde970d82aa8eea084cb5 +e132c0320ea806659fc54313550f1e39 e13324b1b097fb8c8c731307978d5599 +e1344b849ec304705ffad3e7968ce67b +e1348d9e145f847969cd5c542926cf65 e135c946ba2025838a8ea002d98dec4a e135ecff996b0879c83ca40ce95ceb63 e1365116aa9f3abcdadf36b2284bf9ff @@ -51115,10 +57097,12 @@ e13819216af30a67446cbc4a753cb746 e138797899e364025ec529071cae6918 e13a5650fa64c4c5f3d9ca2b388039c8 e13c5057e0aec580280d03985ca81959 +e13ca9438a85bb50c873c2bf8bd66133 e13cf245c47077ac0497ffe7fb0b29e5 e13ee7b74430f2f2cc900b951e9df5cb e13efc55e34bc4037fd5e03886cd6c08 e13f2440a3ddd7126a07be0fe116d9a0 +e140bbd6ad2588802aef0b5724a92ef8 e141cfc0f2885ba7a386a36c3dc79a22 e1459358628393e6b336daf9b48a890c e145b0513e1f63127b1bcf4f977196cf @@ -51128,6 +57112,7 @@ e147e1ac49a68897e5f3f6122925b959 e1480fd076cfa8e48b9a57a71733f77c e14997c28113b27abec34f593237670a e149f1227a36eab6fca91dc0a3a438e6 +e14a9cc2e5dc3d19cf04dc276d6301fb e14c9208b39c3cdc558d50fe0cea2dc2 e14dcae72e3fee0952f2f157f21da774 e14e7601047bbde53a81a1a8f8d5a180 @@ -51137,17 +57122,22 @@ e14f56abcbb2f74e42ceb65d4feae020 e150bed2948473733eb9be067faf5eda e15160873d8b4104faff09cbeb29a1e9 e151e1d1b67ddcb1ea34d20ecc1fc797 +e15639199b1ac6bb52d2e0b42d1c6468 +e156da26f4d99723ee4264a59c254eae e15b24cd82b88f32877af4aaf5e42ed3 e15b8cfa5b74afdd9720731abe3358a0 e15bd12a2d340650953715dc91b3e550 e15c6aad70bd49212df6409942044d7f +e15c7fbccfa871e164a86c1759d93faf e15cc0497b066ab6c63d3d179e533fac e15d7648a698d7ede2244066d28823e7 e15e95f8fbe3c4133b6f4396be678601 e1606cefc99d9bc816d2e9935b9d1a11 e160b16a52e2e3d54c530770e9cfd0f9 e16317eaaf0d1e3c173ce9988282747b +e1634bca6cfd7c4a7c0f395ab20994df e1638cce86a9908e8411892bb988a1a7 +e163e6ab54ef37733e73b5b3731bc9c4 e164d16da2f161f2ea105d97972002b9 e164d978d261df81d6bcbbe26a04750f e167845da55220184030111b584fc706 @@ -51165,12 +57155,14 @@ e172540c05c9180e86cccdbd52aca5ce e172cba292cdb8c0abb7e43743f8de98 e17305e53c65a5f3af933759d899bd9c e174389739925635be168271776296dd +e1755924e38d3ffd737d08f97bc489fd e1757ef3ed35ca9e7c495540213f0bee e176680ed99b0150ab088aad59a526e0 e17737500af189e6d2701daf851a0f9e e178bf258493300f7b5250bb490346f6 e178d7061017b47743d1550647b24581 e179993024b02f35a00091575b45906f +e17a04087cf3b30d311c6b609f284630 e17a84bb92919e37baec4dce75c06d94 e17a8c7c9a1316a055052f629faf878b e17aac871188a22ed7a63f1230b4eac7 @@ -51208,6 +57200,7 @@ e19c6c21f83c59a17477fdd8973ab9a0 e19e22772e01fff041be41876f80b421 e19e231516228ab626c8ba32ebe89da5 e19e83ea459ecb9efa1c4b804ddb9c11 +e19ff30a9b20e2115b4d50ef83cd23d4 e1a071e36e26d067d50c3f00955f197a e1a11b1fe14a9a2f3f89d9fae3300285 e1a39809b8e30016d7521a4e49a1d3b0 @@ -51217,6 +57210,7 @@ e1a612e4f739bfaa326f128a8013da62 e1a672af515383778798533a3046391e e1a94f022eb43bf9b58abad10cf613c0 e1abeae869c79bd5f57de6de5f3e733d +e1ac1f0c648ee3c89b76bc3641d0b854 e1ac4fca47694d01b418e4a138278a51 e1ad223e79e695df12147d7250843d91 e1adb2bd652eed2dcc53babdbd7fa488 @@ -51224,6 +57218,7 @@ e1aea9e05648e7f9ecdcb181a387265b e1b0c92ef71f7eb51413ecd72cce5b7b e1b0d432cce48159fe75afeb5552a3c5 e1b0e80443e69a8bac8f210c446c9e0f +e1b13755ed09c600513897bb5065bf07 e1b15cd3448c8f95d5b27617e9491091 e1b1a8e8ae9f995c6194696dd6ac2828 e1b2e63cb68a7c8ff39ed4e8dd3f1770 @@ -51238,11 +57233,14 @@ e1b6ae581a234431bd042fce2981d124 e1b7c49a2f9f1d5f949d24034d542fa1 e1b803f4a998f7356dce42e30ec1a1ed e1b8b2f36e55e672bac9af1c58195554 +e1b9d092d723665f6d37cf45e63935c8 e1bb8e4dff5a2a464994e3c90f477b24 +e1bbd97cba5047b5c284eebccf720da9 e1bc9de2b188210b61f395e2c160cbc1 e1bcbf447bb2ee5a541201d2a28ec175 e1becdf0d8433cd06dc56aabb5d35981 e1bfbd39f6bd26485576772d868b817c +e1c02308d32ad496f5097bb07629f06b e1c1d552ff47c267aa569b1dc4cbf24d e1c3102eb2e47c21348f6eb52245f5f8 e1c34662679cbb111cc3b74f401f01bc @@ -51250,12 +57248,14 @@ e1c49f658f6265dba73a14e2832a73e5 e1c518f7bed7e8cbbe2ac1800e9e45ff e1c5938c5fc7649b35d90863e52e72a4 e1c70fe46d7f85a16abf8796cdd71986 +e1c7e81db331743abf790db38e3f7f6c e1c831d46842ad2c87e19dfecb067477 e1c832654ecdd28540d6ad8416f4e317 e1c86d040cbd9724b57d3d3f4ef338f0 e1c86e72e9c3cfdb6663b5d1fb2e6930 e1c8ebf882b8e4b32b8223a3373e47c2 e1cd19b5c92fde43809f095f0b537f28 +e1ce7c38677cbbcfdb8064fb31c1a7a1 e1cfa78c54f912474a6c02ce62e59260 e1d0660a25c160217bc9359289a1210e e1d29ef9c6bf7f44ce751597af05e4bd @@ -51269,6 +57269,7 @@ e1d5e6872e5de653a37092437775b65e e1d6503a1874b63826bc861d9fe30966 e1d8b28dfcde4da677391d596d731169 e1d9be22c20dffd7e6f8edce80f11048 +e1da6467b3efd10948e20f9e23e06268 e1da905271d4001205c623f8142d394d e1dd7f5cf84b2e6bcd5c7f5c98243ab5 e1de57f8fd54e06aa67a37f5c1049b8b @@ -51288,11 +57289,13 @@ e1e5ae1f3828c696f8f3b2d6eb967b42 e1ea92574b1bd2bd0e6bc71f9380affa e1ec81ad17116b85d1dedb82a63022ef e1ecd4ec4e952d0f416691b88532e121 +e1ee3388dbcdfb9f4c6a36d5aa91d1ad e1eea60854e6c6651e295e93dc9f0ac6 e1ef12d39fb4fd9a635da49c03e157f2 e1ef3c28b7ada72501a5e75fc160587a e1f353e8873b245639686122bc84980b e1f42d8a71b209a7e0d3a45e31bd0873 +e1f48fed81c6a4a0de6c8cb792795c36 e1f4fd9938f361dfce0a5e973cc7b602 e1f4ff784922504900a35e2febf07f02 e1f53dc8af80c6c54f89b074f08e21c4 @@ -51303,10 +57306,12 @@ e1f75f99ea3babb474412c1b16eced60 e1f7a2d03a3cee1cba74e29ae95e9905 e1fa18ba14172f137425246f02f06759 e1fc0eb260b9f39220d81950ddd82c25 +e1fc6a8c74dd3d0d35ae1231c6d019f6 e1fdcbc61068ec6dd3517225a97ba299 e1ffd2edb8b7f628340041bad918dfb9 e20046600e3eea481babd9b3df196635 e202ea8e8621a5dc81e83d45247e2aa7 +e204d50ae85954a29bd48338c340100f e205d1cf7ebdabc2501183d9faa95207 e206087c59d21c715b6272d86c31a329 e2089de8e6749e5daf205d43a78c882d @@ -51330,7 +57335,10 @@ e2161341b48f2b683c8f95657be8afd4 e216675592f289e67ace39ce4b07d20a e2178893281254f99f7daf46708f898f e218bd90e0e9988a68822f64c515e0ed +e218d585a8d338132fab1fcda7ce13ea e2191dcbf0fed4e1eff9825c8c51f4f8 +e219cdce32a330a21e46f5415a18d76a +e21cba5650c78d59d8d1bb8d587ca75c e21d2d1b4272c087169984add9879276 e21e4d4789cf2a818f472e4b960f7de6 e21e944fc87298772d2a77e67bcffca9 @@ -51362,6 +57370,8 @@ e22f2329e42e1d1159d2da8d1a0898ca e231cadefe8c2794a7df1907386104be e233e55f026108df6800fabc447b78ce e23534ae42495d891ad3664ba07b7495 +e235c8b03147a7840bcd7a74008bbeb6 +e2371de20013ac9214e0c23fcfff12b4 e238afbab089607dec7a863143b6cbd5 e239eb5cf8be2caadd93a59aa0ed2cab e23a6c419eac71660b98db978adff3fa @@ -51371,11 +57381,16 @@ e23cc87994d5fcbb5cebe6e6489be5b0 e23dbc90ab8777cf24f5586539a10ae8 e23e8a1530c19f8297972bcae95c6808 e23f4f6c5e64e3508390cfc18d9f883f +e23fff21f4f11053809523d50dfe88d3 +e24018ec6b254626ca2fb1f27a71bd8f e241e24f98274c90e833dfd63d3fc115 e242126b4b1e20798a4504f994a0c9a4 e24279d27dd449653792cb6ce937a937 +e248d4bd669a121ce34f06a176f8875f e24a3df7d190d747063342eb3d6fbbaf e24bda1a07a73168578bec7418ed5da7 +e24be9cc74cb5cfe49ccc2d7dda86bb1 +e24c04bf5923de525be9f2f315ad86d2 e24c61a033e0717fa9e02449f4eba9b3 e24c9783c134acc9ae4b923bbbc5da39 e24d4b3cd78b78e70e21b92a05c43ceb @@ -51388,16 +57403,22 @@ e24eee9f529cd132e8147b3b5c33a7ab e24f53f7cf9a4767e3883e47cee13696 e24fe098a45a85b3e1aa1565e9bd8c03 e251289f508996493327dd174c918ba0 +e25185c8dcc90fb8f9a54acf4194bf34 e254b87fdf5db942f03cb7f777b1272b e255e0bc3327380ed5ffc569a89e458f +e255e2516f147373ea206051b269624c e25623dfdc9e52131dfe6ce5961d0aba e256a43465cd0e9879a4949770c748b7 +e2572bb759c6c887e40591d126ca2744 e2579b3d711b8e485f4bbf76196a3987 +e257e97be02704f165d800db42f5e472 e25807016b37f014e0c6a9a0e7034821 e2595c12641437d9b0f9de1311232789 e259ef8bcf3c349eaa8b072c80651625 +e25a79737aa9a3aa22995fef9584f939 e25fccc9a6155409ea5e60c18ed2b716 e26051b77e64187222b8c19a26c15633 +e261b832f86c70d671a36210cbdde67d e262581320511cb99951c5b165b1a687 e262b5ccb9f1d574958a898be0f4df18 e26397d4706c65f44fde0a25e1bb0f99 @@ -51417,6 +57438,7 @@ e272987ab92e8770aca13576b1380710 e274ea37f9949ba7bdaee96c07f4b8b5 e275262b210284d722222ccdd0a071e9 e279f201542c25f87cb10cfe044faaf2 +e27a555d29e7d1be0bad1b56e4af2a1b e27a87e9be5af4d93d8eb84cec8d68c8 e27d2e28e473500b8d905981cf0d33ba e27fa0fc9348e5f700838f5ac30d5781 @@ -51426,19 +57448,25 @@ e28399c7b6c416eac05d3eaf20bbd96f e28565e09addc385fe5497aac5960642 e285a59f367c7591ad2552992a44f3da e28673e10b0d20c83661783204296108 +e288a2c9e66ec4de266a6576b5f28f17 e2892413ddee5544c2221cd9e8b7726e e28972cf2ab32e39e515daed1caa9cd0 e28a71c1986e412860f83a5e3d4a71e1 e28aedcdee2138b22bfa292468b0c6c3 e28b8569a78dd2aea8f192a4d9f79fed +e28bac6630e90f8a5cfc103d535a5b44 +e28bcaf2ffb97b2f197aa4729d37132f e28d581ef4bc736accd5cf251585fd4a +e28d8efddf4c487340edbc63d037b1e8 e28e02d9fae12cdab85a8c2dc61cc095 e28f46feee091f6d030cade3a9d68c8e e28fd30df6b92caa4ddcf9f134f96423 e28fdfd28a9f01b89b92161263389236 e29018cf123845defe03b1971bae3006 +e2929009eee9b094a671c2d2d1e0c1bb e2937cf5e89532ee32cb107d1cfb6f7c e2946ffa46639dcfb7a3b2490dc8451a +e294fad59a52e131be07aa57d3da2493 e295ec3ffeba003e08d8ebacb11d99f4 e29653a448f762eda7b86dc74f9f4253 e2974567efb90cdeeadf6192c6612a8c @@ -51447,11 +57475,13 @@ e299a56f1d9961bc6c316828e7a588dd e29c5bc36ed2c7db847d2205c89e0cb9 e29da14c2241eb7d9cd11a86211b9a2d e29e339ea4bb0e790b54f69315a0ef28 +e2a0fb3095e276acad7f360d0a281f6f e2a1d2c12b13fe77f68392b69222e585 e2a31ec05486deb7afda8e6254cfbc8a e2a3275c45fea4000a91cabb0666ec49 e2a4c5f54d3a68dad0fb8ad11dca6650 e2a5f0d8e3b0b992afc2a5e0220f6a1f +e2a5f275c9d3de8bc286ad41f17151e2 e2a684b86c6020242a7218c0b595b9ab e2a6ccbac30710d6d45022b9f08bc60c e2a77600786c21468ea7b1842759b7a9 @@ -51459,6 +57489,8 @@ e2aa853de99b4f65bb0ff692f7868a7f e2aa87262139fab975fbdfba89ac4e5c e2aaa766f9d0d5d4623b871636acb7fe e2abe0819ee047542ff813a5d6be9f4c +e2ac2df84466c7931ae1d4ad0b990443 +e2ac4b027fc66f3fc9026d46e826787a e2ac55f6592c656f8ef7bfb68d93c7fb e2ad54bb13937c1b18afd31659a6dc46 e2b0234da4278a28eb14c7ea48757d3f @@ -51475,10 +57507,12 @@ e2be05c0ceb581653fafc5e1c255fe02 e2bf16e195996912ae0fe8651727ed8c e2c2b659cc72daed3372f685efe00b3a e2c2c9ed68c3b48e2a8ee776c7bd3a01 +e2c44069873db0b448604c62f23ff064 e2c44deb7d83eee731501f9e0805f6bd e2c55359980c1927b36a6b25136cb0db e2c5f688786ce23a5af79258f99ac65a e2c6bf02012f6fff08b77039841c71a9 +e2c6f9c758803e0eaa03656c20f7833f e2c78a00b93d65dc9990df61510a470b e2c8166df04263db1d52dfdb4921d322 e2c884c85c432377e1421cb7c5a2423a @@ -51487,13 +57521,16 @@ e2cd5f08cc735d38fa7b6ce3f4858bbb e2ce8ef1a820a134227215bbab0ae533 e2cf2de3ce1b53f5c4f10d787d4358ee e2cf4e2b753d8b4a5cce320145d63d07 +e2d0fcafcd4f51d955bb0c6b852e7091 e2d29ab89d9107f9bc4d2c77d0960047 +e2d30ac2d7ccc4740d7c34bb1d4e6dad e2d413e6524c4249533b820847c6fcf2 e2d4efe86e37b2a89714b423da8688b3 e2d53f79bae5800fde7cac8bab87f5a7 e2d54e5916b9c0d63c20d3e47999b011 e2d58fe40c0dc78f1b122f7d89e1fc9b e2d6ceef24d780440d62a1915f66cb35 +e2d98bdac90aa5515217277b26bf4db8 e2d998378f8fac067fc3c99f62916c33 e2db663bf7963f7d333b033f14d2d0ea e2dc039c1e183d0a6a81e7e9e4d7e708 @@ -51508,9 +57545,11 @@ e2e177c543d67a73541fcd3256a19cd3 e2e41676194d3416ba4b0edfccee1857 e2e4b698d9257bb2d3eb4723740b6ba2 e2e58ab43b18e75a13d2082e0f38f74a +e2e659c34c0067ab2820cfb26df86753 e2e688486dd1bddbffe9cf1fb035d14d e2e6f2762fc50fa9bd88096efe7e6ba9 e2e7aba8207ce0d02352597e1e190bf9 +e2e977586e2b6eccf88d9a94ccb852e7 e2eb23854f13fb94d16532fc72c1c3ba e2ed8c65c8b84bd04a85ce4d5ae4b083 e2ee7d1445d7ef467e938793d2e21e54 @@ -51518,18 +57557,22 @@ e2f0b9c382db938050c100fb46435b98 e2f0cb086cb948143159411bf0c4885b e2f0f71fb874a62dada9f0bd31d6f136 e2f10fc7af1c35264206d9ab64ee6944 +e2f1af0e8716622f88bbfd43908161b4 e2f24229f119848ae7963ee171131069 e2f29903de4c1096249a53ad414fbd7d e2f2d1d63f8e94435c4375df28517939 e2f4767cc1c8e6539ad87c1f0811c76f e2f4898c4759f461a9c522776f578a5f e2f4bc05a68829c505eb78cdbf243009 +e2f863ecbd58e91ce6071ac8d7c85fa9 e2f9cece325b6ed7bab6fae48abc5fa8 +e2fa96b27d0588afd4564e950626debd e2fbb945103670bec421dd4286acb095 e2fdb193213f6b209e12e99fc81fe96a e2fde053cd315020ca374f7849196080 e2ff8f0af83e6c1b092ab152128296c4 e30080700882ae2c0ea86f29cad995f6 +e30081f19c7e261a8ab5ec583d3d809e e300ce12055fab46bc1ff075417b2248 e30288f4ad228c8aa13f7b9e1386c371 e306bdce59c99135644c7f1c97751e30 @@ -51545,8 +57588,11 @@ e3139103542793ebe3a0b601d7845117 e31496edca2d7403a2d872156fa2656c e3176d73eac5c8038baa89b490aaf254 e317bbcfc8d3dc1431422025db05fb85 +e318feb47eb01c7b70bafd664461bcab e31939bfcb4dfa1b6d0014d94556df28 +e319e9db0be1da03794c954219293154 e31a64e091f757edd8dad2dc286a4069 +e31b2f616f1667def4556e87da2e5a52 e31d1a3609fa164d75a338554a94cec1 e31d1e1bcfb7f14da4896b9bee5503ec e31d6aa2a76c882df091befb9c645e78 @@ -51554,6 +57600,7 @@ e320486354efc7642575b9e452e3c6e2 e32144730a3014015ad39045a87a5388 e322b09b136532b8650aadadfeed9554 e3249b0a5e3a1fabbd7f29cc950e81f2 +e325133fcd1b2078baea373a61a8c649 e3254d823280ceb2e4b7b380d1edb1aa e325789fb7f6b4bc6967d27f07acd6fa e32726c6a563408f204a9152d24c5cb0 @@ -51563,9 +57610,12 @@ e32aa210bc242fe990ccf8c8fedb2545 e32aca6287cb252006a3ef32f137badb e32ba306f5307f63a952356041948430 e32d787140f7c4e6fd7916fd881b9500 +e32df8002f780844e29e13da1bd03c47 +e32eb0f59d4732e6f6ab7015a0a99b90 e32f8fb961edba3bd3e7ee097416ac64 e3305b4b1c583dd0b9516e625d7f45db e3333900bda3f3078ad7c8d9e7f5181b +e333affdec00a2f28d67d4dc269f94ba e3345d27c02abce26302e185c132894c e33488386246c24bf4f4bda2411b6595 e3355f0eac205901e820a4112804d0b7 @@ -51582,9 +57632,11 @@ e33f30f3c27425900fe2b6af63386b84 e33f31a66e243872b4d8247e48aae2c5 e33f46164ee43bfacb90afc3562f36c1 e33fc558716ab4719c14049ab88f7f84 +e33fd5954976ebf005f67a08cd2d8868 e3406b9a467e0df58bfc160a8f90cd22 e34085d976a1fc9b8da7d82be37fc608 e34111218cc6caadb783620a40ed9d03 +e341895253bb4f222b9f878813d55f4e e34275a4a065e507bd74da1cf9d33b77 e344477d86a739584804327767ae1ca2 e344fb952c914b37a46fb066cdde3f2e @@ -51623,15 +57675,18 @@ e3623781e24372bf29191db6f03911e5 e363c6913a2c0be39679f2b60542cc87 e3653969b0106c983e36cf5c3e878b89 e367ef9fb2399b39b07b7e69641c1b4b +e368ef549f61c1168668740ccedfc0fb e3692d235588b448f2b2a33699a69d93 e36a6c4cc8b11c3829c36460da7d4233 e36bd9dc5cd7ccbcc6c1eec5f341a2b1 e36d6df20d962f5d8f664075c895fb57 +e36e18378e130c70d1909526c564ae1d e36ea3060194ad834d2f86228ae75bea e36ed2f6b8ba8167a2a2cb562760efbd e36eed863023e61d7cc7efd1585a4270 e375c5f23f1313cb48d0439369b15384 e377133a6e578bfea81388579551d4e1 +e377b1eab1dab5f2f38f163632511f3a e37844a89e96a9946085c11d47393e98 e3789566761f923b35384399e6c7b710 e37923d1e5770565af38461ac47f1b51 @@ -51652,6 +57707,7 @@ e3833c609608c60253d9be2c17009d1e e383dd1b20ea49704b9bfaf878ff7473 e386f3b967fcaed24e072e4e0c353b61 e3884f912d0e95776040b388ec6115f8 +e3890666fb06de53902f02904f99ef69 e389275cc53bb294feb734696fc5d632 e38932c530a282452c441d35ac8612d9 e38990b51c00a2eb73b961ab231f088e @@ -51689,6 +57745,7 @@ e3a1980b1e71cc65d4939704c8c9288e e3a224d11de82753faf3fd60805284d4 e3a252be23ce3a11a4e9d05199b01744 e3a259832417ebde176b2eec4703990d +e3a2b5b9cd5cc4430584fd1aa782b7cb e3a2c3030f7568c87f92b67e2d6e90af e3a4589351c84a45b41e0576fe4b8b4b e3a5268f41a4736081b4f841134997d9 @@ -51696,7 +57753,9 @@ e3a64c77373aac815ab8556348b99a1f e3a6ab57f8cf9c8ea0fcc2969ea6e964 e3a80993a60926f9b36975163a4b962b e3a99c5bbe041d21d735a0a5038fe0c7 +e3a9cf3986f5acb12700f0d194207765 e3aa1b028b85482c563f159777e016e2 +e3aa85f731ddd3f456f7ee43a30fecfd e3aafd05d87352ef1cabcd913846f593 e3ab6b0f5242ac6e8e767a8a60c72587 e3ad4fa98f15b7511ae09e4b0816bbdc @@ -51715,8 +57774,10 @@ e3b79580dbd00c033b9d6e593801b2c3 e3b7ccbe56a05e81c68216c588c57435 e3b870f3fdb98a8062e622d23c80204b e3b9edfc043659146616e0f6dcd8256b +e3bae44370e4353aca3b7bf5112aae85 e3bb2b75cb09b93d3658b69bdc66fde6 e3bc0996e4696f08ece9059772cf35a9 +e3bf9a6678a259126f16b9d5fad43f6c e3bff77b5849bf8aef14e29daca01cb5 e3c07ce5dfe5c1dce81dfea8f38c9d9e e3c0cc1c8e9c4181d4e3e360716648a7 @@ -51739,6 +57800,7 @@ e3cf42f007e8a3daf6f9e8c1ec777c91 e3d015aaac7d9edbd55f618d55af8444 e3d15f8717dbdbf409979f2e1d3b3e1f e3d26e993d317087d56514e8fe9db263 +e3d603e989469612b419bcaf15e5a309 e3d7a66f7a236d87fff6f9952be73355 e3d807e176d071308fc7f3e4be4975a4 e3d9bf2651d3aa20710599177634c9e5 @@ -51746,10 +57808,12 @@ e3daf2c12ff98b800ec6a1e5cc3a24ab e3ddbed59619ae069bfd51b9df13ff51 e3dde91b567a1dfbb9be57996e9eee03 e3deb0506a9be91d7acc1958077ff3ba +e3deba85b439f510d5bc63dc9383fbf8 e3df4a489d6bf6c44926fd7ca04ee0e0 e3dfb56dcf6b6c7f9e37436d9121cdf7 e3e00dde54af983e5b8762a17d5ba8ce e3e0b8df2e15f360479ae9c64a5a35b5 +e3e2b985f9e1c09e97678db595cb5c60 e3e2e12f9d56f44d2d4a344fe252484e e3e2ffbad9af5497a2b77428f80401da e3e346c9ca7d1e4d8758d11cd974db73 @@ -51766,6 +57830,7 @@ e3eb79102c240d2bebd04372e3ffea59 e3ec0f3a149587ae8692592614c06b68 e3ec13b26b1f9c3cf4e836a937c6a274 e3ed7e3a7010b6de1234b67d436f15ee +e3edba1e18ac01fceab214c0a4372da1 e3efadda5415b44d551ed2864f1a3b4b e3efc3f31c58963423701375fbd1c69e e3f025c5545a3d12e94d7cb721ee29f7 @@ -51774,12 +57839,14 @@ e3f3722da208ee695fe8569c48e54c82 e3f40d63e46d244916aacf3be13c2aac e3f46a609e4e5be98b7953e6cc32856d e3f5755d32254b31850afabc3f0e77dd +e3f5ac915b708b41985fc44637fcff3f e3f5f7267061d5d30148f4d5d0b0a8c3 e3f6607619cfd1b5dade3999f06082c0 e3f6830123b54e3320a52eb2bd3dcdb7 e3f797d6084edfce040145cb52e8bff4 e3fcc96631280273f316d91cb0c2ecdb e3fd5228c17b6912f852e5411014b53b +e3fdc61ae67f56f4e555438f28360ec4 e3fe9fe01bd6714caf5214f1dbe3cbeb e3ff8893e2cd4934989081b0fe158249 e3ffc6475212b90741a4b443a1603cae @@ -51793,14 +57860,19 @@ e4057f0b1d22ca4ada4112cbc3b9bae9 e407db5a13473788a43aec4f71ad96d4 e409574e796e1eb948c968c3e03fe6fc e4098d4aa3aa407c2b711a0117ce8320 +e40a3144bc32cae0cf19ce2e9befd6d7 e40b151b2ff1f384249b6ea08fc58a53 e40ce85030c5bde4f0f32689ab921bbb e40e3ffa1b342008bd357ae20eb9c31d e411043b337bf9245574985e819fd2db +e414d9a42d8f84b3e60106e4c83f5324 e4154236fb22c7103078742310f65551 e41566b8fcdfabee3e4a357f96de7490 e4167094acfa90109a3630e2a487ec43 +e417cc54ca91ed6541e144ee8c15c80d +e418a5f192d8da17c25fc008923903a8 e41a1379240aaac0d9a67f25129de7cd +e41a29acc1aaaaf06051bb5b056c5e77 e41a9c444b88050701cc1e7df03cd3e7 e41cfd737c544bce19a24819ab0e6907 e41e6a735746b67b682ae1a49c608c04 @@ -51808,6 +57880,7 @@ e420602999244d688eef6b7e095771d6 e421d2d3f28d49915a83da6dcdf61d6d e4220a7540b8773843b3b1f39effbadd e424961b1ab3b3afa9958ec35c2befc8 +e427a7835bfc0e493add34d70863157e e428589e8ea128f3d32110c1857626ce e42b587d59992b969a8cd8c5dd27b716 e42c8358c081203a6763385628a9f495 @@ -51823,6 +57896,7 @@ e4311bd2bf5a53d850bbef42b9687a0a e431c3170aacb6bc7fca89cb91437156 e431d1d147e322e2bc3ed77d7043c85f e432045f03c7bc97ec0312580847a485 +e432b068c2f834e90b786dd36d311ebe e433af22ba8d63dd6a96a67b3a9f9533 e433bb9f5bfa5873e450ec333bd91f72 e434e96cdf8a8766db72eb322dc10457 @@ -51833,8 +57907,10 @@ e437a5390e1dd84f672256633318c71f e438d559d795c5e2eb377c5aec9c1bb1 e43910ea5c0784a07a6f7a89cf56378c e439c61f1ff26cbf01dba11ca99ca7fd +e43a1b154751ece1d4ad14357ae8b267 e43a8b556176751d8d8f2d55e97c3357 e43c77830c3630b04cd9f41188deb06e +e43cc53d5c4d50e9373efe7f6a4c777e e43d8fa9baee72b0651d4ccbc13bf1be e43de38cd4167db2ebf7e9c31a173966 e43eafa75d8d8ed3d536349c3c93b300 @@ -51852,24 +57928,31 @@ e44a65f0db5f2c3415a9e620e14d7935 e44b2b3c95a06fac2fba5da37addb8f9 e44d0c95fd4f627f350588fd2a86edfd e44e4de9a0d8c8202b9a4374a812c328 +e44f0412ad8bf83c4c8e3982ff164bbf e44f87ac395f9b9f2a248a83a6bbf4e4 e451da44f5324f3cf90fcbd682dbae91 e4524ac9966ec440c16f9e0e37fa76cc e45340763a211b17b1311578539a3bf6 e455819b3ef09873f065d96c1201dcd5 e455dc7efa99c1ad9f2def63de99a61a +e455ed6a85f26a20b584b84e12c980ca +e4560ec419d3fdddd74c91e57765c4ca e4579e5fdb91438821c4a7b87ea52346 e458909a946c512ce1f36935e7b576b8 e458bcb8db4413c7a3c146e1c7a2b8f6 +e4598b250597ef225cc95a9e62ecce04 e459c234d8c2dee1683143e857845aef e45a332c3d5a3ff54cf8bf40c1dbefb2 e45e5e5daca690d403ffdc2ec2f2f53d e4615c412982e1fdbae556a99d78a848 e461800bbd6e237819f0d11cd850d361 e462e73c41673ed96f5753070863c5a1 +e4635cce7a8e02cdafaf4abedf7a9c90 +e464f40c5e991f9df93112ef1f81c231 e466536fdb69abb1e402d6d87da08b41 e466b692dd1fef3a44c524448e01a5ab e4670871ca2c34cc221e4523b12623b6 +e4677ab5509eade316dcc611608b0a52 e46794eb527922914662a729ba4a73b2 e4683927d64c8c14f8ad95ed5b81cabd e4685faab78510a7d41b02ba63707013 @@ -51895,16 +57978,21 @@ e47e13a927e42595422e8e0d793130c9 e47e26c35535295bc0a00cc5fa118033 e47e37092b5a4ac7d3982d2a086ed34e e47ea19b883d0bad1d3b9ae05fd0cecc +e47f599304b3ca737624aab829a2c12c e4802c3a91b8d2ae099cb93725f08129 +e480842720b7a6e72716708875ecd6eb e48118d18eafad8aab2c81dd132f173e e48253da4f84a2801a9182c18ede81c1 e4826bdc33cdb40cb10b84e1162ce0c5 e48312cdfe66a345a0e1d8e5d05dc86d e4847332fbef9c825023525791cab8ea +e4849d542e2890aced5e54b0edd1bbd2 e4851eb89bae0b23fad142e68cc21c5b +e4866c0602292e56881d51d8f4366239 e4870f9d0948f887b99886ff3fb6f4fb e4885fdf7b4e3cc6463464193661a72b e4890879f4a2b8c6af7fe9814357c5c0 +e48a21c5e0121a340c1fd4cde7d75fb5 e48b5c7755220c302359f3244fb744b1 e48d4acca1e518156e34e560aadc44cc e48e66672e34dc6112c46039da17893c @@ -51917,6 +58005,7 @@ e4942458d10835d2519228866275974c e494aa1a639a5400bfec6961d9c284bb e494aa5dd5264b472b7f58ac5ddb4dda e494ef7935e692c16b5a944514a9f5ca +e49570cb7dcb4a3bf841772b0b60b0a3 e49660f31c17acfc5e92de43a23ba98c e49682ee83c07c3d791d5425890cea5a e496f8b4bcca0c4520b30f318ccbc297 @@ -51945,17 +58034,20 @@ e4aacbeb66b0cdd4a9ccb82baf7d6a02 e4ac0d394b4ce4adb2fbd190f9bc480e e4acb8268aa897f97065ac62793ca109 e4ad6ba7f4cf6110c137e09af1d2b517 +e4ad82b1a3d5b36f58f7e9883895be28 e4ade3dd1acac1840d548dfd7e72875f e4ade6777459c98c24df56e299f2813a e4aeb5bc46e1aae267a64303f031ba93 e4b0955aaf1bfb3b1b35da286184d431 e4b0ece06bfcb37eca803f64599e3b10 e4b10ed024111925fb2809ee32cf059b +e4b3a7bd8890dbb4554f186081215fd6 e4b7397e0baf78723737fe74dcd1a509 e4b86c4ff235ce4a2b463dd748c85562 e4bbf972d5d00bb436c0f45325db5ab8 e4bd77be285cd6d3cf7743c5ce102c8f e4bd7f8cad4c7cbfb6dd3276cf6c224c +e4bda1569e206f9b361e733124ed09b4 e4c0150d6df1210c4ebcb8729b453937 e4c0e386178a0031799008958063eea4 e4c23b275462b93916f77b47e2eb88c2 @@ -51965,6 +58057,7 @@ e4c63620fc9bc5cf1f7ffc29c5e5133e e4c7c5d0903bec0e7e56db239e3a47a7 e4c85da362f699c0d65bab4a8547213e e4c9f6ce0d8440755a6f24ae5be1501f +e4cae98097692f968dc1ea849427fac5 e4cf84e6152026c3647d6bea2edbd134 e4cfae4304b36701f22ebe700d0dca30 e4d0c126e1169d57bbb094b7b3f88467 @@ -51978,7 +58071,9 @@ e4d8e3b300f7bb4ac3e16d5c51a7c859 e4da535dbdd477e9b2e7c8aeac402d74 e4da700e0e342217f61826a4e7459e15 e4dac23780f9ad51a82e20b4d96f7a22 +e4db56940479caee5a9755a42e4bbbe4 e4dc6bc63e9fda6d312fcca40a90bd9e +e4dc7efcd5cb40c3c117c9a4a16efd76 e4dcf994f6163f8cc218f6b974bf484f e4dd1b15bc1194f046ebff96cf262fe1 e4dd5090d0cd25600fe2e552edd9641f @@ -51988,13 +58083,16 @@ e4e0b8311c70b524c4f640d7128f863c e4e0f3880d69059ba6cc440487c3c1a2 e4e34898dcc02ec124dae47c007ae46a e4e37013b31f0cbb254a402f75002e36 +e4e5a818fea950769ad05d0a1b638ac0 e4e6dc56a2282070b5f7887821b0a7a5 e4e7f8276d2303f4cb4ea326aca72270 e4e962daca4e0de2ea6888dd284ea863 e4ea4b74f3cfcd4163094e406451d156 +e4ecc5964fac8fd95927048a209be7be e4ef21538ff59ed9a57b7ffb9ea2dd3a e4efd122d7df8054958b86c4b65b6093 e4f029b61888c3b7d70c230d95f9ea53 +e4f1c11b3a8a6d29ebb69a246ace5b69 e4f376b48b987973d7fe7fac18980cb1 e4f3a562531a1a7f2d024f6b1f7c4a22 e4f3a96a87db1a7463e5de431a8fb43b @@ -52011,6 +58109,7 @@ e4ff3f8c7bd5bbcb81005761d150423e e4ffc798d028319aa627d3c28c0851a0 e5006b220f7ff16e35ece89956b31bc5 e500c4471e2d230ae9c2170920bea726 +e50101237d4ba9f744f614864937e960 e501d58b229609034fea3feedc742687 e5021e250460e1bb9a9f576e83e4913d e5023011b063b7c5f6e645b7cde160e8 @@ -52023,9 +58122,11 @@ e50471920608fec75df91865b0d37a68 e50473f7df195fe85c548b6798e5b270 e50732c6462df231e174bfaf0fb45e96 e508a5b1a96202445f2724aea8c672d5 +e50a5688ec47587d80b9f8b446f6ca6c e50adf7eaf606c1ed50f8a5a6906b7fd e50bb5abc6798c3d26b883ebd7fd5ace e50c70b32cbbeabf8f0472989357a363 +e50d25ff071db31b71c1761aeb2f2bd2 e50e773b501f20463d04c5b1483047ca e50eb14a2a1c1e5f44bfaedddbb38573 e50edc7e38bb8c832fb5ba2e39cc0891 @@ -52033,11 +58134,14 @@ e50f77e1bb4acc06d558463be93ee6ab e5127b63ed3dd69583def2afa51fc542 e51345443e7acc960b7825d12ed66bd4 e5134c610bd2091b4aa4377351fedfd1 +e51377224437aa72f5fb2ce529d3161f e513f1ce95e843522f8ae8b1393fd5b2 e514abc7b1cbfa038dc79c012113b484 +e51628387f499a581ec9eed1cd98b682 e5162c313add8fedac995ab9cf094201 e518a4c4f341b15291f1130bea6bbd1f e519b570939adfc0e1ebd66a063cae99 +e51a7be4da04c525678e9049ae039c1d e51aee761ffd39e4dfaed4dca5335962 e51b04df0e4ffcc59c22c85402dc9f6f e51b4faa2bdeb7b7f07e60dee9fd6389 @@ -52052,7 +58156,9 @@ e523971594a39d170232751364543c1b e523ca4f2a0a4f438b94f76dfbca488d e52400409e3e797370f44557860398ea e5245db498c57d67bfe87ab0db5bc86e +e525fa541847edfac86d22e09e7bd9ed e5271a5ca6303e6a00894f788528e04c +e528e8429199bd54ce28e5046c1983f7 e5291749f9bad0b0c692ab8eef89be9c e529d8da74994f35adcb93779236c474 e52a774a0babf849f6ac3d47b8ace891 @@ -52063,6 +58169,7 @@ e530e8c9abb9d2138ba6536f020f4828 e533d3e5a2a1631fd44c6aa8087d8589 e53530f63447c911b5572fd9ed0ad205 e535be89c7e8fe68e82992b672d65ec8 +e535f905f4e5f99e85b1c77e34dfe87b e5391005e9875639d444eb082f2627e8 e53cf13cacaadeafd23dc5644c359053 e54333be78c06261c81519ad04ed2434 @@ -52070,7 +58177,10 @@ e5438a533cde6cbc06ff053a62f60559 e544a490bd0ebdc611d31303c42df335 e544a994a5fde658d99857e4e57cc1cb e545f253a77fd77c6a518a0e71236e6f +e54a2389829b21ecfe121177b592b432 e54c36f969557d3e6af59b71128b37e7 +e54e8fad639a963299915e2719ceb7b0 +e54efcc68204305a2db8cea4abffddf7 e550ee59b9391c3383c2d12684bb9674 e55211fd538fd0e41d000bfac30bf1fe e552588dfa993ec997d2012ce3bf996e @@ -52078,17 +58188,20 @@ e5530bf4f7aef478b7a507df5a532aa0 e553112b02540b0f5f4406af1933a7a1 e553d8682ff8a0632c8f8b84424bcfa3 e5540991f1375e90d365954ed93b581a +e5547cc475ad149dedebd59e2db4f3ba e555e1564c7fa6fda70392298452be31 e555fddf783c8f4fbb4faa3dcdde192b e556b23708272a3b44f6e808b8f099ea e5582725ce0235949634f3bf8414d326 e558e21caa3b400f68df4591da508489 +e558e3b5c78aa4116c2da43a38b6b8ae e55953f230a9dce12901c46db572beb0 e5598396d8e29614e4a722c1503d7f6f e559caddfca8797cb07bed7f11621fd9 e55d432722084ce27db39b26282e2440 e55f70dfefe38daaa5c7b8e3ed403039 e5619542de23dff6d2d2e210d4bf26ab +e561a6237853cb662ca3fcba47c96438 e562c54cd152e5ca0f5f6ee92036bba8 e562db0826f14359a25bf6dd2d9aadd2 e5630278e9908782ea1b5bd9d8d11171 @@ -52098,10 +58211,13 @@ e5662dd8afdba3e70500619d7c48e2aa e569072810976ea6b5356ed9e8eaa029 e569140bfb16594fcf3a3fb939f205e9 e56a110e77815b4afe38b0e5c3b45fe8 +e56cde3a9b2ff03c652d09fd44e78c8c e56ecbcfef35cfc312bafdeb320acf4e e5701a7abfdede9da2624b16ee44d194 +e5708a7b25f0567211a7ef5579b94f98 e5715f466f87197af649e85821ad5de5 e57373a5f7220bc8349df6f32a6eabd8 +e573dceb9d05e1dec07c5af9d4439efd e574ff2bb8658c7d282f2c46bbf9b983 e575311ab46042457cae2fe35dbae0a3 e57605370452e0af2da40029776fcec4 @@ -52112,10 +58228,13 @@ e57f2d0b05788bf9a7d15d3e5271dfac e57f47951cef7efaa99ef69ae42f3572 e57f83b2279d86b6d186570bdcbe7360 e58111ccacdd78b2bc51e19a4c060dd5 +e5818e5ba229c9021b1c8ceccdd6a781 +e5821dacd21774a133c6b533633e18d6 e5851c8d1f344bacb4be91a69497e187 e5857bb977473d70b21cf2ef17dc11ad e585c60321c8beeb44fce427da548870 e586846f5b0d459ec7c720a3febd125f +e58732ce1aaea00c0508f307772feaad e5886c4683346af3fa41da4129b74411 e589904a23de9eda6fce42dc8ab60567 e58c04bf6f955d4686ba264465a0d258 @@ -52133,6 +58252,7 @@ e594603bd7112501c1a68e70cf41be40 e594e276b92a616b5924fccacb16ab68 e5957aa63d9a86d56f5ca715505e28cb e596b23040bda481264e90e9cbb83c8e +e596f06cdf87e7e97d47d1eaef8e1016 e5974feb6e393846a85c3ff3fedbf297 e59868e6281f20d8ee56d76b9f51918d e598ccb7077a803dc3e6aec39cc25eaf @@ -52145,6 +58265,7 @@ e59a9c45d10476a6e4a83ec5595044db e59b678ebb7eb7e293e86a3fe75bc1c3 e59baf214f5d7d289fa5e0548f9e9f70 e59bd31583d71c35e8a98453bd0587b8 +e59f64ee352265236203168c07788389 e5a0edf16b24c1d43717def419fd63f2 e5a361d7a330727718c0dd105332849c e5a3aef3d987e8374f956a3df893e3c3 @@ -52159,6 +58280,7 @@ e5a95f081c85f0292d22d4be30389840 e5a9ab74bbb74660771264dcab33152a e5ac57d47f6120c5c4050e064630acba e5adccd10673c9dd4d60da9649b3ee24 +e5ae760373e3d4748fd513c87bc1472a e5ae834aa20189ae2e289856ea564d63 e5af1eae9adb26af7839687449cb7e49 e5af39eea58173567f5e6d19c9170eeb @@ -52178,8 +58300,11 @@ e5bc25b8b41b570c6ddc0b0b9d84bd27 e5bd6a36d6f513e48762cabe39f1fa1f e5c042d512ea8ebc3850120477735007 e5c0bb81d87fe172ee9da979aa492683 +e5c151f3c33bff0ae7b51ba0b9c7074d +e5c31c00e635345e7e233fee0e565860 e5c5273be422f4188c7fcde2bbeac3aa e5c55d3553215ddabcd387ee81160e9f +e5c61e16652d2633453dccce16a7a309 e5c6c2a41430a2484bc5a1c3d9279171 e5c83c14032eaa0abf90774d0e780b4d e5cab9bb6ef849ed4e3d2a1763cc22fc @@ -52189,6 +58314,7 @@ e5cf58b5b0ab643c8142e1022451ab04 e5cfcef38187f5941bad4d4668a0d6cf e5d028d1720d6fb33d93e71d18925187 e5d291d4104b8e8e108e9bbd25dceafb +e5d3929fc207e288615835519a6291f4 e5d412934b024bf3cca6aa9cd6649637 e5d42598a0e1fa21b4195e217f5e7ca7 e5d4f913ad86dc9f1eca33989eb20bd7 @@ -52198,6 +58324,7 @@ e5d63207b40adbda2fe65799878d28ba e5d6766426e2e1b3f9de50c71ae1d77d e5d6da7f1df02b0397701a189750a01e e5d713022076d899ce83434647304cdc +e5d727cc1e981546a6c26275b595f980 e5d7281230b6779e85167ecb426e1eed e5d788441e7974da9322d3b241e829ba e5d9379f9d402d8c7541dae69de9889c @@ -52208,6 +58335,7 @@ e5de814b51414025d97ea1a8f5790ed7 e5debc22bbd3e9e57f4046fa5d3df3cb e5dec87a70f744931122a16f90fd1d46 e5df7e4414d49c77c5090c50f808883f +e5e012d9425e7eaf8916598fc7b283dd e5e036d668e66fa963e8a346654b45e0 e5e11b2163fa91afd5ca01fbe967eb2d e5e18cc92c3f47666816071742f9ac3a @@ -52233,6 +58361,7 @@ e5f87678c008603becd691315a299969 e5f8907b7d662168af7641a92c7da064 e5f8bc66065f3c046c3f08790f53e55e e5f9779842c967282f4d76f6e203508b +e5f9bbedbff655268a2489031baa3f9f e5fa09f354edda9f6d0f5cfda0da382d e5fac06f2956c25bcc18251e29aa8704 e5fbc2e55f647fe098760778d75f0bf4 @@ -52241,6 +58370,7 @@ e5fc6b77422992b56cc11a82a7eac842 e5fcec949c6fd1da27d5c03fe42fde48 e5fd22770ba4783db878b9b35a88cbf5 e5fdab0994c53495e611cb6727310641 +e5fe2a943f027e6f20414278fa9d5435 e600cccb1935517c56d319f395635982 e6018b235ec221dae6cf18557c98ff05 e60194f66b520228027d063f4637cbaa @@ -52249,11 +58379,13 @@ e6032472f02c18f2caca24d8a24e6015 e604ebc336de0c5c0ba2c36569881b97 e605e2e1e32a1fcffa833778cd1d5a25 e607259765655aa1498e0d2acd11b8b8 +e607b8d539209c1f21d2ad200acfc625 e608cc266226c1b2d8990527edbf4d69 e6097d67596e53145a04234c7843b470 e609fa44a43e803b3d526478a91c4798 e60cb6a5e50ae470d36a89056bc6a077 e60d782e1197015b1d973b5bc8b23c7d +e60f25b40672251d6988535f88719e1a e610a94ddf698913d6b0b2297f622223 e6111a6d7c197575200f51d3954e8d30 e611a01d8802c9ac525627170c3e8d13 @@ -52262,6 +58394,7 @@ e6127d5b643fbb761f7040cee4403cc6 e6143425ef530a1509f470c5533001e0 e614868521da51859786eaead8328701 e614cda9ecab03d8a4773a333288f2ef +e614d7b82bdbf3fcc413889ac4b94d63 e618bc0ed55a72d4020623d86b283e39 e61a4619ddeda8f3f803675e9e74884d e61efb00e62d673959aa2cc3349450bb @@ -52279,6 +58412,7 @@ e62bf3a612174ebfa9efce9882e38ead e62cb01c0e3877ce6e92e0c8a1911727 e62cf481753b2900b594db6f1f1df99d e62eb760373845a4ca9a60e5b9bef647 +e62fc7742858da5ce20980c0635a31d1 e6303d5059ca664d624f7cf4f551c5ad e63077712c3878a0dd9086bc4d8a324d e631febfb3647f56ca9feb930e35a7b7 @@ -52310,10 +58444,13 @@ e6498eeaa5a9d1687d319bb25e9e3953 e649ca838e60ec3aeb21ed539a8e2bc8 e649d0516bfb58c566fbf6fe1df04d5a e64ccee491e84c2309feb649b5b151fd +e64dee64db8c87076e86405f70dcb188 +e64f07e5c64bf3c6c61f8d130dbc26e7 e64f0a44d5ada135dfc7503d643c273b e64fbd890c45339a538f93b11e443c2c e650e0c7ff9c8cebf76c901dcc0ad52a e650e97ddfa862d710a7fb0c00e53fa9 +e65180a197779c448d31421b192faf13 e651ae2ffebb4deb93db330c74653522 e651e85e912ba417c8f95d47379fd667 e6534a249b92b51cf1f12fb8ad87a60a @@ -52337,12 +58474,15 @@ e664351a8947373e7ac1b9dd90ac8a58 e6659adc8995d82645f6617a0a2953ad e6662602c39c574bbe09e72fbea71999 e667414429cefff03a0663f44641355e +e669d08dbd5e9b0657a93da4223fce40 e66c36532ce79b1b2bbd1d7cd067868b e66c3f98d6f04ccb3aec0c9284500e84 +e66c99181815d257dc6ef68ca9783b06 e66e300b455bcfdb8892b5a3f42f79d0 e66edb4ca7b78823b905bb2b93953c12 e6705190cad4fcf2aa92f94e99205e38 e6716f9f3a30a631a57221748d7165f7 +e6731795c72e17acdf0f5088754658f4 e67317a6623be87268d4f431f050530c e6734fab79d6b73478cdda9f80220f2e e67415b06b28e53fe741dedcfc55330c @@ -52353,8 +58493,10 @@ e675a5c8b679e4060bd2637a7ab0a73d e677f6472e8d6a41ae8ed9a9fc6d0835 e678936b353ad390d2514bb72482f834 e67c208b696217bb08790fd314664ee3 +e67c5b38880b59ae0a632682ddf851eb e67cd7e2b182e1d401549036575d2980 e67efaabf258338ee3a007b18344ebc1 +e67f320a2f8b0066b59bbc3cec0ecd23 e67fbc4dc005e3ac4c8ad1fa56f4cb95 e67fc72adc0d8e6085f210fbccc4ac00 e680373d27b3498a4af2fff2e060a6ce @@ -52372,15 +58514,20 @@ e687f003229f682d3b63aba558275975 e6895bdd4ab555cac0e088f856c8fcbe e689a1775227cae6657b762f62520934 e68af299d861cca9c55b5dcde3825e50 +e68cc22086582e67b7bf6a6c6f1e429d e68d39b0a70f7b07e6c8ce8cea861833 e6907b6656003c7cc4ba9c940df7a432 e6917ef937bab747b75f8c18e8e7542d +e691a07a97f57aa890e2087354a24009 +e6938efec1376754fc21fe725c6f7a55 +e693d397315bbfeaf63ab92f006345f6 e6941a00eb3b15dc874645b744b4ef6b e69468bb91083ed483ac4b4cefee8e1e e695fbb6a0976796496b71963b8b5564 e6966c0bc8e21b21e90d32df3b1abc00 e69761ede92373ad876e59bedbbdf472 e697953aacae26cba5341a9bc8863434 +e6983fcf16927aed95a0b00fa23223fe e69957ea58f528c21c56658eba1da40b e69b6be7b402490c1dbc030a3d006f4e e69c10ca216523327a74ab0a49da821f @@ -52401,14 +58548,18 @@ e6a6d6895cdd319eb8aff36a163370ad e6a863173938fd9ea21d418667fa4da0 e6a99510fa7392ceefd191079a91a82b e6aa96e6b230548d82d48417d94a19d6 +e6aaa0cea98c94db15eb2da5f9046bc2 +e6ab450fcf442e077f8a9bb3446edd2e e6abf3896c51c9ec3bdfd64133c61fe4 e6ad46a4b4a8002ef9eebd0dde8c74a8 e6aeaa7074811c9f0be6276ef508346a +e6aecb82e1eb0ab7e8dc5c692d01fb87 e6b13481dd372af1a7898a9c04cef65a e6b2bc27abdb06837da8ea139c20dc46 e6b2e91fa3e6cd805421d58292d196b5 e6b3dea55ed1b04d58491f8b8a57d872 e6b56b87b19ce0d787e0afa211ca9224 +e6b613ba47c688220ce7e72f63a3cf83 e6b65716f852b53d1feb5ccb39acddfd e6b81415c6b95c0f08caea7ee3b85025 e6b82e629be468016d634e03ee35eb97 @@ -52426,15 +58577,19 @@ e6d0325eac8a0f8f2c3dd24eeb697637 e6d166f471caea8b2502ae7bfcd18786 e6d230aa576c6c0cd3e666b1f7c7cc9a e6d34689d17d5455e573f7325b929f22 +e6d34cabef0613abe8f841ce6768736d e6d39122bea94a1cfff9267b67d5d3bc e6d3a9ad43736a33d803097a9ba5b2a0 e6d3c2064cafc85de6746a1d6cbbf572 +e6d40bc22100dd6e7c14a70ef647b475 e6d4160f567bc217001f5631a4854751 e6d4c4c560bb4fe833531ed3e590b15f e6d52ca2c7384ec4685b95567dfe7659 e6d55cecde10ceffd3479ec69ea04862 e6d580af8fe4858e318728c77f1049e8 e6d7d2133c68c24cd581e95357b1055c +e6d9056e3913f5e20f5b700c457e4d3d +e6d96e94c591ece0587a05fb8b007e1e e6dc91cb4cd87709f22ee98e43c53602 e6dc9bbd3f57c455137f34488ccd5832 e6dca62dbe7f6a94a3945d2f39300186 @@ -52445,6 +58600,7 @@ e6df2c5744d21a9d619d7d1a85fa9687 e6df4435b64a9c99438d3e1ba1c95630 e6df6feefd00c23ce4989ac9010b7292 e6e072ca610dc3f41e2382da2c1bdc87 +e6e1e67a539ede388cfc6586235a73d3 e6e2e1cc646ad7c3a3656ed329a7a901 e6e5242ecb8e0e3536727061b47cc8d5 e6e6b9912d2d4c7451e3862bf0d4ae58 @@ -52454,14 +58610,19 @@ e6e7fa411917b0fd53e5d2709ac18088 e6e879f42a76206bbba9936b3946716d e6e88c77d4ab689b977d784a731bbde9 e6e9e97801f4776916acc0c52dd6031c +e6ebf7140554572e6edb15bf8fc59d6b e6ee12351ded3ee8602945fb0a518203 e6ee9a5fefe704f3fc3daf4f05720fa2 e6eeb42415bdff73ae6e1a1b9db1ffe2 e6f2f368354b15ca7e4ab0d75170d196 e6f42ded66b2e659e14f67552bed7135 +e6f4cf703e569443760a83af9e05d6eb e6f662711261efa0989ecb815185acff +e6f8635571f80306fe01bccd6fe09c3a e6f8ccb032cc9f75b5910d25aa499b1b +e6f94cbf2b1592af3415c64c3dcc5854 e6f96ef89cf8505dbf3de52b18462d5b +e6f9a1fc78888abc07c3e20791aea4a0 e6f9dbba94ad6804171f2bd740a60923 e6fb5bbd7eee3b2ada7563e6b1e4e5ab e6fb8b7e7c69bc4db0d430b1115e611c @@ -52475,6 +58636,8 @@ e70257d25b2ea1609f5efc4927e27b72 e7032140337a6f90d4567d9193331290 e7054e1c80e3c4c94addad4a0f57e5a1 e705892c173a8c1a26114b7f19d638ed +e70906d37ea76cef9559a2e74b97a740 +e70a46a019c919544eef7fa4be7f0f2d e70a55ec6061c465de69646a0423d2a9 e70b68e1145fa2e24186bad510b17f2d e70bbd59a1ae4e88d43355ae110466db @@ -52490,6 +58653,7 @@ e7138337ce9f8f6841524e77f521e4a9 e714106ce672c954723962c13449e040 e719ba244defa8d1064b57d49d06e268 e71ac77eab6c53736fd945791079c708 +e71c4a2f8304e6aaff4d447d8235019e e71fca1df1a3c43a2d4437723dcffd38 e71fe4daf05577f70c64fbb693ce15fa e720838447f6b1346560f9bfc9e8edee @@ -52543,9 +58707,13 @@ e752ad5fc57845eb9bbccf0c3a3918a8 e753a43b97b6cf284bab43c0d16e5acd e7543db3e60f1a63b5750bf7bd13809e e757477a031aabe890b15275942153b0 +e7576218edf39a07d6edc1f117ab75ed e757d3ab626bc007f77d0faaba80c7e0 e759f520d150f0460c4c619f6b21c663 e75a91d7cb1febbbb2f47c7a8612cb06 +e75ac30cb1656be1e121e924358ba49f +e75b0649fa10744d51bd68d4e28d2a98 +e75d904d788274fc58400314b0b49447 e75e39b584cf262668ad9319409ac8b2 e762247960251a8018893bda034db5a1 e763c372699b4eda1878d3af1a9f4f07 @@ -52556,12 +58724,14 @@ e769ba9a3be05cf9f6a115a3e6f262bf e76a3f0f39439f046fcb16c2b1c422ea e76c3353bc9edb77064735033f64fabe e76f242e5f3c4c000063421313d9f2d8 +e7703c330fab781c0bb17df78aa96283 e771e0f599751c6709874426e8f0ecd1 e77244eb3f31876eeeef6b636aeabd86 e7732af670ee625e164d11066ba042fe e7738d58229d094e990910e663ea442f e773f90a0f47007b3f8c7869ca2009cb e77499ce622435d80b245ae5ddfd5a39 +e7752398da2a6071cec7fa16c1b416b8 e777cebbc6c94146fb773c5a73c9e0f9 e77a0fe6aee9db67a545ddfca3b870c9 e77a8f405731be1f5c7d7e8b1b8788ba @@ -52582,6 +58752,7 @@ e7895be151666b9e36094d0d971e195f e78a653fd535933cc0e2b93d3874180d e78e1dcb5b50be9a5f5e013af70a0a1b e79113deb59e65f751b52fffa67a2efa +e791fb650071472af81864f1511aae77 e793a6ee577cc1efde7b81dcdecfd036 e7955ad6fdedb42e60dc9e31ef94def4 e795ef8af1c92fda2be6402e1e7fef50 @@ -52598,6 +58769,7 @@ e7a079e0fb75a87a50ffbbc525f0fffd e7a08f6cb8517dbd1f5acbb54f85ec76 e7a1cbfb8f0515416d2b4fe227b1cdcd e7a204ec02102b63d04eb8c43ba34cc2 +e7a2164ae3b6f7fa4b83f207d62ff516 e7a34544b2fbd0549a059d63c54386d7 e7a4382d7f3851aca597c59948b3a0b5 e7a45dada3812a642c8b5a419e184ffb @@ -52608,6 +58780,7 @@ e7a7358da8a5ca6ce0f86f283209ce5e e7a96b5dd4df436abb38c447a5d0221f e7a9d88b3bcce0d985806741522aacbb e7abcad2ff616b3f71794cba2cdd61f1 +e7ac8f836cbd33bc3b9122f6aba8d8ee e7adef5d8afe0a4de46a2baacc7f521f e7aedab18c6d877ccb2c89a625c75600 e7b1133421680e8ab281ec16aa2e01e2 @@ -52624,6 +58797,7 @@ e7c0211d41f595177a08440181411d9f e7c1c32a9e4c0027c390f589ed274450 e7c353325464cd49ec33a82c7be32fed e7c59dffd86e3b52e3d249594ae50f1f +e7c5d1407ef31cbe773ab6d010e8a6c9 e7c6100cca0ad0ca23a4f78bd6ad0ad6 e7c698826b23d75ddafdd29c541fe835 e7c769e1455baaad5f875c0a91f945c5 @@ -52650,6 +58824,7 @@ e7defa23abef2a7729dad2d176e6960f e7dffb2f4dc326d0ab67ea3ec258c690 e7e10a18b2c313038a3c2e2ea001ef18 e7e1b2ed6e36138995e7d87d21ac3796 +e7e1f094dcaa1b92a88b2eb844505ef1 e7e31374df53e748f433f49dcba29491 e7e44082ce91990e2ca1d1fdf2997673 e7e5993bc230140cff23adf73628f0b7 @@ -52669,6 +58844,7 @@ e7f3af90d4948e9c8520261a473c0640 e7f460706167da81d5ffa64de90239f3 e7f506aca91683427915849f8542032b e7f5113b577fd6a01a994ad43de28bcb +e7f52bc6c7a4e9672280c5db065ebc75 e7f5f16df5f58849ea7f091e7eb26306 e7f8e98f5d0d474991e752818c29a2af e7f94008204ce72f946231c93aaeed54 @@ -52685,6 +58861,7 @@ e8006ffb5834e3a4b211287fa351e3ce e8011d85bd328ab8ae6f9b1e450f9b7b e801865f09ee0a2c223a92aa1899a629 e80221f3ee26c55625f0643150b4178c +e8024d11ce0ccc9beb68103e65250297 e802d2d1e17d864a8ed83aa92ac1ce5c e8030028c621aa77aca29c0f92318570 e803a3ed9a891dfc4aa6cba0f3f88138 @@ -52703,15 +58880,18 @@ e8138a6dfb42a9e7a73b667dc321f3bb e814e27a559702e2d1d863a767bb41a6 e8155205a699d53ccd4dc6530180212c e8170b6cdcdd12e0052cdc2c12085d70 +e8172680f0e6e3fde4bdeb1d9caa3ae5 e817d457e9ebf91de58d06282a40d8ca e8187019d904ab2a487e053b3aa1af3d e819060a92d73bed455b321c84f53790 e81b8f67718f313573c6ad9767acce18 +e81bdc162e051e4e9543ad6a19f28867 e81c86997247a8a68e39f7e81a6052d8 e81d7549f97eab82d6363b0ca3edf1a8 e81e87d34bf3fe55297305cdb0add201 e81f4e423d9c5c7defab9ac982624e7e e824d5a55f62fc2123d90ef5c407d590 +e824e3fd117cd69c33c926bedac31445 e825b0b0d0308d80e127d942bbb699c4 e826350decad7c086d4bb2c60beb354c e827a3fe19ae6e8b341970aaf18f7351 @@ -52732,6 +58912,7 @@ e836511f20a22897dc40cb3bac58c878 e836b491fcdb16e1428df59a8ab0ee59 e8371b4fa3ba1474567387de5ed5e15a e8376e20c14b8618cc01d35b8a29c34c +e837deb5132b3fb7c25c2649a0763a37 e8381e8576911159830a1c235542813b e839e84d44f6b0fa60e8e1b36dcc2a0e e83a214dd89f4b726e693dddc9412406 @@ -52743,19 +58924,25 @@ e83f32e71007df0debcc15ed05127c96 e83f557f7715b00ae301c3bc793e787d e83f8f6542496e3c9a783f4d44ba9d5d e840d04c3892abed49d0f1422ec54085 +e84181a5c45c83ecdf4478d5ad96741d e8422555788941e2e3ae4f8fb6e0a564 +e8425f874ea093f6e335d10116bca851 e84284b924c2c15cd90d6bf00aa254e9 e8429119d8c1081609db3d227e7945ee e843ea49f3b248d3e4938c16b8acf6d4 e84426d4f9d77876d6d6bd56e6c67f20 e844719304f302d78eb621cb9b565b10 +e846d10769bd72d9fe3cbe3848fa21d8 e847147b25afb9a415b31aeaf9ef2833 e84974626bf31c21f3ae67ea1a807184 e84a736d8b28a49d9753983df14b3988 e84aca35c833f05dadcfac705fa64ca8 +e84bdda22410fb8f6cea108cefd5e817 e84f3c7c3b21213d2ea4e8d4012928cb +e850162b7f0eae5ca174959ba934ab3a e850a08ef8b90dfc9ceb062c68350556 e851a7ae33e07ea0e7e2f380ec11593b +e851bdcbddb091115ef03484b521c0c9 e852e5a5d0bf3a364f45d2d036392690 e8534731d29418164f09f88d9b4c0279 e85391febf2024e47c544d95c918785d @@ -52774,9 +58961,11 @@ e85ce98555b4d8cec3cbab58559eff5c e85e55d8fbe35941c8170e9a9f39b410 e86117dc615d9f215e946bb95462e6e6 e861e9f892126ae2e0fe446ca960d4a1 +e864384028ddaa311d52da61c900b360 e867186297d9b15372df8a9aff940a20 e867cccd157af52692c642883d43a770 e869b541871a217223b0551412b1909d +e86a61b50a2431c98e46eebf5b812aed e86bcb278475d1f98ddb104be612bbbd e86d1b2238d2b8bd3e0814f8a956a72d e86dd9c1bbe13dd562da9d808fbb8bf4 @@ -52784,15 +58973,19 @@ e8712d537ce74d94cbd88fff78542a26 e8716c7f1d201ebe7d1ee159be86578a e871f62b7a18d47428c3fa737511fcbb e8721670b01949bb886a1cfa51e1dbb7 +e873658b81b1817cf0103511ae4c06ef e8745e11a9ad9d498097d552a95a623e e874d7017e2143fd352b2a5ef35d5791 +e8767387ddbc839681bcf6996daa5e0c e877bf7a63eed77436278ad22731337f e87bc1bb55e2d0f2d3d02d81f874fd22 e87ea18e1d4386bfe53bbb0cc8f46eec e88035056a27f023a799a9ee7246edbb +e8804cca1e3a4a9704c0d267a414d4e0 e8810bc91563597fd1731562312d0a91 e8812011465443d639efdffaf72a2dcf e882bbfa8ba5463e7e2549623318a8a1 +e882f8945127da1008127ce111e2cd61 e883e87904754aea2c5681b704167916 e8844d90f1cfae4c7639cd28a45960a4 e88453586ab588908a17e5b3ba6b9b45 @@ -52813,11 +59006,14 @@ e891f580c1235aafd31c4f321c5d89db e892d82bbfc557a3d05819a40f0f5374 e89326d2b5421544cbacf88ad88291fa e895c7eeca2bb966ed9b4c11e274be36 +e896917f74e9c1bd179f033ee7e07dbd e896a22e7fc8263717fc4d86dde03156 e896d81f00e3ad7cba49b8e4f83d9cf0 e89704c4b888732c578b5ace5060b52e +e8970f9c09ea45cb4a69a90b6ac0dcfe e89752bb76e60fb49311d49fa4ee1a45 e89beda6b98be326daf9108e30eb31b5 +e89dda0bc7dcad7788bf4a0ae0279401 e89de4bd3e47ac1b2ac44ff2c09d63b3 e89f18f0e6dafe1573fbf92f71efd8dd e8a06bb2bb32f8a00e296d6dbdd231a7 @@ -52833,15 +59029,19 @@ e8ab089ff59cb0b232970e810562bade e8ae025149d061d4752b5e2bb17fe953 e8affceea88cbad27f88d2594c233314 e8b074752055a509d31bf7385f377103 +e8b1a121e38630098dc54ddc6c0f039a e8b1ef1a543894d5c9b4c15912ce3bf1 +e8b3079bd581d2d41153d2b64ec5655f e8b3821e1f0721d8d16f2360d4fe8548 e8b4c8eacaf555287e681f821c685743 e8b507a3f0abb142fe305be73ef58ded +e8b54d97033e4346060c2ad9d7ad809a e8b7ebaeb91c3099be26acfc11168542 e8b830b873ed3d31d82d34aa50cac87e e8b93e07a14e7f03166a2addbbff1327 e8b9c6bcf25d1e7c7c45f07e4cfde83d e8ba003ef8549e909e75465205d75874 +e8bddc3016153b787be2c580eed387e3 e8be95f868fa967b9cfc58b3f735b51c e8c04115faae06487fa26f4f104e9c39 e8c202036e90596fc8db6fb31b76720d @@ -52856,6 +59056,7 @@ e8ca10f05cb76b4d213099528aba87c2 e8cb68850bb5e1dd443e2c52eed52752 e8cc173e5df5bee433fa2dd43913c34c e8cc61d806c97560e8a8a157e26ff0f4 +e8ceada409cfab27013eced4e281d49b e8ceed171c41d07c2786bc69cad1f7a7 e8d084ac879b71d7e7fa3510a98699bb e8d0f6f6fd7193aa4f6827982cbcf5ed @@ -52871,6 +59072,7 @@ e8dde1420f3cb489792b7756b61e61b0 e8e13cc9d2095b1d388f81840d090ff0 e8e2fd16d5852493b20861d883c7ef65 e8e38106ee3e9082296158f19442859d +e8e413b2d1fd45cfa830acd371af3526 e8e55d320e5df5a16d3d66f2852a1d46 e8e7b93ed30f817bc404acfecdf548dd e8e811332d0125c76c93c355e9eb7fac @@ -52881,14 +59083,18 @@ e8ecd0380d1bafaf0b796536d7c7fc67 e8eeb0c6a12a4e19ff302ff8f33c7d18 e8eeceb162e8213648d912dfc17f2a16 e8efe4c5857fc6176e0dc17a917a7668 +e8f24b41e73a8867dbfad5186724bcfb e8f2787699a7e016b73daa472cdba65c +e8f560420c192b1175769f079d2c9447 e8f63424ce9a092b5758a9959fdd1286 +e8f6cb72936a308ce4a5ead3e4d0cbf2 e8f7abc4499cf72221224d44618306f0 e8f88994fcabfaee9c6db1573f9cbb47 e8f90bde97725e50ed9f34c1ba370e98 e8f98ca2ed90012cf3c7dec4a81c0d5b e8fe177d3d6677caabe2034e4626979c e900c39ebc621e45b320082538d92950 +e9033cca673c2bd69d1b5928875ff596 e9038ad02ebb9242c157867b81dea2e1 e905919e924530ceccd375ec271dea65 e905b69a63d4f8a9fa86061004623899 @@ -52905,12 +59111,15 @@ e90d092080f2c2a7a83fb660de81a5dd e90f6dca7a231827d4fd12bf863b1df7 e91067f0de26adde7d447a0ab8ede7aa e911a7093e3d6ab250f1468932599d84 +e9127a65060d3d53e0a52c3867d29698 e9128d4fa22046799efa7de7956b5b3e e91313fd91feaad254ed23070a7c0f1b e914187f618592e8d854d2c7dd78cee7 e91457e7ec0b92c331c5999fd738690e e916917a738f20396c645d8020b72b76 e917a1b18f4d92a1d0c7bee3d4853168 +e917e4ec39467c4a56e27d91ef4d2d61 +e91874515a0cb835e866cdcb6b5a84e6 e9197117f11bc6da80c175b6c6595207 e919ff42d7438c78c6aa15063cfd8d8e e91a144d12b885df10c77375b6d1e0f7 @@ -52918,11 +59127,13 @@ e91b27d1af041bc80cd2d0bf3382cb36 e91b593dc41289b53df8ffd7e145baa1 e91c277b98b3df4c0ddd5baa1eb171e2 e91daa181aeb5235f572a0fe859c9313 +e91e1acda5bce14501cb803b89f28132 e91efd44a5e79423e44f7214be1856db e9249e0f1b7b1f2b39118bf40ba64e58 e924ef3c2fc3f189a04e665b33c7d248 e925bdcaac5f0607cea5e23fd1521416 e9267869932b3de33293809b139d0ae9 +e9272b360f797cc61c95594e865b14b1 e9285a5b983c8e9f2e7d7088bb16d618 e928e80e4ec3dad0c7a8a2b6bb27c6c0 e92934cdc8c8b6c1f97c1bfa28afa1c8 @@ -52933,8 +59144,10 @@ e92e8904723d569e2eea8da89b9192a1 e92f8796c663c59ad6604823d729386a e92f9311d908a4c041a8d18fe99fe6b6 e9312a98e00a8f4ccc9a6e5e9f745b5d +e93209d5e82c55accc9910e44f4e48b4 e9331b1fab3ec9666dc7ef7efe691883 e933c38035d015de47e0b651a218780e +e93754fbe565c22466265c2b705662d1 e937eb2ddbe828c9043ba41ffad764f9 e938857393c688c52cf3627772ce0eb8 e93cf88166769336159acaac831a330c @@ -52943,8 +59156,10 @@ e93e2087a31fa62b587397b48450c3f4 e93fe34e7ee155c79fa27171ed02da23 e940bec14d460d7a7f198f5d187af64d e9416ba3275a47b24e1a4797323a37fe +e943c63bc24777ac527bae4c69d7ef1e e94468c8169b0be9e4a7e6c4ae0aa775 e94770d16edaae92b154e996811e09b7 +e948ca77c97abdd10d85ea042c2e0af7 e94977656215dad305cf0d28463d9862 e94b9a2e6e1304268602630e421769dd e94be82b25bd4a9a6705da0e0df63de6 @@ -52952,6 +59167,7 @@ e94c3b4fbe37e33be6a2b36d79a9acd0 e94c64ebacc8431baf9f6f17c9207abd e94dc5723d808e8c407dbd7a67cfdd26 e94f0dd8d9be7ccd88753be53f77bcef +e951d06693ceb223a19f3fd395d95cd0 e951eb4448f5f6934f502eeeb621575c e952fbc0749b8af931f0db3e6ff0248a e9543444527514c6e0324f1172f4ee0a @@ -52977,6 +59193,7 @@ e96845ff7c99ebf4220d41ae11209e4c e969b504cbe54a2537843d36d8e46ec4 e96a7888e7622a73de252b96102acfec e96b9787b8ac6fc34488f0a658554bd5 +e96d7895a88ef87d2f407ac01fe3f526 e96d9b0ad0c994c08c8a3b946a3bd5cf e97043e078925e46a1bbe4a9f75a74f1 e972448c57ba49acb6799af2b9dd63ff @@ -53006,6 +59223,7 @@ e985e1b9822d4953a120061da6590d2a e987690ecb0d79388434e295d7b365e9 e987786e87d81707da44fb4ec61c2de9 e98807ad32cdf7e06a45ea225c88d485 +e989735d3c3cc47b0f0fa5efd136b831 e98b831de3ff6d5b3624db5b4a22b088 e98c6cdc3a2149532e50c87b1f462596 e98d15adb06e4361abd787fa196ff628 @@ -53033,18 +59251,23 @@ e9a7baf6c97e4f44fd3f8d71b28f8b07 e9a85913a527412c129cddb23d5a3afb e9a9700e85d5cb1ee7a51c3e271b867e e9aa8b57e4f68d352d4b4bbac7c1617a +e9aa96590caa9398d0677a7951680392 e9abba148572d9999962128f92578e94 e9ac8769715d5c5a92a2fa5b6532d24d e9ad05b2506387b635f12f212ad7e87d e9ad3bd3e05ef6016d774c6941f34b13 e9adbd0f209d4d67f4c3029871acd332 e9af63ecbb7edccfa364cbd6d3803efd +e9b113dfcc965ec9b7abe2dcd241a958 +e9b3760e41510b3254232910441ccb5e e9b5d26c1d1f5e5c45aa0f7290477992 e9b6549d63e2f6bb7cc800bcdf483ab8 e9b66df100a9826f2090cbff204f69e7 e9b83482bc8aa0fa0d23beddf2ed9836 e9b8b37b53d149465be57f820dcbdbcf e9b95a833e71fb9874c16e82f9c53a6a +e9b999c96610a9f161b07085cca42b6f +e9ba44bb3b308a1b3d0bed11c713250f e9ba80a2dd82e63b972b6dbdc5865c95 e9bbe021605b0fe6cd94208ce51643da e9bc3abe89dc19399f70405449767674 @@ -53058,6 +59281,7 @@ e9c175d9d7d4cfc073c2a991987c476f e9c3606fb1a0e8ada999bf825c399451 e9c46256e11b450478c7b677c3bdab3f e9c58211f982922acc679fc370d05ac7 +e9c60aa1f47949864add69b5057848d9 e9c6361f6400ce0d19548fa500c6df56 e9c66b9a22d79b17ee8d727027143f6f e9c76eda1fe39b8c94d8610ff9772259 @@ -53065,6 +59289,7 @@ e9c79cae85d203abbf587539e66e0448 e9c8904c353a0a264143f82dcd33126c e9c8d2e0c015ac55afd061abc33a4283 e9c90f0235f950010d30553e05d6bcd9 +e9ca1d130122cc7838ce631788f0fdea e9ccbf8f766f366e576c806af834f73f e9cd4d9f3062579cc3b65aa2d984498f e9cd4e3808b1ae9eb3786d4bed8f9748 @@ -53073,10 +59298,12 @@ e9cf455f4dae397fa8adccb5d0fd299e e9cff36c095efa03524f946683f81953 e9d02528e5c3d44d2e412bc9c0160048 e9d09b7a3983fb9ed560aad6fff7bd42 +e9d143a05c980e28d1c994b68ab9bd17 e9d1947bbb0a71a510aadb64bfec827f e9d1c534971f1a2dffac073c3ca272b9 e9d22853b35bb190760dea3d58630c7d e9d3a3515f8a98f06d0539c84aac522c +e9d5d4b26909967622a946f207aceec7 e9d6486058f6b71ef53348f304a2674e e9d94f47df4eb668e9bb02c5fdc3a7d9 e9dc169abd52e93e49a519155be79a7d @@ -53086,22 +59313,30 @@ e9dda6cdb928339e4a14e0b90887f2aa e9df1c0629762a59f51ea3e17babd3b5 e9df62d5f08229116be0340b0453bb15 e9dfa9b78c21ae5c1aa50832415ff9ea +e9e00c3d60dfa60286a67116e1a6cda1 e9e04f85b35ffeb16e62dcedd5599527 e9e10e33c505ed03b4c679cdab2cdf4b e9e17232ad119002f31b79fc7b5c4509 e9e48c0bf3a466dcf9bebe3197b7b86d e9e4b7a439575a9829852402631a37a0 +e9e585c72e1419f2369bbf0c78066d36 +e9e5ac785ad366c9562db7bbc692cffa +e9e65ad055091b338040d4b7e8b0a5f3 e9e77f48f0b7e73bb707d198e8427d16 e9e7ea9f43bb4934a0b93e2df98c92ef +e9ea2f6523232cce4c09a1168b9e951a e9ea519c865aeef99ec31ce484c8d6a6 e9ec757a5ddec0928efa1715376ba523 +e9efccb0d54c98e5b0deb9e9d032420c e9efdc2fd514d20b5aae682946ebd04b e9f297fe8ff52304cada446d36869417 e9f33e87a3e68119e46f27a9d84767a8 e9f350b23ca585e38f8a9619596486e1 e9f60b81103fa0fcc9d1e467be9d5eb7 e9f77ad815237b5fac57a01ba3e752bc +e9f7a47b3717eb05329ea689c98024d2 e9f9dd02cee2df9b11b73c962e92fae9 +e9fb4c56089c816982e96dd92127fa1d e9fc79726c8624b7c1d5371076620cb3 e9fdf914c5d33786b7be914b23832edb e9fe46a4929278ebaa34e2e1e15d1a11 @@ -53113,6 +59348,7 @@ ea042f2a741a247c55fa04777a8ba6fb ea0485c9246ff427d41622da445c6380 ea04c83f3917a2161134f97ef44bf4fc ea05c6c40ab0071e1768b590c4c6524c +ea0897d25f8ac7d51716c3a77a991065 ea0b238da8aebf259c3684eda8e73fd0 ea0d647ae0c2a259c33adefdb2f085b3 ea0e7a20260cc6956e5de6dd8949b41e @@ -53123,12 +59359,14 @@ ea11ffad27d06f50130dfb5387f2aeda ea1441fc6d5a3e78e97b7e9bda71db45 ea146cf3ca918b38f549b09febd9b359 ea185e0f7ee1d933562544be283a0ba1 +ea18e7197610c0b1f6075a7071ee8318 ea1a2bcb9141a99137ace227028485e1 ea1a9812069075e441bf4db3d2752692 ea1af33c6249b5d9fcd7acc837087620 ea1bfcf009323f448539f8ed24d2ab77 ea1c7732b2a3460770ead4e9f3c20f12 ea1ea0fe3995a95bd9467640d384dcdc +ea2181dd52e0156939c46ce6f27fc9c3 ea234b95b71cc353b787fccc64bbab3a ea2418453e907f62815e5bf24c61d59d ea24df5eca0d7807223bfd4fcca84574 @@ -53137,6 +59375,7 @@ ea26616ca7985c98ecf1ad6c655b0863 ea267b27a35199b8da2ed8db0c3b94e0 ea27c0adc1da0a7b3e6b1929470cc7d5 ea2856c49621ec9ce32a2821e7a0f36c +ea28ecda7d19380353b1d510ef70f78f ea2c9c5634047403bdc7833d1a4b61ac ea2cfb5afae5e69fd75f86fec9bae87e ea2db0980f6d93a924903dc428b8d249 @@ -53147,10 +59386,13 @@ ea31fef43efff88584a8ac8128df81fe ea3303006cf9682e6cc92d1353c9d924 ea34523fc72622684a90d8618750e1d7 ea34de6088bd74da90904da60bba5c85 +ea35384758bab007f9fed712ee0a9558 ea3572ebad77d86156ac9786934f7418 ea359305a42de000e7928dc4e1a8b37e ea3712d3468796d452f4163f43a169ac ea38743ba63480360fb8818402a8c68b +ea3a8b188322fdf5a6ec5ccd10c74c08 +ea3b91bbdea7ef6924e5398c620a8de2 ea3c074112dbf10da1bd354daae135a9 ea3ca563bd1d5156a1957d5146a79801 ea3cd9594a222cf560cec820d6b21e4b @@ -53184,6 +59426,8 @@ ea60896e555fee046e7793970c37106f ea6218de12db3ab4a89b19eff7ec80f3 ea64e480dd6b8fd9ee0fa24841de6711 ea65959bf5a716aead6fba13f634aaff +ea65f44a040c95da9b02e317cd95ce16 +ea687bb8bf3f90a2c4248133358ea37f ea689783df8b5039794bc3453b8a431c ea68d8c6971860464da998657210aa2c ea6a05770fff7ab7da01a32077b8af35 @@ -53193,6 +59437,7 @@ ea6e484204b38e74bde041d061449be5 ea6eda8123bfc36702a8cc1072d054b5 ea6f7a09b10d40e0ff5eca29bd1a573f ea711f363601620329b55caa63540add +ea7241bb8fbabe2c712e632a218e9700 ea72e0d8103cc3219da363b7c91ffd77 ea7389994b09372d484cfdfb67942b92 ea7418c1c5e105a7bd3030f94bc0e4c0 @@ -53205,7 +59450,9 @@ ea79d5ad84e1c8922ffb23b90412c4d1 ea79e578018e44592fe584d486cd8572 ea7af764f8f1bb49c938a9ad0509764f ea7c2e578cfafa656c126719c8a3dfab +ea7c51a4acc4ffef1d3d51048555aa55 ea7d84de9d59810666f0ba4a260ffca1 +ea7ec6727bac8e69efceaee9e06a2526 ea80a4653a2825f6e53fb6955f48aae1 ea81016888c288f55ad8f763849656fe ea839c52bfca506ab715df4fa238b95d @@ -53218,15 +59465,18 @@ ea85f4311bfe7ec3d09f5419d6161e48 ea876c5a9bf1583e8ce8f6422c847c7d ea88166d4203952d2d2241c7c437c2fa ea88d4c8f4a9075fc3dec4b8584d6596 +ea8925f0b1ea8ffcc5745ad05d7f6d50 ea89a393b666e752ccce285fc1da41dc ea8a2da3a64a067f393a95da38edbf53 ea8a7bfe3f6901d324e970a039f146e8 ea8acd3640087041058b6e359b7d0fd7 ea8b2194ec194f624266115a8259944b +ea8c2bbc252dc9a874bc8d97c0a0ebbb ea8e333ba4fa490d39ba3fa46074d89d ea8efccd70a7aa8d1d450b90fe30472c ea8f487b415b607f0217242d0b2eef38 ea8f70bbb2772a842003ca99cb31146f +ea8f8dbe502b299405c1de345ee9d1a7 ea8fd2f011f132128576454ca10ecfe4 ea8fda9aa7afddc08f6969ba95f292ec ea908f509bf23a3081e5c5689720fece @@ -53234,11 +59484,14 @@ ea90cee9f556db8ed4362dec2f93c980 ea921781e8da126ddbf8cbdd9e43e2a1 ea93f2cd4d4ccdfc690c3c14b0d2e1a3 ea946ce8047252c00bf2c8faa57cca42 +ea9508f8293be95e7696581c58203607 ea97c5fedfec1918242da0f65652b47a ea98a82293a2ebacc751ac3ce5c59a8d ea9a381991e93073491b76aabaae455f ea9b19d9c83633b3e1e018599754d478 ea9b5628c21010f39e85284ad1ea2f3d +ea9b96dd9ae2c11caccc2b8976efa400 +ea9bfd6b9d04cfd06e3cbbe707bec7d4 ea9d593687a9583b1338411e4cddc833 ea9d5ab84643b5fe95d71ce2ad827384 ea9f34b392cedaf0a28dc408c452c0fa @@ -53247,6 +59500,7 @@ eaa10104fb07ed4852de47e07e70e548 eaa1e2d26f02f0988915dcebf6faa77d eaa2401df8ab1a19c7c69526bbcbd106 eaa2a1a5f61aec9265bbe16b78b8f07c +eaa51e2dc8541b53780576953b8cb21c eaa625fae820569b4a1348142f75b9db eaa63449c3d0c0c3ad35d5f10a8a6953 eaa6abff5a4adae8e42e2c323dd7af63 @@ -53257,6 +59511,7 @@ eaa749ed71802d9734a3a8b6d1aa4149 eaaa0f0f959517d49cb866c2e35cb524 eaaa3a8fe76cf6c5c1eae1bb505fe139 eaaa87cc740b03832954943eb496e5aa +eaabc48c0594ed5143104796bcd00556 eaabc63a57edf7362a72e3b396bccf91 eaac83e0bfbc36b788bf80d07d550565 eaae9e76a931cb2c0e9bcc45af896116 @@ -53275,6 +59530,7 @@ eabfb2992c11bf7581d6f6e0b1acf9b6 eac0cbcb96bec7bb2c9ce84b5e4314ea eac15795e3b54bba0d54374daa1e5412 eac1e26c45a1ca6ec9762a774f19a4c0 +eac3028c290717b87c21b0fe3da53407 eac36cd51bc4a0a34948e9b45b18100f eac37c1d4a7b39a9600aae6d659992a6 eac38926d6292ec4d0f623599840a35c @@ -53290,11 +59546,15 @@ ead3b8189126d6fa6eef0bd726f85413 ead4bf399b7dbd1b4be4b9727cb3aa08 ead588f2dba3ef699573a125b4f98df6 ead5a5529e77b4e273c6c35c9c57f8c6 +ead5d5f7f114df5ccae61e7823af4fcc +ead6af774d0380a0f4036e08a73fa299 +ead7941ca36410ca9d1660476f146b4c ead82233f2f3f4eb8414ae195f689b65 ead8a76a4e07e7e80e00f7e5ecb4a114 eadb9242d5152417ac04b3fa17431d5d eaddc393c6be314270895a7e29e94c2f eaddf1e6c89bf586f5c2972e75c45b49 +eade107636e28534a9c13bad80252070 eade17d99b32e7d0157d9958ee5ba6e0 eadf0478de92c7fa5ae3693d53d639b0 eae369fb12f2ab366c76c28ee2bfd695 @@ -53321,9 +59581,12 @@ eaf5f18f8b2e708fc3f7cb77c21b9cb2 eaf6eb1cae1130db024dbf61d2b1f0f1 eaf9faad85ebf5dfdd8d4a67950c24c2 eafa7ef234102d8d9e1af1dcaf1e3da1 +eafab5c97148b42991c8211f7d2b6a05 eafc457eebfc188f5f173adf450b9076 +eafcaddbb007b97e3dceba7426395011 eafd5982d749b0f34a686dbe8d6fe815 eafdada2c69a3409f94abcdd36976887 +eafdf649189b3ca423da7cffd23fa071 eafe8daaec801994cae8b6b72953d278 eaff1888714da89e954e8d6c09ef5ae4 eb00156b7e4343c32dfa032dc889aef9 @@ -53344,10 +59607,12 @@ eb11f8a76524e9992208ef24835973bc eb123dd91617d541cd9f40f4d649a764 eb131ef0cb9fa18c59319d393658ccc5 eb1387576d4b9c915957f8cf48a93bdf +eb146d9a59dbc439e8eb1c24fb367d0a eb1527ca474e7564c11c8ffb8463b088 eb15a1e27856b94a24750951861854b4 eb16b30f35903b7aac30672a106dfb6a eb16c9cdf13dc653edff10ccef9612e8 +eb1729f8607e256391d044e6dddfea91 eb176962e8edf9c2985bcad8e9c3a1f6 eb1a20e388fc675a24956247ff5c66b0 eb1b439a5cbafd002a3b60db7affe960 @@ -53365,22 +59630,27 @@ eb26cda1bc27567f41f22f319a4e4dcc eb284a4388bbc671d3c06b0750679c78 eb29f9293c10afb7f937d9b729af9c80 eb2b686cd4349c2b780414f9b7d36048 +eb2cfd2bcc0c57894b733b9276b4f13d eb2df35fb3610575527260b7ac883fbf eb2f5a22255093c41ca51e6acd3e86b7 eb3052a8ef6d28b06640008405fb53fc eb319178e8b6a2c47f1acb7735011c50 eb32cac88b7ce90f3638e7e4c2a3de52 +eb33cb768055d527acf08ab37eb06f26 eb34de72e0046fbb44b1da8340b56a82 eb35e2e0e897ab027a3d8aa848e6c721 eb365b91d58654fc7afbab91b277c809 eb37b59bb405bb846fc0a05706804813 eb3812a0e8e6896ed6c772788341daff eb38285142dfdb56757ff23df7523e89 +eb3a0f41f538abd6b0d5f53043f8f531 eb3e5f7fb7f1d81c770813a8aebd2943 eb3e971b774bdb1026ecf0b707b2db79 eb3fc790b1c7da78bbbb6e4fec55edf6 eb40300e28a09835b4f09ab650d5d8f1 eb40b5bd70f4f834d4da99f560acc693 +eb42b0a89dfc8d9c62d8c3fad2360f5f +eb434fd3c2ec7a542134c6bdfb5d6c19 eb44e7fe94be1a7de381cbeb011daafc eb464dc781c64aca17103bc92ac6e9d3 eb46598de220a093b53df017f1c57bb7 @@ -53394,11 +59664,13 @@ eb4fb69204db2037aa0e61df8f68b3cb eb53bfb7a4cf1304042157c0a80be377 eb56f20d026491defc5852a28876e134 eb57130470b8029aa8fc9cecc059b34a +eb571d9b8d2c584134089c4a91ba4404 eb57ff1688d81673902d02cdcbd72937 eb58a291a6f7a36b87911372734cded3 eb58b5af34dc5ca1118cf19b653c59af eb58dd4310358b2cc44671fa7fd8ef4f eb594d74c073de6b7dcb73c5dd8a7d4a +eb59578a3fcfd1f8fa8bbc79880bd929 eb5965d7d8f75a55e9ba2918caeebd93 eb5ac7b239fe060e7b531d2447ff0072 eb5f30559a2149d3af1cabaa330b646e @@ -53420,7 +59692,10 @@ eb77791a4cc3c7e83d4b23e2a623fae3 eb7996dce72a505c650d7af89b893f9e eb79b94ccca6e043e79668f15ff80b62 eb7a41b5c044c9e97adc4f7f04fb95cf +eb7bc76c489bc73effe83c8a3604d53b +eb7cac15bf9e10a2564e70aefef789b8 eb7cbae96af7fa02a73148933d4c5a46 +eb7e026a9b42f1465d3a72a7d741258c eb7e84a8ce28b8e5ae0d1e86847fe43c eb7eba42b4ec06ce910a8dedfc0df148 eb7f52f5f0fdd944a3f6a0a140466110 @@ -53439,6 +59714,7 @@ eb8af2a5cc59c3456aacbb5972d784ed eb8bd0a665a535266c1b1ef9998db285 eb8be978c876d132c9e6cd26558b1957 eb8e98aee2ef893331f220cde0561b32 +eb8eb61cb2720d3c674b57b9a595526c eb915142f7e077ef68e80607d3c1d702 eb9167cbabe62e72c067e4bad540e220 eb91b3e3975f0d09f89526365f46409f @@ -53470,11 +59746,13 @@ ebade575e92720e0bf8a244041896c10 ebae410b523c68c6a30c262534c5c635 ebb05fbea21d2b04c9dbd9e184b3eb4d ebb09c1530b72b9e8490488e4900c4f9 +ebb219e10340bb7005a19bd6e2098c0d ebb34a6cb0e4dae1ee0dba61c94e09f1 ebb36ace48dbe8d6a513c383a58011c7 ebb46c67999ed0b04f1166b2c4d4a615 ebb51fc35fab462849542f4190cc3468 ebb5e094606644e8e897203741e9109e +ebb5e343c9eb356fec5c3379b736e6cf ebb745e6d202bfb13ce81c3e5d4f2a73 ebbadde714d2e07ef50dd9f659e03aa2 ebbaf346a2543cfca55d553ee30ebd18 @@ -53489,10 +59767,12 @@ ebcd1230042235c0a064e22b49a79041 ebcd877d1822d8af905e7b9af903b8f5 ebce5e5435e20346aec2cfc93597fac7 ebcf2645bd20fba6d44f060ac8728706 +ebd1a83ea4ca0746132a5afb7afce097 ebd27c119e8b573651e4b560cf45c843 ebd2e3af69d0e1c1c6ff1fc0d298fa37 ebd5c5032cf20140969a81aaa41d8adb ebd63e7b29089b0beba2612ae1149d68 +ebd673bd812b767097e5090b58c0df0e ebd81f72ed40aa52a67eb4fa19d1e40c ebd8270b2fdcf20abcd9186b6bb2dc1b ebd827b6f817ed620a991e9af0affba8 @@ -53500,6 +59780,7 @@ ebd961d90f62c7dc11bad9f72b32293a ebdb1bd97c2136256eb7dbbb5d93d674 ebdbc33b5812f51163f90618a10644b9 ebdce99a6127e79d405e3a75573e025d +ebdd86d6325f153ea9a9b98c6d792caa ebdda09c9f1e4c789851e27a4b393d0e ebde4fe3ce8a3cc9f118f0e22cec740e ebdf17e7c53a56482e15968c083b4459 @@ -53520,17 +59801,21 @@ ebef620201af12f505538202b66e3c3d ebef84ed131f2e24e2215f8b6df6f05f ebf01ada2b0021153b93da2aca317b50 ebf04ea5638a5b5f82b70a186f0261e1 +ebf0f2cf4d483fd56d74f1cf2e014e1f +ebf1161524288d02395776cee89f2311 ebf79aaddd9173bf47b72e09b9f2beee ebf7af608d1aa72d33270af812a30d1f ebf7b26ef1b2ab7c6fe5b7a6625a80d7 ebf7f2705f87ea497dd0cf2709e81d3a ebfa377995de9d26c46b6c0b9acd6278 ebfa435cb06fb96f1a4a42456c8ac3a9 +ebfa4eb5892aebb7d6155aed59facddf ebfa5e2997b0ca24fc2e57656400f6bf ebfb5eebb821255e8e4bc6f9ada8899e ebfd3c310c37e690be74b89df3f2f944 ebfecc270ebed0ecf3534bca8eeb26dd ebfee12964370f528f2cc90499b0b8f2 +ec003f6691cb794d2465bfe52fea460b ec01a622eae02a900114c843c615968b ec01b21bbde49b94b018a0aa21e06447 ec02508f8f830b8eb9d53251cffc2556 @@ -53542,17 +59827,21 @@ ec07d049b6201670233821841d4d2a8c ec09e41b3062faf7f523375f1abb8040 ec0a0020342cfc68492e7bd904f6d3e7 ec0b63e34607b14f6d40e2880aceca21 +ec0bed5cb64b680363380e4ab823df12 ec0c460b8f1c788e39e6d4f3fd0965df ec0d0a1d9e4dd27c898abb783f8c7647 +ec0d523ce00f106c5a589888a6a9d773 ec0d9545c3df793a4795e1239dbee3e7 ec0da9616a6820deeed06281b94f6be3 ec0e04c932ea61b5033718dff711cc3b ec10ff730c6a9fdb0621b37154027fe2 ec11e53a676171af7a7ca8111a0fa951 +ec12445499dc6d1253ecf8b8472deb7d ec127ad1cdd300dd08222e23a3826fe6 ec13b014932b52b9d89754a8d9c5e385 ec15c7d498e8c06202a8785324c27a8e ec1712141dd457351235b6365993edc7 +ec17473dc8016eb0b2713e2e458eef83 ec18317a04c9822c81c7891206a893b4 ec18bbc23f68f49fb4572221f564f683 ec192e571a084003bab86b0297da35ff @@ -53572,12 +59861,16 @@ ec2541387bb0b7f02b26a19b006310b6 ec2920abd7aaac85f27957fa5c422dcc ec29d87198be3d6dbd95e4e69fe94e5d ec2d78de53b2e1d28fa542ed373eefc2 +ec2eefeac05e8b99dd5da4eb3e9b54b3 ec2f30fa62c0941a534ca330b683be9c ec3034a406194b0063e464886362508c ec3273babfe174a70640325c63e72c1c ec3464161abe6c8a52497e0d43132b80 +ec3501b39d5cecb333323cbfb026852f ec35742cce90a6716b13ec0a4272f2ec ec35b88ffbf0167be9a057190996153d +ec35bb95bbc184e83ea43aa004072d78 +ec37e2fe479c2a9070f7d71fa75aeb13 ec387e7aa60047de01e1eda32979a535 ec38931fec026344c00eb76d9890f09a ec38bf691e51b7edbf5c97385ac319ee @@ -53585,6 +59878,7 @@ ec38da40413fef3f3f2e02f389b6e5fc ec3990ae6ac1dc710094d60bb5c12108 ec3a70dd05de8d5901e7a5560ae762b8 ec3b2262f7d4a2e366354bd178e6b03b +ec3bb217f0ef29b7ecf950ce483b28fa ec3d4bac620c953d24a656a2470fe588 ec3f0c075ce7c05e929372e5acff2be3 ec3f86caed0d219d6f33a94cfc34f2ab @@ -53592,6 +59886,7 @@ ec3ff0ee7fb402525546f4528c545ce2 ec3ff1434b2656d98aa77c22ff41bd1e ec408c311230b306e6c8c429aabadc4f ec40969996f9463ab0efe766d84666ee +ec409fb211d1fdc923224797c41e64cb ec40a8f62367bf8ee1eb89f9d13bb793 ec41ce94248929de6aff954babb5e93d ec420085d52414c73fb950b763534832 @@ -53609,12 +59904,15 @@ ec4d03594d9811c026991957630c1297 ec4da0fba4981fe85c98062d449b3035 ec4e1cb3ee0186ade23adc99e36a1b31 ec4e6c21a1fea98d62e5d0342b458fcb +ec4f12f3f8f09e6081203e5b042472c8 +ec4f64822c793300b4ca5f28c411820b ec50089b4219e3e712aa81e3214ed367 ec50b49724020cc7d74a28a9f436d1cb ec51b471f8322306902156ea56ad1223 ec52674c82119c5335ec4f59106d6519 ec52c33a02e57500b46a9f7fd504310c ec542258c579dce368fe378e5f108062 +ec547e90a9c2e865054b021ed2a863f4 ec5679c3c9c0838da87f4ca02de47ea4 ec56fdc025fd671c70eb79e93a6d5e6b ec5964ac6424ca55ce45805135c6f3b5 @@ -53627,6 +59925,7 @@ ec6144bc96b25616ae5deeebf56b604b ec621d602552e74c25727a825db5b397 ec628fb2cadb49980787f56bfa6f77ab ec62c9ac2160965614c2c7704a68479f +ec64ec66b7d80ae8520e889782addf13 ec654a1a257297af1debbfdab386ad2e ec65ffd73c35fc5413abe22fdc21b5cb ec666711c5cc7db7c3aafe78b3fc8027 @@ -53636,9 +59935,11 @@ ec69fff7941a3b2a1461c6c3becb5cb3 ec6a701acfb0ef376a213377c3250559 ec6adaf0c9fd4a580ff44df996ec295f ec6bb1e857c6ef18bd6ad1b649150ee4 +ec6f15adf88019496442435dbd8c769a ec6f3ca6125d9e8186708f64859b5404 ec701069b6a8af489b3eee7849aae290 ec70b554942194bd12d6d996927cf508 +ec71a67101684af1890200e3af6e3b5d ec722ed19d527aa7b7779df63f320c1b ec72c0f59d948bd594e792c3111638ef ec738a9eb744b266f969052a934a3b22 @@ -53662,15 +59963,19 @@ ec8320244fcd10e859a4d552d413e08b ec844f933ead845ed0399b80f1867c2a ec850482498b6a9ea265093deffa85bc ec86105cb3f1b25b1ffa5b1ac44bfee9 +ec8792745480180010c269aeff99931c ec88007b20815ec87fda456237985aa6 ec89b3ff79471d3b6714c44b5fb7bdfb ec89eea7862342e13f2d58869c59550f +ec8b231f48880fb1771fb98f0c88efa6 +ec8b5fc9c0ba8a52618b84f16eb48974 ec8b9d16a6686895ee10c1069375a817 ec8bda2e9aede32cde29aeafc1068a8f ec8d98903d4dc1ace98dd1aa5744e072 ec8e53f577b1146412c0e52203c5ce8a ec8e57e85296b82b7f226c79ced11146 ec922a6e9bc869736807f155159c0293 +ec93d56ca7ed9950315cf315acbdce36 ec955fa10ccc063bddd102a8e30c5772 ec956dd974da91f84220e3cc4193c7ab ec961c6133c11637f0a24e8529fd8b86 @@ -53684,7 +59989,9 @@ ec9d7d520da6800a9d7b703d768b1d38 ec9e04670ff51d24e93d43130ee35f19 ec9e9085891b0a966cfc4bbbfefd8445 ec9ebebce25c307b576d53e223a52050 +ec9fb63c4d31022c1d8f74bdbb5ab853 ec9ff1773b843f396c3d30b60b5a3baf +eca03004a749ad281a5e4a4a3225f662 eca0d7559559adda1d7daceae0df7ea8 eca1287c5355e0d6a075edc03d230998 eca206d8137baa207ecbdf765c2e1e3d @@ -53699,9 +60006,11 @@ ecad1fcae6c1a82bae09264e82459f88 ecadae725564be2024b086e2234558d6 ecadc1cab481ae8293e166892fc30ce6 ecadcc6cd10d934154e10d8072610793 +ecaf5e899508f29466e45e2342c39f21 ecaf92b2b1928e952dc8c3db3472cfa8 ecb1fdb7eae0ef291270290c4f1c5eb7 ecb3763f2fb89bb3758415673de6af43 +ecb501a0b3378185d3d3b0c47e4c637e ecb572830f9461db45938359165b90f2 ecb5d874b70075a86799641544bfc486 ecb60019ab049b40f3104f092a6c0acf @@ -53711,6 +60020,7 @@ ecb9cbf8b0d61edd06328509a07b1ed7 ecb9e6135ed35ddd7f3551bce1763bf3 ecbba9799e895894f17cf847d07fc860 ecbc76ede79625253b073e561d792797 +ecbc8185f072b5a38564f8779c0b2f0c ecbd4660fe1c9ce68b9336173fe954de ecbe1f419a203ff8b64d3bf42cbb7c55 ecc06ac91c87de4f1a7ca7ce9611d824 @@ -53725,9 +60035,11 @@ ecc59e324b0e89649cbaaadb25a6f956 ecc700fd24b3b156e536f71537eb6fce ecc88cf6faa820d4c0ed5d8f2de8aa51 ecc8df3acebb436c87d21a91b2b42374 +ecc97caa74aadaad07da8fcf7a02118f eccaeadb9597f6c2a457057f12da8d35 eccb797cf63cd8ab1ecbd548da44b1fd eccc606a8ae4fde1c79fdcc65bd1818c +eccd3d281283646588d3c2e0301f97be eccda3bd6afe4a2adc78db8c30aa9b42 ecce00c2df2425c810e704f5284f4bb1 ecce954d06597a5e348744c231f964ef @@ -53758,6 +60070,7 @@ ece65c549e85a919d15250fb2d7df1b7 ecec18d4fe0d2df913dadf22afdd14b8 ecec33d3fda55dfad62b03593b4a5c82 ecec7bb7af409223d2b8fa3bcc5f41f9 +ecf194a043e8a1967c3d1d40fe83b9ef ecf39d8b4d226c50bb6485da2bfc641c ecf3f65c7e8d89c8a55e7c2605674862 ecf51d2fb4e2d9673d27b931d23b5b39 @@ -53776,6 +60089,7 @@ ed01513ffdd90082eb8a4163e6adc068 ed02a33b8131874f39ac4a54a6b5a3ff ed037fad58d76f67b522ce84839a8779 ed04b0d42f4004b841915369f3f48cb6 +ed062acba3a61f24f48608a04465029b ed09dc5260ce8db4b431632316b2a4f4 ed09f3dc9e996004b045d52e70e71445 ed0a9eafe85f024e5c0c987a6fc2b1ea @@ -53787,6 +60101,7 @@ ed0f82374b072573b86f8606bb93d9b2 ed106526681f46be0c2495b40bec1e51 ed1140abfa0cbdb85ffee90d412b8389 ed12817124744b92d80b788c1b11d7a8 +ed13604dab416cf48ceca86a75e1b32c ed13e9d269f28fcb52771a678639a5f6 ed149bcb7b14560d748354851625b61c ed15495fbb89e1d1db94f6214b6dea2a @@ -53802,11 +60117,14 @@ ed1a4d835a89b2c50bfcace9dea40583 ed1c386f5ea1d22847d137b01f22c134 ed1c4e300bce98c0683382e76317ad6c ed1ccfe8bbdf328b500d8940fb46bb8f +ed1cf1434ffc6cee0ae0024a4d5af1f1 ed1d2c68c293fc87c448d3eddc09b5fe ed1f044a907e86398868b600317779b4 ed1ff4f661dbc80f786e463e348091ce ed208ab7d410bf7dc9bbbd25bae63b0d +ed21543fa1a94699372936f615fc39d6 ed21b752ada654c8334df9538a6318cd +ed22f66abcf2b9d62434620361ed4ee8 ed2385d31c4a6c535f02782cfd5b9710 ed23fc67243f9950e0b21d5910595208 ed2488672bfa641b2313f69e0708fa9a @@ -53816,14 +60134,17 @@ ed2afcafc1863c1efd1b62210e4e73d8 ed2f0b0b4965c6a3059d8e1116998239 ed2f2c40271ca7ee7792c2824e09ce05 ed2ffa37a90c7b06260543f6df60bc94 +ed311d2733e52d75a75d459016c1fa3c ed31c818f4ef8032e94be60ecdc22387 ed33db04354228b8f21cd5a6a00c6f9e ed346c869699cf46fc00d01c539c89ba ed3546dd515c8e89398d75eee2d10593 ed35bf1cae60198deede544b43e4854f +ed36530d82c57f066326286bf37d7cf4 ed36650126797e2e9dde8614073ced95 ed36a65b8370e52e12c6ba1ec72119f7 ed36ce0453cf2a3fb7489490ddb36db0 +ed36e327c5a2e2af0957bcb0bd8f7ac3 ed37fe9a4688f43fc02109054f09ce5b ed3999df46865a9dc29123e7ab7f27ec ed3aaac914b1c8a201a577c0f394f3c9 @@ -53846,6 +60167,7 @@ ed4c2a69b2d1baeef249e996700d4b6a ed4c6fc531e51fb59429bef1bb43d535 ed4d0e277af310d41192ac3bd2ef3c9d ed4ecde49277fa4c626f5f7ba19a6709 +ed4f3eb4464ca26f98a7ff927b896d9f ed5091fd6eb23b7a6b66d27b45a3926a ed51c33a0850110fcb62cfbaf1301a49 ed51fed7d17069116f20b697a33c2b5a @@ -53868,6 +60190,7 @@ ed60c5ce60084be6aef2f8d80b1da4d8 ed60e4ff0ddcfe9196d8d8fd13391303 ed611d61d0d952d0ce932c9b0ce13085 ed6170e2be22c0f62ff3b5efa1517352 +ed62c093ba8f857d85e13f7eb9acd5b2 ed66c8acaaf85f67631e8ac865aecfed ed68018ffd9b409b331937e814032bd1 ed689fdd283e2bc42bb935222dde2e25 @@ -53892,6 +60215,8 @@ ed7bb7519faf689d8ccddd0b8c739a0b ed7c0d4d6498af2f6a1f820cc0fb3de0 ed7e04ddf1032c090f1121c27e1a24a6 ed7e7f54b620f1bd7ecad39beab61b82 +ed7ec462f9dbf7b52b45b611feff66d7 +ed7f515a3ba772874f1c6af671294901 ed816e07df44ec81f1fbd8a07cc821a9 ed82038252a0a7cb40e1a7f62fed94b1 ed827154f7dfdcfc0fd4c787a5d18375 @@ -53907,19 +60232,23 @@ ed8f6dbf66b1ec862592b4e2dad04999 ed915c1e3f9b63ab651f9d79bfc9af2f ed920e3d0ded8cd646294507f6ea2d08 ed959e920eb617ecb16da841c17a7e03 +ed95d37a36e447346e76c13f2be26cf9 ed96b530c98e0c798ad8f36c649a6291 ed96de03a650134f32e7133c265a068e ed97622a8d9609c54ca02fcea52d34b9 ed986a02324ad95a513aacf5c75722aa ed98f5839be661ecbaf2fedbb405bc6e ed996bfbf24580fbe5d951941f46b2c9 +ed9a2efb753eb00f40f170d17756700d ed9addce9bdb71b8e47dacaf47349adc ed9b589c457fbbb32824fa95253e43a0 ed9b96c510eb62e0e066b91a067055d4 ed9c3dbb976efd19c92d976ffb7dd210 ed9c8d83511f48f086575fe5610e6775 ed9d0cf93db2d2a41dca282b8a5344ae +ed9f4b424c7a4714862aff7c1bd3dd0b ed9fae042863920332dfac7492e20ade +eda106923308b36289934a6e410f11e4 eda1a0340a42a041b5ff47f0788dcfce eda2f55a71d319ebf395e74490f6bc32 eda470f5b61142847f66022ce3626662 @@ -53933,6 +60262,7 @@ eda86a50158f3f2b3f212f737b711be8 eda9059df8431d3b0db453a990529682 edaa3ab4bda89bc8c6394a235a253f2b edac21ebee3dbdf3d0760e236823c6d8 +edac32bcadfd7f45f56969c07f12f7c8 edad549efe7071a306b442568b371dfc edb081836250d844cd7cab27e4e613bf edb1d6db125d2238f1b0261571519120 @@ -53942,6 +60272,7 @@ edb4510fa6460105bd1def204c4e0e23 edb4761371ef373a45468a188a4cc430 edb620634f03bd413a294ac8213b3020 edb74fe6ac0c0efdcf1bcb1ca0a338bb +edb797bf0e1989233b8d80edb5a30ad2 edb85989ab9c231617f1a6c8cbf788aa edba128c9585da288367b907f0c385b8 edba2ad9318ed556dc4c95fe7c661aab @@ -53949,6 +60280,7 @@ edbb8ff69b9794ecd2593f94eb81fa0c edbe85ff77edb41f73d572bfb085a42f edbf663f0e6122b28c7cbb55d65eefc7 edbfbb9d2c6e654a91a70b47c40e50a7 +edc164e534fbd8bd43eac7ff69336cf5 edc1e52e149e601c93ed71f8060dd6d8 edc230eed3f6ddcc739c5fbe8a99e22d edc254c81eef13927a5f249f4b978651 @@ -53964,6 +60296,7 @@ edd0a06a10ca99b0565228748c46404b edd0e4e7cdf758b619091adc1f362d52 edd4d573fd43b6a28290826f5be9a6a6 edd52cbe21942c35f1348d95362739dd +edd58b5afa40ec7a683ff389dfdfaa4e edd77bd682f43f3ca15a839e1693f4e8 edd780e82f8e1eb6d84fdcfa2dcbefc4 edd8bf276fd5b13aaafdd84d05a0f42e @@ -53975,6 +60308,7 @@ eddfb776c3e9a137d283b460ea90ea72 ede0c86505f940b6bd639a0cf034a973 ede175c5bd839ca3e03beff351da0bc8 ede22fb0b4459ee288ae204defb4d1a4 +ede599918e3a084a9e5b19c15e334570 ede5ba329320213c6224889ecc6bf23d ede89972408cbfd78b91fb9e39ab7d6f edeaa02864aec891449734c6cdd32d1e @@ -53984,6 +60318,7 @@ ededad55fad677c3b1b616bb7cab8730 edf09eff4840d0cb17840c4ad3bf0725 edf12a2cfd4528bd57a29d82c6450f13 edf1e6b4fc221d811a431750ef70980e +edf2d4c6ba8e84dd16bad4c4a1ab0dfd edf38f738be5ff76e361caba8439d420 edf3b4f86c70143710353674407f72b9 edf464a5ef51a499c8bd639322cfac60 @@ -54005,6 +60340,7 @@ ee070f4b7474eb2cff4bc8a180a7b79a ee07c328d03e0d9ac53e8ac6e7415402 ee099e8755cde84a743737ec8187c452 ee09fc031f69f219781d1f3376d9209a +ee0b2dea895d4f06ac5b1719b6ca5d3f ee0b935f219ec7076926deb2dc9a99a9 ee0bf7ef025bd516d50807b48e5fbdb8 ee0cfb628cb3c0934d3fe0ac9deead55 @@ -54012,6 +60348,7 @@ ee0db710761386934748c987996a452a ee114dd0df31add1ecd6a064b14dc6f2 ee11bda206ad967b8305a63806c0c48a ee13c9af9d37c163e64e7d5fd99ee2e2 +ee157b651cea0c68d71003eaa87e7223 ee160f905610e12c90a98328148bb6e8 ee18ea954e40247873784defd8721303 ee18ec0548fe9329ca37c60145e59a95 @@ -54051,6 +60388,7 @@ ee410e84ffcee84bc974113b787a0653 ee439b94ef349a0b7db12455860c799d ee43f28d737bade5df8f1f786fe69c25 ee4543514479c4632362eb9c3f7310a0 +ee45998b3252a0fb8f94573c26a10291 ee45ae21e3ea3cc6ed8c27c28e1ed200 ee4695049655c4ece64c6e59f0603acd ee4793717eba383aa600499be62e21b2 @@ -54064,6 +60402,7 @@ ee56a3e44b1617801bf756fcaafb2123 ee57fc881012647b32d6915cb9ad1ebb ee59aad6f732ae918b54db662e7355f9 ee5db9be5a19de2a8da55168e0a9a83a +ee5dfa9ceb70cd1110834be820ec43e1 ee5fd9ee8071e82a97b2d4968a96d631 ee605f25489dbb31d73eba04b3f85339 ee60d14dc53d15d2cbf4b154085bf236 @@ -54081,10 +60420,12 @@ ee738db60103766e14dc22beecfde05f ee75448142e288a0641070641f4e124b ee761001a1de08903ff759672dbd8a6e ee77886f08ffbce7eeb0d4557371bc80 +ee7941ca826a05fc57e0eafd0c9561f7 ee7a31f52e36bb464ff424e06a5e6431 ee7a5f6d5c65b0533bf0d3e8492ee903 ee7af704370b0304453de25294b7a709 ee7c91c09703674c37ac56ed9feb727d +ee7e840260106c93f58d3c8786269d4e ee7fc988719de4fdeec7c9a8034849f1 ee80e4e368fbd8f6f88563c7d8596234 ee83bf61f740ed83704434ae4facd6d3 @@ -54097,7 +60438,9 @@ ee8ba553a81cfe1567d2d440ed0af7ce ee8dd3cfd9a067a2b25a76bedf35ca0f ee8ed96f9704fd16bda431e7fec53334 ee8f0f4577981a3a6c097af97d9abba0 +ee9018f36f32a5a701a45208eeffc283 ee91b4ba4b0e0b01020dafd7c3da846f +ee92e37019d7d2bcb3bbd2345f5fa95a ee9358d2c7a8fb594b124b8b79fa84c3 ee93dbe450debbfb573cf26debaae494 ee946cefb3b4582439f2185a96f593ad @@ -54105,6 +60448,7 @@ ee94e02b7c5c29631c9291bdff41647a ee94e033c56849b96792e5d2d660c104 ee95077fab6349c1249f4eb3c5072c63 ee952b0630e8982837ba57799b1ae364 +ee9585ce8c1b5438bb2460cb45f96ee0 ee9696651152011b10fb35b5f73a73f5 ee96d4ec7ad26c16db43561bd98fabda ee972419ea99494ffe1fa8548424e2c4 @@ -54117,12 +60461,15 @@ ee99c672b1007daeb529e07030530904 ee9a881c86519c94920ca36e8466511a ee9bbf341e907c2db6ca0f611fd30589 ee9d2d6743737f006b0adc6b07bbd2f8 +ee9d622db86657fa71959b1d47d0d051 ee9f19910ea1d60703744f947246a48a ee9f76e4ccb5994c9b5698fb85b33a2e eea0b03cf79875ddd0b7f312ef3f7026 eea0c43d5bdad2e313c0f291659a0928 eea3e409a215a0d4960a08a0cd843563 +eea420d51d0d5a1c434f81398b1249e3 eea55c326bf9fbff5d53418ee515542d +eea623a0622b704b4472cc6fa3103276 eea8612a2e5d36fb83d24c6b1d374cfc eea8c6a787e93fb76d6e3457133437e4 eea92bc777913a667ac52824d1217956 @@ -54134,6 +60481,7 @@ eeac79b6584a965f69acdbaa4d20c725 eeacbaf98458b15e40b72693cf80ea9a eead89bf5095dd517b7497fd236408c6 eeaff5e8246c7d32d64725165dc216e1 +eeb1bda200935a5a73cd0e501350cf19 eeb2f0a832776acde876a2e9725dd52d eeb2f1bd8bc40b2df59d450da924acd8 eeb49eb332cabe98d89fc31d89dfc2a7 @@ -54145,13 +60493,16 @@ eeb8ca67b492fb2e9c2b5aa0e7362293 eeb9e97e3479e7609b04690de03596de eeba1572f24ca2beb9759b2eb1de9277 eebadc6807c38365c94ce34addfe2f68 +eebbaa973c7c9ed2e469b458cb697b72 eebc25a1a9c1961eb2c888fbc18f57b5 eebc3f39b89992973e162c9200638a10 eebc8d45dc3ec5d79cdfb7a53e1c1cf1 eebce7d5c022c8f96e5234fb1a7ed36a eebcf265a4d15490258120dd981aff81 +eebd8e12c2539a84823217b59fdbee5c eebf54f17c530bb9bdcca1a3de5bb6d1 eec1b91ccf1daf7b804aec569256a239 +eec30165d3bd6ad2c5e6877d98086d5c eec34616a05691ab369ab42f9f69e5ca eec5a5682cec54c34a92874dcdc37f6d eec64f81300e4dee5a37869a391194b7 @@ -54160,6 +60511,8 @@ eec74ea77fd4f638c19d113871f0dfa3 eec97d595a9b567e284fae84e1475d98 eeca7e8a244388551dca73b109110c09 eecc58befc4f3d2028709156f0dcf395 +eecc70952452e6030698b96614943fe3 +eeccbde67f555a0734c6b3acbadbce03 eecd1808deee0df6d59f553cb913b650 eecd472f0db8dceedd6130d4e10aaad0 eece603ae5d26734b66a63be10112267 @@ -54167,8 +60520,10 @@ eecf4a8e341798ad86dad2721f47ff3b eecf6189ee351308e4d0d65548621887 eecf89f962a917af956d69b9f15dbaa2 eecfcc4e8ed2a92bdb2606c0efa544a3 +eecfd8d059b0eec500215a83c7255967 eed06327e26705e502489eb9756d6c5f eed13184423c6c57942059634fb42868 +eed2bb4898b0e308cc6d4aae3f40b3c3 eed37f17e7b9b1b7c3136802569e9a72 eed471f1ccbb63ad815530b672ea3f85 eed6a84e93859434fcdd96328425fd33 @@ -54178,12 +60533,15 @@ eedcfdd0217c764f0e5d8c7cb875e505 eedf413a9d978b77f6d99343ed04f19b eedfa45c9dfb702a475ee7012e1de357 eee10c1a1c6da7e411411616d9cfe88d +eee142371e7f14dc2cffd92a9dfe14ca eee2d79a6e03becd9277b5b4f7bdc43a +eee598cbfee22192d7c26d9aed7cbd99 eee701b2d127ede6c8af5d68a1e70340 eee8a70a6a3074b589054283b7b83ad9 eeebfad2e600f827b2440a64de8ffe26 eeec1522b596f21e8194bd65d3db3a38 eeec7eb379a682f3cc7ff36028f40212 +eeed5e075395631d13945983cfec7e60 eeedf5e90f6a66ed873e37470b874009 eeee0466cfcf3b389194886dacc46ec7 eeee737e277f5dbddd705ac20f0128b6 @@ -54193,6 +60551,7 @@ eef2f1e93a977cee1b3ff334dfdc6856 eef82bed46fa2633e455c8ec94a1acd5 eef9dd59c0e6a79073417d2556bf358c eefa400c6b56d8f0c6384d7ec1aeb885 +eefaefe983a5ef75e0d8b3452b627649 eefe33a45bfe7693826e995ae7ee88a3 eefe5716a2fb35466fc22f8b4859473a eefebfd32ffc427344d76d5f596ef665 @@ -54202,6 +60561,7 @@ ef03cbbde505f786fdc22b7557673661 ef04512da796efa35c0df17432574f4a ef067eff32f2d2a9834276ea1bc8b2a1 ef08f00ef8fa24563164859440a0b01b +ef09da43f1a39435d6f722a3f0f3a406 ef0b8cc4d9fc9f2453d2bdf6139be783 ef0c88d2f6a3f2b8292a68ff1cb6cad3 ef0c8af75ee740366a7c9a4f9597f53e @@ -54223,11 +60583,13 @@ ef18c41c31fd82dfb08f8662f82efc8b ef1a4a77247512e53356e292c8619614 ef1a574549136a0dd161a549ab2857ee ef1ad4146fe7eda8b88a8eee1ebcb134 +ef1cc8843a803efc5f7446ab55bc0fef ef1db21fdd592bb4d817c1d5570a6d45 ef1de077705ba9c2750c40b0bc359e25 ef1e7979ddb313b541ff52fdb093421b ef1f215f9b78073cfdba59e761f7aa5b ef201b0c0671841f1477e111fe61c78e +ef20da8ff1fc854116e96b8fba8a7f0c ef217a74506c840f5cf1132c79b5869c ef22120e11331095f2e0f361f140d82a ef230883320c3d4d094949ebac810eb7 @@ -54245,14 +60607,17 @@ ef2c517ee5cde8d29185238f3d1e3967 ef2ced26a1c9cf1e16514d5d2520d324 ef2d1b017ecc9d4524ec275f9b2cff61 ef2e247b74d502c79798dfe3c6cc7add +ef2eae22197abcdc0479b126336cc1dd ef2f17db436cd2da45fd7d3d8ad4d10d ef2fe527b8c4c46da23d305b375c14f0 ef31fc78a8febb1c4e54d3e8693f540a ef32d323bde3ca82ee04965275715010 ef33458998e9f10f957c6086ef2aef48 ef33a29cd6002f61eef1af12acc4e27e +ef35ba84cc05f5b57b46f48180fd135b ef368eee1321ec21838c23fce72da289 ef369a1e3ab25553550956f2dfc112ea +ef36aedb990c349235e8902020def350 ef382e9ab8dfde24dfa96fec50f08c4e ef390c16e48fc0a1bac3ed2f41452ca9 ef393b649c0b3963d9de20fed6cc0ad2 @@ -54260,6 +60625,8 @@ ef3b57660fd68e00f66bde57e310236b ef3b7a60204f5d00f6dda4615fbae103 ef3babebbf193229ea7daa08b37d3b70 ef3bf3d668f0b2aabbbe61c2ab6a53c3 +ef3ee1d8133a503966346cec7dab36e4 +ef3f93046989257a86608f717847da3b ef3fc4fb1f28f6dd02508005f50926c0 ef408da86080fe3198c156d9ad9e03c5 ef4144e2f9be0a9f4805088f0d66ce0f @@ -54269,6 +60636,7 @@ ef4522b94c84d942a61312fcb1891dc0 ef46ee8b37ffb3e05ca2c482d925716c ef47d0e089cc94aed31fe75ba06ba329 ef48a4ede32d654d6e367d1003eca759 +ef49318da9eeb918970ebe7d4ac788ab ef4947d062a4f438649de24f94477763 ef49d088a01421291b6869aebca0aeb3 ef4a1603b1772ebc451aa6a36230ada9 @@ -54280,6 +60648,7 @@ ef4f681d70c004e4032f1d6757671edb ef5061608aae63fe42e6cc06d812e280 ef527e984c8016bb73b547ef9d91cb8a ef53e6b384f17b228fbd3a4a4aa96286 +ef565a26ecfd0bba0cb69c6e61994aac ef56ba5725abc5a2e41ead5cb4685d7f ef5b80d336824f0da6b1469a6826cd55 ef5ba0e0e3f3dd0fdf5d2cf441005b11 @@ -54295,9 +60664,12 @@ ef6223b586623009445f6ed05baac2eb ef625df1e5245d1f5a50173aec9d3d35 ef630e646bc928563614d487a96d40c5 ef63c75fa93e1c5d09afefa3070682f0 +ef64367a2fd37a5d91880a6ec15abc2e ef6562743a8c5cb1d268b3bee2223c4b +ef665f544069a22f616ec66063088e6b ef67669739302abc9a503c7ce929c052 ef687d4951a10fa44974bf147538ac31 +ef6939ff006e54d882d298d4e627f2ad ef6a2afc27ee362dede9a91548ba2a24 ef6a9a69ceacffda72d75036aa0ec85e ef6aef965ebc7ea940ac8e21327dce2d @@ -54336,6 +60708,7 @@ ef853ccd6d6b6f5b803d6ee3a9e4fab5 ef85dcc23ba782a677f2b7718c042f8a ef861abe69af7a093fc71b4f739a37ea ef87485e55242913fa18bf5fb950c0f5 +ef87ce7e58049d08d655904fb49d4728 ef88adb17b5d86a6d36658de805e645c ef8a6b9e417921d80e162627f559579a ef8a723020b9ef67629aeb8b6e2a4df5 @@ -54346,6 +60719,7 @@ ef8e3cb7badc93c2cf27b77426f7f84e ef8fbb54668269e00ccf8188a5692ee9 ef90d7e2cc86943d0b5f4fa7262839e9 ef911cb9e9874cfddd0d4b38d70f6a29 +ef912b20156232c13c825f46882d2108 ef91fce6c45c5e7a9bbac85d09582226 ef933273aa890b0bba4e0ca21263e132 ef93acde2ce0f5001b502711726cfef1 @@ -54365,6 +60739,7 @@ ef9f74182cbddd241f2ef7d1d9501cb2 ef9f838f4e796cca393ddd822a26f202 efa262e894f476cc3e5c1523e6a6b102 efa55a15402441f4dff841887d74fca7 +efa81fd774eb9ab562ae0c4ea9d65578 efa9823d325ec5b8ac674d520a3b3bd7 efa9b7b7138797daed640923a70a8636 efaa12c38552020233d1bb3d0792d7ed @@ -54386,8 +60761,11 @@ efb7b2ca034c1ddd708510f2db1fd3b6 efb807e643c6bdca8ed38e0ffcf04514 efb81bca84c9d5027d116db686e83958 efb8ba5bf09b93449559ea058f6861ed +efbaab100fa158f67614d185982f2ff9 +efbb58d6df9959243cb54644c7a4dfeb efbb67e26ce5bbb360df5e7d207c8a41 efbcc8f97de2eb0d420044796a2fc21f +efbd321efc08d36ff4bc5bd7a0b466ca efbe9b70df7037eaa0aeb441a1073e54 efbec6f302f9074d8d9b9f7f2f0568d5 efbf5ee52880fd1e4572d9cc7e079ba8 @@ -54418,6 +60796,7 @@ efd2070cffd061bf942a63cb1141e6b3 efd4ea2829c379f5f1dcd03f45bbc4de efd62322d7e21b6b50e6a4375b5b63d1 efd64ab2eedc8f8aaf1dea5e8d8e0387 +efd9cfe2ff7b836626b6838a32423198 efda86772fbc8b46fb2ca5d84d9cdc41 efdd424ce2016357e6abe78639b65522 efe00e7c56693e83dd3a6c530bb87286 @@ -54427,6 +60806,7 @@ efe15ee3c834a777877c34f892ee3e8e efe19d500d8ed1818304ce46304a1f93 efe1a88b8b3327b8e27bdfb90070a752 efe445e822a5f32e583b467ce029a45f +efe450f01f92fa0b66469c276ea19b3e efe46e3b6263e9959bf1293f8aa4e590 efe4edf8315654c57c0800a823fb6c4d efe59ab1ef7324f746b15f9b37498aa9 @@ -54441,6 +60821,7 @@ eff0bca74ab8ab2f3362d4f6dbef6bf4 eff2b66c8d9e6ab0948e9b25b697f58f eff3376833bca7dc8d127c6b13634e52 eff3bcafda516eb9a9167e8dd8b68f29 +eff438f1f1b9bc79ec821289513e31ab eff4ab3e77106db7d7a370263e35890d eff54ed44a1655976b47600a681414e1 eff551e4ba16bd90d771b9a561f1effe @@ -54451,6 +60832,7 @@ eff700afb91d464894cdf3ab76056447 eff885030a722ba20a93710b2f9d0575 eff9f458c15bfb6a8e2e0bf8fbc4b898 effb7a05e07f99d19d1816b8567c9950 +effca726166f37e02f5d15adbf6a2680 efff019bb2202448bbd89340d43acc7c f000d58e065488a7816d7fb4b69ceaa3 f00130cefc5883c3085d1c5198e7d70d @@ -54470,16 +60852,20 @@ f01359a898ed3fed4810ee5eb1ea1ead f013b0dacd63a794847834270b46c085 f014175e0e171abcedff06b3800c75c2 f0157dcd378a2a4b4aaa6ffcac33b43f +f01617a0848e761a7154b0b6444625fe f016438daa8b1b5642d6598d8641c200 f016687b23025acff5736781713b7c0d f016e6cedc9e77cbfdefa101eb822c2d f01956e2a93fc4d517604fe7703304a1 +f01987672badfae753f55cf836836571 f01afd078ad4c3295bf8d1f2bd745e69 f01cd77e537b9a441dd1246afde1c973 +f01dc1860486f3e973210bf1951a6c3f f01e8c713e1da07acc1c7eb794603ac7 f01fd959c9e9f2c39a745e9c9f4a4536 f022d1e806ab15e9ba7bbbd7832bd957 f023391004e41633434b58b5d054f41e +f0240d46738e53666b948250bdd0e18c f02502f150654ab7c0813d669d28371f f0276a1f22b801b86060292cbbff2fc0 f028cd404a2a45e74ad3a3fe62fb5b23 @@ -54489,10 +60875,12 @@ f0315fd86f85223d637c14999209b654 f03351872ea1dc142c8489f397a4749a f0337e054f06319748f4d4057be2cb4f f0347afdd1413aa208bbe8872c0d872d +f0354add7ad0958468e05f5e8dd6ceb2 f035a7d82b3cc311003343185cf7483e f03a5d28ea7211643bdfbd111b5a5a56 f03a982a37a034d0664b69e22db7dceb f03b52a80e8f06d201732340ba8fa1ed +f03bbe22603f34e99903416d1ba42e5d f03c8e0ace27427329abca59b1510ff3 f03ced78d3c096f8d816c641d46cce1d f03cee29ddf3989466386ccee617e225 @@ -54504,7 +60892,9 @@ f03e6cd84dbe3d6aeabf4df2c187a482 f03ecde1a8cee0de7e22e2f83db249df f03fd36e9adfe59870c22986dbebd5ac f04011559f32d9ef21132841390c3f0d +f04254ab9e9f5252242f95975254857d f042e8ed0d44b8d4748cc27f6b633d45 +f043c1d3620b767d5b0d209ba15fa4ef f0446b79d4d915690834e2f783de5ad3 f0448722d038a1066375b7d7a8b664c9 f045064b9728b7d1f71139cefd9770e9 @@ -54515,7 +60905,9 @@ f0461e063913d76e258b1c504e41cdfb f046b39220abc7e6b8a7d3519cbd578f f04bad559744e6677aead8c58d4da9e6 f04c750c0a4aca526d8bb5f6d7d2278d +f04c86239238a7694b8fdfa00eacb72d f04d536dd976356d4f5adf503826ddda +f04df7840b7d707709ca40e75940fd9d f04e14c1d4ec6486c1f08ec9ab70bbfe f04eb58708bd4ed68038340349707f28 f04f10a96b4bbb776e321b2b9ee808e2 @@ -54523,6 +60915,7 @@ f04f58caff9fea08af391a0322b33be2 f04f85e6cdeb42dbb451fabd947eb38a f052f87c734d405792acd4c57af2b8af f05310c572cefebaed9b75261b6fc1fe +f0534d2da1e44663f620df778c0ecf35 f054b73b0dcd152fd2f51c1ef9bca670 f055641925465d792a0a46bdbcc59833 f056caa5819471dee4383ae5002a0dad @@ -54541,6 +60934,7 @@ f0616fb65f2f4c038cea1d1d4ad7a53d f061f18b4f63b1f0229aa38add960b68 f062b9acfdc42f309eeadd6a8fb55ae6 f063f0ed1dfd385b0b405c9423dbd553 +f0651225c7cc2dbbd13c7e7ee8442a24 f065d199d0653c17236abbc61439fb1a f06620fa44f6e9dd1d759f30a5eb8c28 f0665391025ff2564eb656346d30147f @@ -54557,6 +60951,7 @@ f0761cdf2a8d015a98c2d7a0a981820a f0764eb6b9d3a05c8a381f7fcf1068e3 f07660b9e0517b2dea403296d9285b18 f077570f507fcd44e5c39a354e843573 +f07ab8ecc34e237d148d18fb9a0cc6ec f07abaf4fb2a6497a2959cd8140b9528 f07b2effaeaeab7d0f20adf76a991787 f07cd2c20e81c73dfe36eaa8780c2bf7 @@ -54577,6 +60972,7 @@ f08a60383667f826c26a08df096e3d47 f08af5515f4ff6d1fbd5f366c481a6c1 f08de1bbe1c03c5d015df5f5aeb083c6 f08f6de2cae2e0fa88914a4ec0f08acf +f0903d915e9065b668535a9606ffbfbf f0906a0a6e1d220b0460db53754c844b f091219c8e290618a83591c658068a56 f091c4792207d40442cdc2906d0f0cb4 @@ -54588,9 +60984,12 @@ f0949f528214c17da4096a46ed4357c7 f096d4fd3bb3591f012956bacb365853 f097ea82830cc2aae6d36c1a97e3fb58 f0984f23f7e83f30fa0ba7475299be02 +f099bc4eec165d1b03d94171164eecc0 +f09a22e78af0ada07bf2f12aa48d4357 f09b173c5f03fe098db2ba689b69a448 f09c5c300d0040aef9b24f6891370f22 f09dbcd0f3c81917e289e92570e501aa +f09f87ce41a2d4866483e5ade6442ba6 f09fb6bf7c1eb382abcb89100507bb36 f0a1a98d5e1e7455fc6780b983def29f f0a1c07e74553d455075d8a0ee0e06a0 @@ -54600,11 +60999,14 @@ f0a29cfffbaa9e0633092bc3d6096326 f0a390275f62f9dc1177c46f9bd057e9 f0a5378f4c2022b32cbf70f2af523a4d f0a543b55795dee0a8411275e6018d13 +f0a58ba265297f8588bee0074123fb30 f0a9771358e279aa4ebc022ecf2f85a1 f0a99cfecb39132f469e4fbd9fecebbd f0ab461bbb9f31d8b197d7407b5d653d f0ac18af2421fded1e82a67115ad47bb +f0ad90eb881a0cc33ac95018b5ac1862 f0aec7ce77964b42397dee8082a82391 +f0b0ee0c4e205ce549ddb5b18da78ab0 f0b147a1b6e8f84c86c1e504f7c833de f0b187cb67289a7fa4b80c39a0e4f977 f0b330ad5106ade9f9fc0a309c9020ef @@ -54625,10 +61027,13 @@ f0d009a588006fbe6f144fdc53f4ed75 f0d06ccffbb415774d9f4456efcc8534 f0d385a6564a89134dda3d2b361eeac2 f0d415806bfa38167b8be56851e10315 +f0d6809b89c6dfd49e117b6cdd84fdf0 +f0d6f2d0fe11b75931620b26a67e2e13 f0d8f68b2246440b5408317cba7a007e f0db3117d502f084da133f519e4c1bbb f0dba299bcf1ba64ac6654369945ab5d f0dcbe5600bd89f84a8ce982d827d5d7 +f0ddbe9f00cae6e15dd277994c4b2770 f0dfa964cf8d9b70056febdb95226f3a f0e067f769671a888ccb728a046a6c1b f0e1d457227317338b4b2fa0e09fc720 @@ -54641,19 +61046,23 @@ f0e782348d82f7d0167393799b7b4d03 f0e80262f02ef2e0c7effc269da33e9b f0e95565c838a1e5d7fe80dee21d586a f0ea2d06c9242755376a3de4315c8540 +f0ea46fb397f47adc3245bb21cd35e84 f0ead7fa9d8abe9f2905a81a7903ce0e f0ebdba814abc854600c71ea44cd20b5 f0ec7252ba03a264fc640c25aa31ee3a f0eca4761d3b9cfce2058abbe1883ce1 f0edddcc47937f18b1a68aeec35c7773 f0eeba02eca4b8ae8a9ed6501b3c801b +f0ef637fd11912e546a9ad624346e6c5 f0f0e4bd9503433674b457a7319f6796 f0f285bd9b31c8cfeb266b908a6d9741 f0f3a12379f21ec7ceeec3b8a6b8432c f0f3aea31d32ce19e35a9981dd3d92e2 +f0f42449efa37491537b5cbd7abc563a f0f448c5c07b5d20c86895c50aef8979 f0f4f4df6c9ac4a4bb6ad00ba6fbbdbe f0f50e04307bb0797e45c61ace5f0a9c +f0f70e69eeba8f3b783f422ff8c01171 f0f812d7cc40080f14d16e6debdc77f1 f0f83e33a4bb8c4ad3d7a817d75ac0f6 f0f85470b30c199d0725e635bc9b76f4 @@ -54662,6 +61071,7 @@ f0f90e7de01c374dd44442f930137416 f0f9176596d71ef414a50a1f214a43cb f0fea1a07c31c15dd1214fca8a9c6e76 f0ff48b68c3cc29b4de350625e70570c +f0ffcdb81e776895e984fc04753dbf04 f1000ef3c9f44b3d89598f9ecb9d42ef f10168ee3198c17f8ee0c2e6566aa1f9 f1021b4e4d686773624e26cc423971c3 @@ -54670,6 +61080,7 @@ f103911ac5635e7c8716bf101afe502b f103a79412935fa01833d01b6a81c011 f104bb15657cb4a857eba1846e58d88e f105205316654dbb1f9ddd7a41984dc0 +f1060933a4d2d86a6aaa630ca01dbb22 f106ba86083f603f695a30644c7775f4 f10719454352ccf48f8041cebb44c402 f10bea1a3623592c343a0f03df3fae30 @@ -54691,11 +61102,15 @@ f113be2032f8fef0bec7009c95329576 f1147c8877beab902603bde084abf966 f114ca3f7c2855148de4fe0364eb5e69 f115ac2d9adcfd399b37f7542abe113c +f116409d64e2f49a912015886eb88f23 f11656d1f6500bff4a6cb77664dff084 f1166822d8b403c0c33820dfe704802f +f116c9b53e0209ad96d9ef5a34efea2a f116e5fcadccc6f9cd83c675c6e4e7d9 f116f93e1062f3066b70b3e114b286dc f1194dcc7cff9c8152b384566d6af1a3 +f11a2bb2060c4bc8539ee71c092e9443 +f11a817d1a10693eba0f70291cba334d f11aec70677d15c37d361012790713ef f11bfe4eeb544259b46dc6c737332321 f11c7c65375cd31864e4ffa52effd4ad @@ -54707,8 +61122,10 @@ f126f6ef3e08efc0b250cfaa44a78c84 f1272065d21a99923b758614c4deddbb f129159075373f8d823fdc0e1f8d9d0c f129c64363c4b9f4aa2543c55f8d0eaf +f129f9b8a78e7694a7558a5a7e04dd36 f12ae7c512f16fbb4ff4ad130dfd9ca6 f12b934d385d9dd3e4bb180d1e7d079e +f12bc69c24af4e6c7c90e4d58690eb5e f12e8f3c15ee15d99433d086b01304c7 f12eb96a8dee5a4db842b24067cea22a f12edbba01fafcb1124d6e65b7441535 @@ -54759,16 +61176,20 @@ f14e104634264c656cd40b7df4f3b552 f14fff920bd5877277142f7941603be2 f152d2fe84b44675fd10311b4fff566a f1535d702ffd1a0d0fa3e9e3588a0fb9 +f156711a18bb10830a78e4fd517745b5 f15740be3f8881b15bdd4e17d94bfee0 f157a030d74d22914b377b6da38d5e22 f158588be31293e526a3c5553d8357ba f15a03f9c8860eee81816e6656f71e02 f15a2fcd2200b5e8031455ae078b7d96 f15acf77ad329dd4c6b53d5e6f1e7fe2 +f15c7cdd2b07cc19d3660795746c9965 f15fe1b168d5200af832518d9e974891 f160fd14a296c7e4c511621351992554 f161111bfe9eac5da8475d85024d2844 +f1612d9658f6a4ecf1a2e032ff22aa9a f16229f0971487e39d99af28fb437ff0 +f162b1923de16c82fe7172c4b42a512d f164ae7d2ece76afcad0fc6e84d89fb0 f165587c2ce755b7b43924bb8b6f1144 f165b3d0f9427928354903bbf0f683cb @@ -54776,6 +61197,7 @@ f16721c6a6f91e291c9948aea06c3bda f168a4be3fbc55eaf95215bc05bb27da f16b610469dfeb6021ecadb1dfd1f487 f16c54adb734b990ba4e0bb7fac745df +f16cc48b229215c0d1b1efb21336af15 f16d030db47fd76b3356dcb7df199efa f16d07d964ae11e56756328394969ebd f16d2e0dee81d9bf1f8589f0098b3c04 @@ -54795,7 +61217,9 @@ f17c9775d45f22a4c6cc93a2aa9054f5 f17e69c6492ce7ee18b43810aa609e06 f17e9a9bd24182e07c6e6a639127b267 f17ec849c6c039ca15f9a980803b88e2 +f1807a42cb029e1bb6aa0eaf6e55d0ac f1817c455a7c138df0c32d7a87f83746 +f18184b0494ee099c2fa3d86d1a35b38 f1820e00ebee7f2b71b537fe12cc614f f184c206cc0c2e3e86f6d926916f7233 f18883a852944a13ecece8218bd2f599 @@ -54803,7 +61227,9 @@ f18947cff36a6470a5c27a814fa921fe f189b97e9f8ff4102b7320596128b20c f18addd417a0434c93979240b8dfee1b f18cc5de4298d0a3cfc4acea5935ec3f +f18ccb6c5648cc969e0198a6a2db8741 f18e42300efe430ec95a11879a0c9335 +f190484f4e974fd24086283c4818dc98 f1904901f3cc38cfcfda204afadb3a7b f190883df7bf225f17c7416f3dd7ba51 f191cf2872fa72bc658c783743df4cdd @@ -54811,9 +61237,11 @@ f192a105c21dc291a49a4f5cbb861a54 f192b54c5403ab271ad030e30b071961 f19397fb15f530f78941fc37071efa12 f194ff2fab20b66079085f343c6512ee +f19513fca95c7f4e34f7af6e20395fb0 f195f762fd3303671088a2d0876d481c f1974acb783a8c83ede8c687a156de94 f197e0672ec984465e3ccbeebfca23b4 +f1981af59b0e6229be636f6e744efa53 f198d2cda28d35709f414826be3a6786 f1992a053a5cbaa18969e4821afe3b5a f1995f60a50e96387dbab84c082a3cbe @@ -54853,6 +61281,7 @@ f1b69054ec8bdb7aff4e525223a93ede f1b87a1636410db3a7e894fa5f6d9b6e f1b8bf427df86be00bc53230bce2bd36 f1b985862e4fed1c495dd4b068270243 +f1b9b3273ec724c48ebc1b870d7bc460 f1ba0ce2382e8d84fdc64c8a4414ceb5 f1bbb09e203651c5ad5406098ea77695 f1bcdc4204e44390198369034bfefb14 @@ -54860,6 +61289,7 @@ f1bd7cdd4dc275ae30438327b135a7d0 f1be0fe49e4f7eccd05f3d3583759477 f1be4a15a7cda0eb1298d9b5bde8fa04 f1be68315e1679728bc7294b50d50440 +f1befafb54c2fece9834f31d4c8ae82d f1bf1c454a98fb12ec4aef27e7ade673 f1bfd0e177d439e8867739a63446d1d5 f1c112e9d0fbb8d08879f8d5c8eb20e2 @@ -54868,9 +61298,12 @@ f1c1ee731a5e9f2e90a9ba8a80ab0cd8 f1c20449f4167c7f4a3fd171fa170bd1 f1c3542880b640644b218da6e358e2c8 f1c3f56c130b5eb1365ce4ddcb52ac7d +f1c5e7001c71e7bfb1b753d10a44df8f f1c6774fea10bfa0cd70f464695b4826 f1c7c5177f134a1f5ab54e098f94e941 +f1c895b4453c85c07277971554348f07 f1c927e633aa3f2b6add8f30453839cf +f1c98b4fa90469072eb6c840c97cd369 f1c9d617c02353877074b79ef2c5ff31 f1cbe1ee0465c29b37d9426787eff1b8 f1cc2d37c5627907f36a7cf78fcb5e42 @@ -54895,6 +61328,7 @@ f1d9813a045742dba81dd7ea92e5ef14 f1daf2469d620c400f8c6f8ab3e7667b f1db92a12d26aa9b6121a0fa201ea531 f1dbbffbc37dfc2f5cadf35c3301b41f +f1dc72dbd9d71f6ff98c48836ca32752 f1dc8b926726d45586dcc27ec9cefa00 f1dce05350291c84f120dba5ca7e9404 f1de1ff3b3d21d4f79673ab36b37da26 @@ -54908,7 +61342,9 @@ f1e65be72c76a0a47095975326e55b02 f1e7b98d11567c94c5849439ba51f2c9 f1ea6f744baa4513a5f48fa8fbc77cfa f1ebd83cdbb1e67a3fc3b1af1cc54094 +f1ecf91ddace1db96c2d24ec58c754f5 f1ef4714a4f7ed212f8b05f7d9a2fb53 +f1ef8a2477a91d4fc60e1a957be2528b f1f5c64ff4b4aa37b84c08e3d790f40a f1f65922f8c5516aee9b11ada54cd72b f1f6e425f11782705dc12d499800b05b @@ -54916,6 +61352,7 @@ f1f7abc52042b6cd0653d45af68a4f2c f1f9bbf72c87a222d63da0503f37acb7 f1fc6d3fd4cdca6e420dbc41245a8980 f1fc8527c92f877d9b2845d3fd99557e +f1fcce8dce5de33127e7eb31102156e9 f1ff9b2d0ae74f04329bdd1f999c084f f200f3f87b3543d44487448f868cca8e f2010079404faeb9230b02a28cf3bf48 @@ -54938,8 +61375,11 @@ f20c14c4c98ef20c2355bd09eb208a25 f20c48438b91cbb64a5afb31506f362d f20c6de7a7b545bbaa497e05a060396f f20d6a52ba6dc4bcc2025f5f74c248c8 +f20eb41dcce1cc751d8ce6c17c11f30a f20eb89cf4f45012f39fad360297462e +f2104e70648f0ef885d9caa03d3ec175 f210567c2723d495bdffa1cd3d9461a5 +f211220cbc065dc1b4092abd6f9a42a0 f21233a554494402309a89b99419ffe8 f2139c4f7e04a446d73ed7292ebf6d47 f21459c970c51516d7c82c7380134e31 @@ -54975,6 +61415,7 @@ f23a00e464be5bee08d746b632214f67 f23aaf7b9ac598b56a30e528c2204a00 f23adcbe8f76dff9d00fe417e2ea4f0a f23c31414cf64fe34e12ce0c014377f2 +f23d46bd8949970671d19b13cbd79f82 f23d9161b55b7a3febc981f95d2ea3ea f23da810fc7eac0680bcd6dfc624df67 f23e91a9a8e67790d038d18de203163f @@ -54996,6 +61437,7 @@ f255fe91105a018f4a5932d44f301f6c f2583ad0d9b8a0d00ad5fceeb8ad0c13 f25ba4db79f834308c38d9792c8da000 f25c7c5e43d09e2068e21708ce42be6e +f25d6388c3c2800b20a6a16de1c4102d f260d56263c26a470c2f5dcff8a4a003 f260f5d63cd838c320c621df5752214b f260f830ed36c0f0e439eb0572feb89b @@ -55022,10 +61464,13 @@ f2739df1b3313652449311fc31534336 f273c4899ae2f31b27e9950b066e70e3 f273c706412d68073d762c61c33ae697 f27462f0a4f6ae27ff7e2db8adc55c8b +f2752ff538e10f54ccae718781544f5f f2799ac4025da32c8b8d21c007f07ae7 f27bc8008cc77583349797e34ff5ee18 f27bfe0e28c7934424b9465c5e00db91 f27c974e884e514bf703a8dd15b99a8e +f27ddc32ab55b6dc31726cad8da070d3 +f27e9b9dcde21690aba9e9e684147569 f2808808f00e00b8c48d9093c789e881 f280eed491b8bae881f604a53f8e5b62 f2818e3fb162cc4b1b9ba7d27c50c942 @@ -55033,6 +61478,8 @@ f281c16724d1234d48591da20c6e116a f283c7d143a72288491f02f6669b4a48 f283f93c1dbe4f1ef3f37eaed2498bc3 f2863963cb5d1ac4388ba25c67aceaeb +f288e4f6e0438a940af9c0fd18b73a5b +f2895a4e670ec138d0a224ab2f3ac4d4 f28ac0444b9811d7fc89cf0b5fa438d3 f28b1ada4e7b5af2e9b946c660eaef39 f28c5910b72d17b52da4990e64db0632 @@ -55058,15 +61505,21 @@ f29a423eafd147a67ca98b2642f1628b f29dc92bac19ea7e3e0d3b9fc9629e0b f2a1472ace8e39b3c4125bc148a56e17 f2a17e0908b8e93fcdbc40dedb0469ac +f2a1dca9785982806bd305f0aa4cae2e f2a2befcb4423c85ab3583479f2748ed f2a3f85b353b963c33fc9ca9c993caa6 +f2a4a2adadbac51d3514239dbd53caf0 f2a590b8cb693113f29a68934cd252b4 f2a663366706da5182812899d27b27c8 +f2a6c8e52034cf1a34ddbef0100c93b0 +f2a6e445937323554c8b941e81d7834b f2aab2f768941c121df10dc1c695fd91 f2ac7ce9f84b0efdedd10c738d315074 +f2ad42213e24cb71b8384f6a12ba83e9 f2adfa37e29e427b4ba96d812426f907 f2ae09eac2631e46be73216a2a2430af f2ae21b185b1bb3cfd152915b3877330 +f2ae5a0e03a17ec8316e15296a4ad025 f2b0fb51dca5b784aa52ae841ac8c29f f2b1a145af44bda3549a823a5432d4f0 f2b1e9edf92a4e0d6b240ff13ab95f28 @@ -55074,6 +61527,7 @@ f2b32bc2364247b1e3388cf5f61a14e6 f2b350f241a9869ef86feb3d5c94bfdc f2b404bcac91b478bd7243b8200938f0 f2b7938d4fca783715ee99a631a97b69 +f2b9bbaeb1cbafc64cc526fed5e6a799 f2bb213d06a457e579c775b45db9c322 f2bbceb0d1783549bdf3dfbff520dc4c f2bcfcc15eb10396d1f84f2fec84c3d3 @@ -55115,6 +61569,7 @@ f2e2ddf530418b008bcbde2abf486af2 f2e35bac2bb19cc208dd79e3d7fc14ab f2e36eac77d65e0f97f4577a3fe2e3d0 f2e58616f82e9e9e746a7675f5be4a16 +f2e5ecbc474d7a15a27c6976d32fcd7c f2e7886aa66298eac84f96de73571a66 f2e7e377e45a9b5e4d41978803e0fb38 f2e94a573ebc6ed8f695ab4baec16eed @@ -55132,6 +61587,8 @@ f2f324a29d89dfe1c3d5409dee46a8a4 f2f4d8b981780d9e7a7fa47af64c8806 f2f6ce4870f107344d3b05d5d93d41c2 f2f735638785f8a3dbbdb06992eddc73 +f2f7490c7bd609a15598f03f54fce770 +f2f86607f0196833274a31ee22c9d034 f2f883c3d72cff4192d72cc75fb6e538 f2fa42c4f6f8ad2387cd52dc0b388aa0 f2fadd4ad68148ed2f17a7169b240155 @@ -55145,6 +61602,7 @@ f2fed8fe8c4b9c629f6eaf72b3db53ca f2ff42c8f0967c9b6b0a44f5489e74f8 f30053aad07f5db4c58841bc37b80a63 f3008091d4569c490dcab88dc83018b6 +f302cb7431981e76c015717446cdb9e4 f3057b220d36849317246329ca65857a f305c85fa9ca4b62ae6156d6c8a08cdd f306fd3df891dfff360a2db0ed579ee8 @@ -55153,22 +61611,29 @@ f30790494987b79b35e80fc54e6b68d1 f30881d6cc265cc526a50a9854e2eb47 f3088bd264b359f73ef2eeb97a863c4a f308c8c8995cefb8c72a930eeff62643 +f30ba2dce3c5cb138322306dd13277e3 f30bee08f8c47283714465e4e1f2a1d8 f30df5c8d50e7d4be779bf2fd3bc30ca f30eeb1c931e886cd766bb82437832cc f30eee63405033b888c901e8c3fc1797 f3107d4ff2e0ae880231b7de4947d2b2 f3116eb2a18e29e3d6ac0ab36a9156cd +f315ea6fbcd40cc64fac2ffe619bc964 f317535dcb1c1fcd8d6e03e79acce760 f3185e8377e70be784855f04906cfb47 f318f8997fd67fa8aa5ab86b2501c43e +f3194e566d5096c1977e81c219a381a9 +f31ae264507197ba23111edd15ad8f9b f31b692c7992bfa474b1b106d223dba1 f31cde1944fb770c870b7e4e7c5f957a +f31ec9cd44ba0b75f90809db47d81025 f31f0d0d1984c5ece3e673370f47339c f3222f02219cb9d74a3ba2c7f5629f71 f32325045d6698dd90d76eab0c74a1a8 f3238186feb50539b86c4df14885fe80 f32487187e3cd08c32d82067163a453f +f3275bae3ba6a46773ca7aced2921a5f +f327bddb576b1ed02e61f0900b6c3662 f329eeabef950dece9dd6a65b5b64351 f32b88838460565af0d6103f598b3603 f32d3ae9421adb8fd510c652cc772f38 @@ -55179,9 +61644,11 @@ f32e4310bbeb991c1cd3c08a2f49e0bf f32e459adf1e0d4fdb008fdb977a5e5a f32ebae848f69bb56cb5cbe3d8be4449 f32ef8deedb495695c4d799294f10d55 +f3308d13735e9d81a39243db4cb42c61 f331fe6332293f6b237cc06627528e1b f333010223b0fe9e543ab0936f9593f8 f333a9315ef2e30e80012bf196f174b5 +f335ad6550917904f4ad8cbbe2125f93 f33662146458234cebd658471e4c2d14 f33756f22510aaedd98b2e84fb6e237d f337d3c31f440c8a9695c3374be9388a @@ -55203,6 +61670,7 @@ f34673f114d8c81a1c66f5a43830c751 f346aa077cb84c1da139c96d45c15ea1 f347bf5854f67ac419e90eec13e0dffd f34a2a45b1320588566d71366de5368a +f34aee312c56709581f881f58d96a654 f34aff251243a8824dec9a0e57c3df81 f34b7c6a80b682da8c2bdd4b3b141675 f34b82082ba25971f8367aecd9abb998 @@ -55211,6 +61679,7 @@ f34d0708955198a594e49b9c620525a2 f34e6df0dae19328611a0b09bc3656a7 f34f51ab286de0fc6ad79c123280a71c f350e609647f638d01ceba782b3c50e0 +f35147814663de29bf8bc46276e96cd2 f3519a491550beff36e35d14bd260e4b f3539e7bba67d49b04903a35749db6e3 f354c85861241d5b66180267a0979926 @@ -55230,6 +61699,7 @@ f36346f01c190ab7e1744af0171816ed f364351375d6f3bbd4ae8a59812f909f f3651fe5f1bd4d38af7162e1c04be6ff f36529307ab5bb434941ab532a79058f +f3652b1972a450ff37e2ab739d8d8e3b f3659220ad8f4e2ed45ba58cec9f1745 f36607688fba461a565dfe451c9df7d9 f3667d7043177d3fa7193e583c02c12d @@ -55244,9 +61714,11 @@ f36c62d77ad413f450386b3462c055bb f36cc1936590cc00c518096d0e49ab35 f36dfe7e6990302dbe4fd54e796d0ec8 f36e3b851101c072f57cc3ba7692c76e +f36ed8d5c5b6682010c8b9906c47d3e4 f3712ccc5176e63c5ecfa4071d1f10ee f3720bc6a99fa9d82e3fb8aa96a3c7b0 f372b016df9d207bf332c4b4c26f2d5f +f3733fed81e5e33e9df22bb949ece90d f37353402eb52bad67840436945c4d46 f3741763fa5d123d98d3a3dd72429bcc f3758872c6f7855d7c7267e5f80acd96 @@ -55282,6 +61754,8 @@ f3901743dba3e9f5b514dd752c7ab524 f39075c48853c17a65316ba2ade23c0a f391c7e780ac080b653aeccab717f067 f39474aeaa157d06cd4e85c5ab379f1a +f394b191d65f3d93f1486b939aa51195 +f396262e311c9b3c2ab5542edeeb584f f3967d41fb95ae9c10a7d17baab3bb33 f396cdf1d282330afd0817a9f11cbde8 f398a5a61fffbac4bc42030bb8f52beb @@ -55295,11 +61769,14 @@ f3a28ea06647e26d9edf9c49ea27a7e2 f3a3cb9346680a1e30b61e3d992f8550 f3a40c96f661433696aee365b3381c9b f3a5a9ec6c0f7ef2a3fec8c406d95323 +f3a6cddceaf98e2ff668ed83a1eefda5 +f3aa9a70455550b6916a7a49dd57bbd7 f3ab4c679cf36fc576b3321a06ae3399 f3ab922be5bdd39214661381e016ada4 f3abb2659f3f75ed47000158678f50e2 f3ae055e736fba1dd0705414481c7c5a f3aea75848ee20057a27ed0c55758bf7 +f3af929950aa64ad1e56c404a769614c f3b0c666754fabe5e045f2aa26c372cd f3b0f36d45d59127d1c548c8618040b0 f3b12f49551404cf29073a5e4c819382 @@ -55307,8 +61784,10 @@ f3b26ec3cc1b2b6757e18c73fb7673a6 f3b34ccd4d3a203b9c17ad7662b0e228 f3b4ea042e29cab03523b24dbed5e4ee f3b50a534fbdab07f1913c2f61f00bdd +f3b558ee10154768efecd9aa6282ead6 f3b8b0b5a421686a36adcd9a82c85d06 f3b966fa0977b968c88ab04ffe38a4ad +f3ba60147767b83cd81afb9f4eb00713 f3bae0cb3c2706bab576e7d3d8a7c626 f3bcded630a5659c39b17989ad5ddf9c f3befa984d1b1b7c6242dfb203c9b93d @@ -55317,6 +61796,7 @@ f3bff496d498e07e3a3af389f85b4073 f3c0c53905002edd6d78d1b49d459a1d f3c24f72a37bf42497984f776e3bab98 f3c2701c6140db301b2d824433544017 +f3c464593ac66ceb3b20d4c80bd90f38 f3c79da103fe6b8b7c118673f42b1b8e f3c7a87e4f2b0e035db526518f89b502 f3c8a7c8d280e51b8ac6a61e5c2b2798 @@ -55332,9 +61812,11 @@ f3d234431f0c88521f5a7a5734b2e216 f3d3392e0a16300d354f0910fe29fe42 f3d39e97edf739a9cb2acae406a65b06 f3d5e00ce6bdb0e18c04171777565f8a +f3d6d50c92006ab6985a9a331e9b3f35 f3d972d7e55fa513c1716b393822f272 f3d9caa62c6dd7a486e72882e2d06154 f3da13d9a1c1e84623e02ffcb4c1a57d +f3dae7a32f6e2d6b6b2bb4f2e75565ce f3dcbc0eba8f53858649772860a1c669 f3dd3fb238551806c94433b579735d24 f3ddb6e00176ad789d1cddb336378ce4 @@ -55351,11 +61833,13 @@ f3ec0d2ff2bae9c61064a8b35a6d17dc f3ec3f5f3b18be74d3cd8b93f690f14d f3ec701bcf106cd5c59e64258d95f590 f3ed750618add38c0174e63e9f6a7dd5 +f3ef0c664f0eba64c8183cd81acf308d f3efaf4df8b72ddab0bbcf57886d8cb7 f3f0e3e8a00a9b5af2a35def80226827 f3f172b4ddc276e2cc30358c16dd8c46 f3f332c96f217de5d559fc297ea74a53 f3f3d99513cae064daa88630974f2587 +f3f59464d8933337528cd6e8ad391b69 f3f5dd7c9b7a45349ae3ed4b6a18e18a f3f5f4530f8e96d551c530397c95f97f f3f6ea3866b67b7618da4ea4ce1fea65 @@ -55364,8 +61848,10 @@ f3f8274c31ab468d29861d2c5fb18feb f3f8393103647db03067a71761597f3f f3f9cdbb9a94f959f09cb42331f05aa5 f3faa9315f04f4c1014d16e37cd3efd1 +f3fae8a09135319cf340d2a1562ee5b1 f3fcaaf1fe41ffc78f604120d9a52bd7 f3fcbe6dfd593cc171a0e09599e96adb +f3fd527817065cbf53bd7bd0c7305bc3 f3fe3b68a04507a302d9255067a0785f f3ffc49f18807d6bdd2822abce610302 f4006747fcd40d63209db616dc0a4f28 @@ -55376,6 +61862,8 @@ f402ad9a39102b47ef0715d4a209d1ac f403865ed0382196db7a18c835c5764e f403ce783f8127dafed6f5bddb271899 f40562f6e4b52a707e42ea7aff9bcff3 +f406741133dce67495c3c0a10420bc95 +f40720e130760ac8f936bd6e8d9f0bef f407e52bf0eb0da37455458a30f47f1c f407e881b26d4106c7d58d1174522424 f408d68913d23e293d055b7ee0e5a276 @@ -55396,6 +61884,7 @@ f419767d0d72051ade7fe412eabfe690 f41a7423066fc3b802194c12ed65766e f41aa6d1721521bd015aa1ce66e1d8fa f41e8ba83a6e7c5ffa18faba1f2eb53f +f41f0b651f6cd6bcf04711a63853629b f420c536251faad3367adb20eff5dff0 f421244eca1aa2a056ebcbcb4bdd78c4 f422374beb0d19b781509c0c12807de9 @@ -55415,8 +61904,10 @@ f42aef686774ac68ae4199a89a440e65 f42b017e158a3529c72b35775390e227 f42b245c3a20a68f269e3514a2c5dcf1 f42d9e599b07e13418dc9d06c40922f0 +f42ec6cfaf45db32b1b0daf24f7ac414 f42f45b3a01f4751a9699056beb49529 f42f48585ffbd0d8d154fb4da3549864 +f42f750873283793d44b710e214dbf54 f43244a199acbf0165744dbb9eeaaae8 f43336e694c57150a966aa99ba80d9e9 f436204c3129a8f88e5ddd75d3aa3119 @@ -55438,12 +61929,14 @@ f44c2c0a8443bb4d759e275d6e39a03c f44dc0898a4a016f56070cdd45e77c89 f44fe855c202b44f8847aef67d60f0e2 f450354b01b299bb15193e2e9c65e2d0 +f450d1d16b5a639695fd7d355a6ee9bf f45175f47a09a9853815e9e749c22176 f454c9727c0d7de722b5d37ee17aed7a f45680cc727153d7dfe9e3b3844641ef f4569de6fa32a433701f3e5b9c3e2f6a f4582024b7132b1a4da3393abc0fed8e f45ac82d078ed397208fc1e2ac935066 +f45ad2c68c4bf6a2e21a19b7f0ead0b9 f45b28fcd1d3ba3df549ba33f11f0a15 f45ba296932e7ea6ceaf57c43ac64850 f45bb2a5befacadc748e52b5b52ed70a @@ -55480,6 +61973,7 @@ f47b3da133075a559d8484fd417599e6 f47c9229b3c19e99bef78eff24a698f9 f47d463435efa4a438ecf091d87cdb84 f47db00ec563292f0ba196b047e954c4 +f47de5daa19e5677211ac838b11e709f f47ec9131a94a338d5e3184f9005b27b f47ed3e4b0a7d445d84b3d4f0226c4e8 f47f4e5ad72c33236b86a6d0d0a679c3 @@ -55499,7 +61993,9 @@ f48b91c087890949427cbc275afbc857 f48d0d841ecf92056a8146f61ae06f5e f49091849da1c82eb0441bcc01f565e1 f4913609cf70312f3b64e6081e09bd23 +f4938e392126bbdae1fb6031c140cac0 f496de538814464e74cfc62c4391516e +f4977fa9efd5e593fa1e2969809b6d03 f4988ac8f25295ae427cbdd3957f3e71 f498ab4194a3ee456283f1fdad8ed4e7 f498ecbf74d8b2e5089745b60edccc2e @@ -55510,6 +62006,7 @@ f4a2b1344dea8fe418a23d28f76f7ae4 f4a378f786222899f659d93e0eccfbc8 f4a3b3114838332d3f9bfd19f76d2b7a f4a5369e5e3075215251e605c6127a34 +f4a763b89e274e68d1aa43af860d4e86 f4a76629f61383c53dc23cfcaefddf74 f4a79bcc3399363b2466ab82ffa6c5b5 f4a8ffc6e7d46309eb2733cd3fe1d275 @@ -55527,6 +62024,7 @@ f4b37328fcaa67c714cd0c218c649540 f4b3a09d630f3d54301993a53e4b44a5 f4b6d37437d6f065ff4f0669ee03b1d7 f4b74b2d27470b69978f0827d9767628 +f4b77b70987d737060b30873a76778b1 f4b7d5e7a39e83410c698b525b124c9d f4b981ad5c3c05d7807771688a688b04 f4b9ec833fad6a119cd6f418e030896a @@ -55543,9 +62041,11 @@ f4c37681cc2fb17c2de8cc0a12b85670 f4c3861c9e7509d2b4e91c2806817d15 f4c4ead37391ef0491dcc2d57e8ca6a1 f4c64ed80653381f807731e806bce11d +f4c69649fc9c4a996cef907dc2b86b26 f4c831b08bc19c899d3e881f794dd290 f4c899acb1b0a86f9e097e9e21de185c f4c945cc1339bc9f683ef02c940e12d2 +f4c96d08abd9421321281256d3d609af f4c96d0f6ce04769ea14bee21602a516 f4c9c9ab54aaf5d40bee3530b589ef17 f4cd6c540cf0360bf5f2ae1f882d922d @@ -55554,19 +62054,23 @@ f4cf3984631fa8df37a0434379fb2e4e f4cf85b7e7f2d270890e08a5a981c693 f4d1186943a42747d980279c277cf14c f4d1e634d9bd563caf65c71f8d37e1ad +f4d2bec70310d830031ba0dc45d47af5 f4d368d943e2b7fe2831734f3b4337da f4d4214fc1e1c0aa3d4e676e362e20b0 f4d4cafe28990294ddf0c4e213d0bae1 f4d55a9ffcdfbbeee0b41f7db9f9fb33 f4d59317bc07a13d16211f2064dfba50 +f4d695d9f22f97af399b624975c7cc49 f4d7733e53b3b1f67b932c3b2edf017c f4d8148e1aa0f25d0e4dcd2334ad0a86 f4d8ddab821d382cb4d1787bc1032d0e f4d8e499248e7512b61e15373a4dcdb8 f4d9fefa7793b86b17e8e06b1528dbcf +f4dbe9fb659b855b8d301c3a21b9515c f4de8297456f1ddd39f9489a508fe53e f4e1270f665e89fad953ec10ec7b6636 f4e135a6b0566d24e78187448c52e957 +f4e1a2270240beb80caa15a9de314a64 f4e1e20d642f0954305cfdd4a9509006 f4e2c95e375bf8cd9bd18769805f3d96 f4e35382b734e979628729c6198b5613 @@ -55589,10 +62093,12 @@ f4f668233ca7630849cc574ecf4b903f f4f6ef98bff37d56e41ee562954fa7eb f4f9d99b02d81d36b971ba400c5dc77e f4fb20366b2ad001ab54b94abd3a6b2d +f4fd6b1086b82520f702e1db3f83527e f4fd7d89305e6bed6c1d4928919a1896 f4fea4c26b8796d581556defd96026f5 f500dea181b256bd8d912ab78f97341e f50151d4be8ca575714daf84eb1eda0a +f5017178cdd3d6faeb126939d058b475 f503208b469b945b9869a7d25b8c9e72 f504a5931edb9b8aaa0ce4ce721bac0e f504c9dab96d6f88abc1b0febf9f2ca8 @@ -55613,6 +62119,7 @@ f51706ad21e3dfddab4ac9eff34c54c2 f5183b91f3182a7bcbabd76eb43b8447 f5186ddf9668a480ca12e94c06f9199a f519a13600a9f499b19a26ee1eb2b5aa +f51c94793a9c68dd418a162d7e744cdb f51f6a96417b959da827b8fe670a3105 f521e2aa436ee425c378e687e2663085 f52623a3b2debdf33d3d6a36817eda52 @@ -55621,6 +62128,7 @@ f527d7c8e5ffa3afda67f156059deef0 f5283275f7d5e312bc8bb4380930567e f5297daa6bdf57a92906805bf932b088 f52b587fc6e2c582724a70a2c8035e6e +f52b5f9266cb7eea99ac1f53a1606265 f52b7232267f85b27e8f4c14c0d0c19d f52b868ff0decb1aa30533ff00560240 f52bc80a7079a28e77199877443bf9cc @@ -55633,6 +62141,7 @@ f52fd252029ed6cb9e8e7f174e174530 f5305ea3c06482738acaf77c191470e0 f5307615ea38db98214bf9fa24ef0ba2 f5324e2b8e2c447dd5cacfa91bae05c2 +f532a1d6bbdcea82d4f7885bf3ea79f9 f5331dc722949a71a0b15091c9686d13 f533eae3ec385fd57f71e1bcf9199065 f533fa9956e6a42e3847bed3801f02e7 @@ -55644,6 +62153,7 @@ f536882135e737babe9dc5c480b7cd46 f53ab7453adfcea98148801355f8b9c8 f53ad78706585b06ac5bf7eae9f78e8a f53c71ec17067d03cecd68165c2bdc60 +f53cf34acdf7627d037856d0ae33e763 f53f048801962c2a66f79ce981b13370 f53fb3cc822e4d0bd8304b3a4f78d85f f541692505e25db8ac0bbfd7cc277d2e @@ -55652,14 +62162,17 @@ f542b47d00e79e3414cf7767b7a13eea f5446018bb5d97bdbce6e56e0e1043dd f546b868d8263ba4292c147018d5abcc f549823cbeb6f52a146a0b50cac0c7b3 +f549fc4b4c86739656685dea6b0262e6 f54a3742d806e4786b3f800cffa58857 f54b3bd09f143b2824662e310f52b4f1 f54b4f52d8744ac82927f6010b264dde f54be75713e0da68e38709df9b67aad5 f54da2257f292f072d4e6ede11bbbf95 +f54dd7cf2a75bc9e49e5d53e41fa4a29 f54f210519038b5d28fa780c4fb8ffa6 f554299e2a6df98ec7fb2d7af40ea7a0 f554aae5791ca8e5f73c9c4ba042ff7d +f555105f79896329730e49d52e6d3e82 f5564c92d08e3d085f5adddba98b320f f55709f5febc992545f7b025d648f299 f5572403051611145e9f20039f9bd765 @@ -55669,6 +62182,7 @@ f55d020dc22371d1314ed80a9e173ee4 f55e7d21caddbd10c20a949bb8e6f929 f560c8a07b34b53bdcdfd11fe40728f9 f560f115385f4f3ca5dc5133f0ad993b +f56148c87cb24e99f590013cf3a54743 f56241685fc5ba3fb5355bf51479e873 f5626f73bb6ab25c3fc11ba2f9fe6975 f5639c77ba450d7e520a613ba1dc8886 @@ -55707,14 +62221,18 @@ f58139483958b3a88ab21f6d7e44a1c8 f581d0ff31c6bd682b457ba46ed5f305 f583a2b000e7aa19c2d33abd62d92d7d f5849791119ec54d7cf797286adbba8d +f5858c3f572b3935253ceeebc0b6b271 f5871723fe7deb3ff0baf5d651366822 f588383569dd5b5edd068b21c57b5d4e f5887741541025c54d013dd1b02705cb f58901d598d23f8daf999601b2ae1348 +f5893538df03e650c72286e0baf3de87 f58d08b736e36e68d792e9e59c05ec17 f58d8be400ba7a8df88ad40633afe01a f58e65f36d837bcfff74a2ff69d068c3 +f58e9195e6d2ee924c408f08c6bed0c3 f58ebef63c1ac89336d6c04b4890a92b +f58fe98263bbabc00b5881e033e55988 f5912148a952c0a23755aa0b75b2b4cb f5913f21266ff19d85326da29323a441 f591cc3835d869cffdc1b17870b96ed1 @@ -55731,13 +62249,16 @@ f59bd144b6d2d26bb73f34019ea81aaa f59db22d1681f6b34c98f31a441523c5 f59dfbb991e3a30004ae2bc6ba8c0afc f59dfc15bb7f08cb4f2bae820c979fa4 +f59e1e308bbf733ced6e407af78669aa f59f0f7c4fb29f25549802118dcbd33d f59f93b849591b3b0f27f3ee9e5668f1 f59fe526b7a0885e535f06037265d90c f5a3887962ac0d5670f778cd94a9eaef f5a413b2ad93af416b1b767fada2b949 +f5a5194de87947650477c799ba9a8f25 f5a596f61568e4c4321c60b8ca741847 f5a60195a9abc71420018dc918036449 +f5a68cc8a8d6f80468c8072e20c793d5 f5a7279a306eea13519ba5cb42169a55 f5a7fa812ac67d23be78c8d8e90b6aa7 f5a89fa00f66f91374d63260aac8c6f6 @@ -55749,6 +62270,7 @@ f5adf90e17f90a5da3b2a42fdd976381 f5af2c039fc6c2ad8741b5f788652597 f5af92a56b46a52cfd089eea27df6275 f5afaf10706549dd719a7fdedc990ed2 +f5b12cb3d907139ce979e4e9f35d6c1e f5b183e77cf0f00ae9ba96661cb3c19e f5b1a55e2a7e87af2d449fcbc96b745c f5b1ad2142b0d00fb368d206bcaff61e @@ -55790,9 +62312,11 @@ f5d3c7435a5b26294768b1ee367984df f5d6814c42fe5ab7d0739831b02709f6 f5d89aabf506714160bcf2fde4e5cdae f5d97d5c5f09156822400fee99814331 +f5d9b4df7b7b4320ef737fe8e68aec60 f5da7c5257f29e4510b14d468bcd6c3d f5da7c5496df96ec5658f2f8b2df86f9 f5da7c712f87e7cdc603fbcb4b552f43 +f5da8c5bb24aa41f8a26406e592639a5 f5db9a0024504235af421d224d737263 f5dbcc8ebc597acc2fb6cff177bf2efd f5dd0bb3b38081d4a3ff7f4ebdbbac20 @@ -55805,8 +62329,10 @@ f5e4de9d1d2463ea81b923d3f4bbada4 f5e57d0a4d8d06680e20473cf803537d f5e5d14fbd0c51ec7e61c8aec9db327d f5e6e3d2a53bb5ccdf6f5c7590ae0cf5 +f5e8719ffd849f2a40979737a56701a1 f5ea8a00b617ccc79532c035d43f4de4 f5eb1c9c3f5d095fff9ede9737a49b95 +f5ed3089cb53f975a834d9fd05d94f9f f5ee26c33a58f3aa87c772c00e7c83cf f5efa2c7ffeb90464a1edc9f4acb3465 f5f06caf3476dc6357e834dd675b4a52 @@ -55819,21 +62345,25 @@ f5f5b787e59b5bd555fb24cf50d14c08 f5f6c509b00d47483821cd0df0bed245 f5f7ffc161ddda8f451220183eed73ea f5fa98ade7069c5cd188c5989b356968 +f5fbd749114294d44cd1eff8aa520544 f5fc5739290e31c31295e6ef2a139afd f5fdf99521e74c6273b6f7ae59e2efc4 f5fe08d2b8f2cb075868bfdc79130272 f5fe69fbc0a236093375a2e4415d1053 f5ff2076ff3a831c1f8d76d3ba1a4c78 f5ff8a8e101ce6b447ff5a399a4b52ab +f5ff978c8670056253e4ed53917295f5 f6014ac145878dddeeb9c27d7a4e1179 f6025d346d9dbb8c4a8237ab01c019eb f6028bae7448bc888bbffaa55d6871f4 f60535577ff1f14f2eaafac806597411 +f606cf7bb027164150ea268aa18d163a f606dcdeafa5f27bc64db2c471ec089f f608124ba52a311d57b33dbf32f95776 f6099610dc1ce4200719ebcc1f919abc f60a67b7a477046b4790f7bd4dc83e13 f60fea42cc1810a1185153a9fa8dfe2c +f61158d23daf579554ece51e7913571b f61169e349aa479ce02c36d96647cd01 f611f50c8fbc245d187c1ee5dea87a74 f61c35e11e8bb00bd8a4f7b427566f34 @@ -55876,10 +62406,12 @@ f63e7973e31543fdb1ee4b212865b612 f640270b52d30af47f7ced6c313b7ae2 f64079523e41064db93ee0c636b68272 f641fe46b391b75195c33d3135201547 +f64314a60336e7923ef46280c2801ca2 f6436456b4c4e40072470462ba0f7a10 f644a4341ee99c2803485ce5f63aec24 f64500912148caa49c4a0969e46edb03 f6455ce1b020e05ccb9c86eb52d66a66 +f645ab06740db5012192454559783700 f6461a6249f0ae5be98d6f623efd54f9 f646d6b5db7eabe0972e48f53ffcd766 f648b286c6d6c5bf3b54984f7b5fdd03 @@ -55902,6 +62434,7 @@ f65659ab61e9029bb688f065794d476b f6581ecc0e1cd1608afc7f683ae82ccd f659579ec1936173d98f334509a96ad7 f65aa3b8131c57ae52ca83c46aefcadf +f65fb74330b751da5bf0d5a160969432 f6621cc1748f1c02ef9cca594adaaf3e f662c7e66e5aa482defd2d36fc9558ed f6668260540acbca0db69fbaee2c9eba @@ -55912,24 +62445,31 @@ f66a10c0b1087dc57f2092726711f821 f66b8960f7bde77263dcaf2e448f0a78 f66c50c893006d19fc1a06ea38e25cc5 f66ca59ee3d6eb265ae6d272fefc994d +f66d307b164865f98f022710314a4712 f66d4b03d98403a733303e664385eecc f66d76ba7faadffcb54e180bf0f97eb6 +f66d907a28973205607d38c361c71e74 f66df742d9af3b7074daa5ee1eb040d0 f66f3bb13da6c9aa3d4a6f2f02d363fe +f670e129c91da56195d0a120e77f52fe f670f36159407a3b2225f1053dc5ebd7 +f671fd14b7c1435edad9b90e3e718a01 f6721d6142947967deaab7f9b058032e f672b8ced3fda233e56e619dd460afa1 f673eb094543ddec1fd81fdc26820e68 f6751b7b264e26548b9e6b45a7b9c6fb f675d4a71b8e7df6c4dfed5a990581d4 +f676bb9b50790014f4381b07175d73bf f6779cb70600de511d00150c57db8f86 f6788a13326478908a2eaa9eaa090f91 f67b4dfac7f0ae9ab48a82c16534b12d f67ee01091df6f5e8fc67fa1ac9e71ab f6817f298ce1a4e805aaace59ab5419f +f681e69de9144086eb6b0972e91de3cb f682da643d188f01684a060a9b206707 f6832941cf07f714a26a89d58e2b5843 f6842234a9e004b696abe937b7c6875c +f684c13ac6fe99f385caf513d8a80949 f6853811fbce83aa7f266626879bf5d8 f6896094fedd9fa8995251bcdfdad4ae f68a9dcc7e38da2c1421711e6d9c5916 @@ -55939,6 +62479,7 @@ f68dfa34a6ddeba0ddb1ee2b67cca448 f68f6896e12975dec6d6ceacc10405e1 f68fcfccba4569785bc2776c8b5b6f02 f6945e6c3a8039599c7191de19d0118b +f695c99e94fe3cc01334852b498b07e0 f695ffae7e7d7cf53924b52b9130d1b0 f6968e7529ff94567e3fcc0b9928dc78 f69723b0bfb817518da25ebfe396e6c7 @@ -55947,7 +62488,9 @@ f6998660948562fc8efd7dc71d31fbaf f69e78801c88ded099a866dc050f15eb f6a116236ca8a6ad1c032e7fc1baf8bf f6a11808557c2ca62112001d4e6a177e +f6a1e3a5ad798c3f1066105a1eb9348f f6a2b04d43c72c06cd065c741c381a2f +f6a64aab30ca2cb710580524e429825e f6a7bc396f76f74f8bdefff59fc03469 f6a7c5cb74f62d94a284fda27c38f3d5 f6aa25f41b0a4c8732dcb51a24381938 @@ -55956,7 +62499,9 @@ f6abb7d9d89df6253cb8d757fc33bfa5 f6ad1c1401baed115b50ab6f6606f02d f6ad4a80adb097e23d45cb65a90ebd6b f6af908fca5e6368d769759e3b3306d4 +f6b175f89152096fd76de0a7e9746bc7 f6b206b7d5fd6f57d3fbfe9a0b73fdb2 +f6b28f1d0dfba08d13462fce446a872e f6b4e79af290b4e84c9da4a0071d49af f6b5ad8ee5fe35eb639744ece3a342c1 f6b8d5751b52fb732da61e67a21acbe3 @@ -55981,6 +62526,7 @@ f6ca235a6c4b05dcd1e885fbdae45f1c f6caf313e2b60629a428c793166b7156 f6cb4dfe340f8236eec808d1a9616930 f6cf4b7ba16c30dba583b1fbb7945042 +f6cfaa3201ef658062b1a71d28da2fba f6d1036b431db16e68302c686e172cbb f6d18f905d60fc7b46923679b79e58fa f6d754413849b0eed4e5aa981aea2745 @@ -55994,6 +62540,7 @@ f6ddcdefe2ca7f05c35f95ea31c38ca2 f6df3ce7203dee513e8e055d7e22fce6 f6e0d16314e002f1de9d9aed6d52f076 f6e2529decf814f8031d57a4374360eb +f6e399f5c82c463d8880aefaf6af43e9 f6e44b49538cdf4913fbe9642923f18c f6e467b35d5f92e8759abfcca34e0087 f6e4facce68e0f7ade20824aa52a0c5e @@ -56005,6 +62552,7 @@ f6e9ae00cd8815aebad87a49dafa6bda f6e9ba6729e9e0eab6e8395a3205d7e8 f6ec4dde97a40adbcd3390433094e023 f6ec5cab44266d09d53ca67c7f0a78c8 +f6ecf5c087b7c99a1a740ab4ddb73af6 f6eddf4aec527a6a5874ac20112823d4 f6eed9cd839e0456c96d2d191e86b4e2 f6ef092661bd648c01bf0b832887f231 @@ -56012,6 +62560,7 @@ f6ef347be0a59c03aafaccc8f9fb6f36 f6f0113f6ea4dc9f42ed00d42177e9de f6f034c103bdd3540a6f0a1334b43ed4 f6f1742b19c0cecc58b7cf2773af0427 +f6f27efef413c6312a14dbab9d5c0825 f6f3fbd5998c086a9f4f3a61b0eba7b1 f6f435ad3e80313800d5251973a9e3fa f6f68d49ae37fd334a552ba324455fdb @@ -56022,8 +62571,10 @@ f6faf825a8feb1c1e2548845170d1e95 f6fbd32cc6244001c1df12cdb4814348 f6fc8fe7c0894fd0076aa765668762e4 f70020cfb14665396507c9bbc85dbd8e +f701909947014cfa9408c04161296828 f701a206125bbbe78ff8ab2902c16992 f701fafdcb5d163d1446a59be59c9ed5 +f7020cb6283597ef783a7668e6007834 f7023f686f1981090d80b1d9fcd88dc1 f70317b8fa3b8e539dfd15602d67b502 f703e7d307fec9a465df5f2053d83244 @@ -56050,12 +62601,16 @@ f71b4bcb905b228a0334dbda6b924896 f71b7113c4ad3db415d999a2fbdabedc f71cfd953da808b6c8505d12f52ec891 f71eecdf995b3f33cfb67fe0067c3a4e +f720793b5a5b61f1116f0df5b11debdf f720afe896abbf76e54d007b839c03d5 f723d785e3a51bf36b41d8d5d7d7b32b f724d61a71f3f70c16742fec5d1d43a5 f725782771c43f4339242ada12032d76 +f7261301e2f81eaf537af8f150a2a50f f7267220509d9292907102028270e66d f72820121c6f6a872ab29030877465c0 +f729b9e3bb709e7e6580a0ede1e85375 +f72aaf22d0b5735dcbf1d742b4f3e81c f72b8b0d4660d934c1578d581de0fcb1 f72c92d1e4f5b3d0df6ea71ca66a8578 f72ce7d1778271d25ceee71a45804a2c @@ -56066,6 +62621,7 @@ f73221057e19d9f46b29c37212969ec5 f7324022729bf4262e748628ff594c46 f732b590c0aa6c81c4095fb6a52e3f20 f732fcf11687f053789a515b7900d7e4 +f735c03b5b27f2b144b127150a0babaa f7367f88e2038bc02cbc9fabb9dd247b f736bfc1ab397100e55fb7a850108c6e f7376bb06dad23e2ff94525b9d758dd3 @@ -56076,6 +62632,7 @@ f73a7bacbb02c07a4bf46bfc7a325a28 f73c279e4cab87b5c34c0584b103a4ce f73c54751efd6de13515fbab27ce62d5 f73c6a783e58ba6272a3ed15a6641933 +f73f1a9b022294b13f5a1fdb2ed35a33 f73f42fb0d4a78ad77f7768453684994 f740bd653dbf6c9935c28f6c9ab3b8d1 f7442d9627d8c9a4c58e249c1c6da641 @@ -56085,6 +62642,8 @@ f749444ab4fc76d5ba8e7336437aef16 f74ac4ed4f279f20692f6d374c49fa82 f74acc56e2782259ec5b446fbe718886 f74b6d513b28e203edb8d7e6ec9a90f5 +f74c433ed43a7643a71048d3c4926b6c +f74db6f028ad687307e0324f4582fd98 f75266332bb9dccaa80b71d26c3e0245 f753dd925b11095e9456a100d3bb10a9 f755271dff2b4b1bf654b2e1c9aabd90 @@ -56097,17 +62656,22 @@ f75b1a6ed10c64efc01e36a7913149f5 f75b43792288d3e2d4048e233685cc3d f75b4c5182774430950b0949d2bd2841 f75c1eee5bb895c469a7b1269aea6108 +f75c2fb5dbd47d95373ce7b6ec67a837 f75c7379023b73658e0346b451e0e833 f75caaf95b7828cdd4040b6cfcc0c8af f75dee893479e2758ce4665163362bc1 f75eee9fff9ab657af859d74175cd89a +f7602bbebf1fad4e162c14057a2129d5 f761c54567315a5151bb47c95aca90c4 f762fa1956dee3d27a4fec021348fc61 f76396cf58cea109d66feeb72956ce7c f763e1f635dd63c8057a1bcb17812486 +f766337714a184563904e4b057ae6c9f f767e49306039632c49c246197d8bd9a f7680243c5d215e1223ace7770076e36 f76916d222d73f8a3661671f37c0a7e7 +f769b363774162bed89df58795992d55 +f769ff436f7330910fe43cd5fef7142c f76aeb4985759d49c45fda685e38179b f76c67a43295f40b7694643beb35296d f76d48e1fe4afcf701f0ebc7d616f170 @@ -56134,6 +62698,7 @@ f7806ca29748aac22e7e711340bc71ea f78146dd5187746f87ba49bc0e2aa15d f7816f8df4231c5b97cc77e4833dbd91 f781bd3a9de54900732b87356a194b82 +f783038c4cd458bc59a4795a86042652 f78501a7d0a850ca4998efb2175a515b f7851ae69ac0e0e8f8271f12a5e2c9b2 f785fb83454949cdb131a68248506372 @@ -56154,6 +62719,7 @@ f791cf3ea537b691ab4834ff2d8462fc f7922d4e641ff7c8e0d8c6cbca3c9357 f79431b52e9cfc24343a51564c655648 f7975bad0a78cc7e9c716a8d346ff59a +f798564fad91bf24ac3b4db1a200bff5 f79909d92d0f6d957aa2e14a1bfbe964 f79a032f2a6d30087c81be00fa1a16c9 f79a54636377b8ea56f023b8787b211b @@ -56176,6 +62742,7 @@ f7b53927260087bd43f654d4c7efb549 f7b5a22ec990e4b4d6daa4d4b38116b9 f7b8d8f1f43e361976567e43f7779723 f7bc7a1dbc2b421ab5c615b43a961357 +f7be3fc50c91f705602dce7a24b1f2a2 f7be6034a7ec6bd34b432f5e08af4b55 f7bf0018a81174057fdbeaed5ecf21c4 f7bf917351ad1b9f5cf6c567e27cb05d @@ -56198,6 +62765,7 @@ f7ce76361b0ba84504a0a126ab16f051 f7cf65412bcd5428bd67fb5fa9924ac3 f7cfb8fe1fd1592b46accf4d83454ff4 f7cfe4782e6af2599faec3c436a0c60e +f7d13c4027be8607241a3ef94879db4b f7d14bd95e74b3013acfbc0c51c55c19 f7d175f161eb7b34f289184976324f51 f7d18b7287590d65e297e4ee797294af @@ -56207,7 +62775,9 @@ f7d95d4e2fa19356cd82001261b1ebe6 f7d96b99ada580c15ba7a0b3566c8ee4 f7db10d76728faa29b8349f2712e46c6 f7dc6c0bf775abea4be5ece4d11e7b49 +f7dc6e47cbcd3ca2b6fc5df1a3a4f905 f7de2c0e493dc03d4cfad11fb6bbe2fd +f7e05c97e90d5e694e9f40c9f8a03a31 f7e068cde4f1dca18beb38b488ed2398 f7e07ee2a35455d9ed6f9cb5fd19e640 f7e1e4b14eaca6cc4ed08f6cf4414c9f @@ -56220,7 +62790,9 @@ f7e6cca4f18462a5cd465209c5472eae f7e6e7cabeb0a633d491ac4399e598fd f7e79388c96a1486c40e8b35809da8fb f7e7abfcb75bb658d8958b947f3d524c +f7e7d8977756e13e00f02fc2df419b5c f7e8538d5a7d2999ae8cbbee250a2022 +f7e8ce8ce0dca8bc24b35ddf3acb8919 f7ea24f109f76b55904c5debb5bcb7a4 f7ea96bc456f1f08867737694ea54f4e f7ea9a2454df12f973f7e8b8a61c88bb @@ -56255,6 +62827,7 @@ f8053f6d073d95f7a6d61cefb36af1d8 f80648ce87f378337daac1de2f8116f2 f806c11c1c501afb24b0cab3a25876d2 f807061233ebcc274aa826e1c6482100 +f807d623bbf83d74507b00579b101d9e f80862d7144ee9c8f4ddc1d0ff94fd2d f8087a7a2c7a12e6c92ffdcdc88d44e7 f80938e448d3c9fbbed08670460615cf @@ -56265,6 +62838,8 @@ f809a30f8022fbc0dea997a640fb168f f80a2a43e0bcb87584809c9506428b12 f80a88992e709264def034adf02a60f6 f80adff51a60dc1036989e606ca01b88 +f80bba5e93885eed48ed844e7724a00a +f80c937d0ef0f0be18e8036c15e7152c f80eb72043c1917fd909335d225084a3 f80ecc769cead28f1ccfed85161d2993 f80fd38cb8a46dd6ebff68a8126efd9f @@ -56292,15 +62867,18 @@ f82759dfdc562df9a08b2925e3a138af f82798ed8adaee95ddad26f93bfe0fa4 f828fab84a8258451b5bb1a8c6b99e99 f82a4b89471629994b1099a534e268da +f82be29b11b5fa2255a41d5d760e17bb f82bf8eba6784abccb5df8c17b28f8ba f82e782e1c5c9cbb94c7ee7286b15ab2 f82e9a23ad7b7a89fec3aa9ebada7cbd f82efc48018de1417aecc3b19a7d819c f83235dc5d0970af8729d8f47fd4cf9a +f833b11ff7cacbe8bdbdf9aa7d65b173 f8343313ebd9a7bce10bf020a6928088 f83461fe36624c752a713b8b360d6653 f8346d7a7a34441b92bd2218fa692e1f f83487ce01e6ca22bd5c5253b293d65e +f8364f8a39f8ef81c76530fad088a952 f8374b3be72cad36fadb16f5a67e8930 f8377e1feae3876ab6e2d6382fc9ee08 f838a27a3608bcef1ce6753cf6d9c881 @@ -56327,11 +62905,13 @@ f850f34e7094d3ad6899d783061ec24d f851f6f7e88215eb79d63d42f343101a f8526e53f50cfcd2e541679e49dafd9b f852ba5de9d178410bf3334811e4ba31 +f85430bb549f30b305eacd535097d37e f854d577eb38296ac78fb6fa7bc2a987 f8557c5041da398192f962230236738e f8559f218c5eda9fd526ba0a268f08bf f85616d6dc9be9d277c0b1ee3b73779d f8561acc42422c74ee0687ed1ef14857 +f85661a08c69f70d31dd6cdd163bc94b f8575b899daae3ed7356e9c382dbfbd4 f857b3c06b55bc3498a89ce6c4d83658 f85839c8a9bedca2df6c042faa29fc92 @@ -56374,6 +62954,7 @@ f87cfaba11baf289b42626285e647796 f87dab2f8f8cc703347e6270a658956e f87db07c2ff13340a2c1a7cbe3a6c869 f87e24fc16b6186e7391d4af238543f7 +f87f4658340a3cbba3dd26615076d1c6 f87f8b1fcc36fe2fdc4396b7714831e0 f8812db1150104529bd8f824b1b04599 f88268aeaee4093ffd1bea3ffb756cc6 @@ -56392,17 +62973,21 @@ f88ffae23ac185460fb81e7d3c39b1e9 f8918359f90b2b4f6af380a093a7673c f8919fa4676cd15f6b85d73d2b245958 f892634400f3ab771dc95ea36440e60a +f8939d4af439d8e273a084dd1bfbd44f f894ad8d3233058974673b3b9a4cf264 f894fc0a1f326c6046ad2ef9a222686e f8950ae801ec9261e4edf71226efc5ea f89557500db010876f9896676925528b f8955d8b8f8226d8e34560c8ddcef269 f896fabbbd83cfd9770cf33475dab9ec +f8985229a9c4f65d857bfdbda51fd6be +f89900fa009d94a54b99c56a612a7bb6 f8991f23241037def96845bfb047bf68 f899ed32ff95d8f3a95194c260f7a346 f89a150c5333d06e940f324cf5c07afd f89a53cc98b85939d35f78b8301510c3 f89aa317590b65cb786454a31b6bcdda +f89c1757dee0bd34705ceadff3069726 f89de52bb851f81a500cc7f49f0cc728 f89ea35de6122d96f40c49b9100e78c9 f89ec72f8c0cd06366cac01570d51081 @@ -56412,13 +62997,17 @@ f8a09b7191e12e9ff3e012a612ea28a9 f8a22754b44a08d3ecdb963e03264182 f8a44c5d0ebd96a0e3b95359649f011d f8a48695bb68edb93d6b1a5bf7b439e2 +f8a54f632b36cc4521f04fcfef6e7a2b f8a653aba017d4fb5adb4c959e5cfd41 +f8a71dc5d5cd9fb15c37671d7e8d7883 f8a7796b40a2b1215435c9e10ac6cb8b f8a8acf89d636e48bf925a2eefc7ad98 f8ab08e097209bbbcb802661bfbc0749 f8ab095c9b2b14762575f7d19cbed0f2 f8ab50c391cdc9645e6949a97594a5aa f8ab7a04f64bffa38bc74dea4728205d +f8acb1fc74a7c1278c43ee6a451bc92f +f8ae34d7aea5ada2056428094efeedec f8aed499a346eeff632d9cef7ae578e2 f8b045106edc6536ac325400cf12bb2f f8b04acbbf72ddfc57e6f678a3c2d61f @@ -56432,6 +63021,7 @@ f8b9301a7a78cbd6205ed2ed9ffdab18 f8be21b98f91070c95e7558ac9715d2a f8beac1e6683aa0b780c71ac5552aee2 f8c0c0a8310a6644912bce654deb6031 +f8c3b1fb4d8d37206adf38bc12a7c1ab f8c4b225509b65877977c1454110ed60 f8c5aab3ea82d98f8374b5360927743f f8c6563444ad74c225394116ecfc8f55 @@ -56451,6 +63041,7 @@ f8da085e17bc019f3ea262655817a74a f8da18a37d4c06f212c2e8b2782584f3 f8db465ffad10a16afb0a82e93bfc08c f8ddc0e47066ac333be5f90bf114deb0 +f8ddc595d97fee60876137d89f6a830b f8dfce0fc9e8e4f85872b63d92f34790 f8e173daaa981adbcef3bc0d15344c1c f8e1a0adeb720f985c5e82717c6fd64a @@ -56467,6 +63058,7 @@ f8ec978adb180191f956b28f6c33482f f8ecbae645dde4129d22f553e0d1ff9b f8efeac654e14c5afbd72f4f10cae4e7 f8f3ffffbbfab75d237d91ef2822ab61 +f8f477f009e39bc8cf0409ac76c868ee f8f61ac7df76c22e5d37854bb8264773 f8f8019b3a5eab0de145f3f846bc5946 f8f96408025f83c1292aa32cfa6906b1 @@ -56482,6 +63074,7 @@ f9045fd8a974808644a10184b343297b f904a9eac07d65d1af0441f343af7127 f9054971d44cd4ab6ba0efc0caf78d17 f906fd3145279a603ce65f79d6cf5fd1 +f90720d6848056929c9fea3421759030 f907724a36df2fc88ab09c596bfee080 f907f728f98b87ada186ebed7b1f47ec f90a1802daa91598675695bf0042bf28 @@ -56504,18 +63097,23 @@ f9137c5aab0cd090b403016107fafb9a f913ae34cbb1270dc6d5ff72cb8627c3 f914c77c720289ad55b3e675ff64816d f91680a65a27724b2a3e541c4beb38cb +f9169ad4fa55fe71144cfd086cb9da3f f916ae346ea7dbfaa0bcd0e3c357769f f918824b7a19c28415cedb4dd0dc7d0c f919748d89a3ace4c89a30f46e8f66cd +f91a1bbdf203bbea875fdb600dbfa153 f91caf4dd95745aec4c4db88f79fe8af f91cf12590bd27987610a5a211fe9b8f f91d4097c44ba6c933855464c3f2fffc f91d79d2592ee0096d5f0c598d3e518c +f92006224d2918363aecdcd511d3dd7c f9240681d891810ef10b99ea23100d2b +f9242487ca1ef41ec36ebea9a2495240 f924dca6955cf2eef3224eb186da8921 f925ec176a8cc6f95051d78c17dbc3e0 f928eb5de7baabdb19edd59d4aede584 f929552a81c9d14c687fe5f299a74487 +f929c3de87878ec931d21e95a716f5a4 f92be485ccb75afd4a4aeca85adac330 f92c1c3a497d8ac97b29945b7d353ff3 f92ce1b907f57cf7417d3cc513ba9b11 @@ -56543,6 +63141,7 @@ f945d3b6a3156ac68899c931fb3868ea f946683e3190902b4b03e1b708cf1f52 f9468bf1355078be9bcdd7d40b6272b3 f94881e3cc6aa183f79fec0ef95ec0b5 +f948bc0c75a1db8f90b93e9ad845186b f94d881dc9aa1a34ca2bca6b0f47b464 f94f46c56c76b0a2d5418638e0e2750d f94f9b82729e6effd497b51bb51c2576 @@ -56550,14 +63149,20 @@ f950ea11fbd89f1a70b99a3c37607533 f950eb363db13d632805549ad4f1b787 f953952b7b25dce96cf62663d8dfb65f f954e1aabbb82abd42d6f213497a7eeb +f955b48ccbea5c30e1e94ee1e1f96724 +f956a37c677a6ea4a4b926f831a80123 f95719cdab587dc7e7699e3b2125a8ca f957a187c95bbbd040ce3e295acce558 f957bf8b0440352d444d49cdc35ce59e +f9582fa1d74084b5894cd3368a10cb4e f958610466ab16ca182c9979a5ff8e6c f95af7441b403ef3423677de180b9e7a f95df76e476541205cb20beffc74ffd3 f95e45a54b2edd18af185917dbe1c1ba +f95eeea4d46f6f6be9feca4c8ad866ab +f95f23d4436b15dc1924d34cff61a394 f9605fb6d2b3e92526591d297d9c6a2b +f9626a167777c2d7e842c2fb36318075 f9629708dfd934f2cc3fd512f73a1bcf f962c11e9c5aef7f4683b931f483e548 f965d72a269d7869470f7fa77e3623f1 @@ -56568,11 +63173,13 @@ f9686834e907215d8411f74b3c3668b1 f9693dd2dcb918acab587d55ceed48f3 f9699c559498442f0d00a28898639a18 f96b24b2fe5f2932df41437c94cd7c36 +f96bd26afe4a6173ad1683f870a95ffd f96c3da68ddac6c67cba4b44f1ab8d85 f96c91cf9e85ffefc03a33fa4028fb50 f96eeb6c70ea4377482890de2e1c2f0b f96fcab9bd4b43a57f222be2cf844007 f972c2f94ecfe9c3af236b6fb7e5314f +f97352c2df2e095c61242746c06f4e2f f973eb7c8e2ebd9d61a75fbe13090b2e f9746336266e11673a0c8de757ea3313 f975d0a636c660268e2237a669a3ad8f @@ -56619,6 +63226,7 @@ f9adf0a0bc33b84ab82361339fdc06bf f9ae428fecb202c651ac4c86d06dcf0f f9afed3a019041446aa348bc14b5f14b f9b0bbdcc548ca5c1b4343565aeb2c74 +f9b1c262fa7a69a8ddaca0331b659a8e f9b22d170659cb0dbf1bf90c414b50dc f9b248aff1a31fc3f89a3b258581e851 f9b3fc349298adda18ca51995b61c309 @@ -56626,6 +63234,7 @@ f9b4116c40f6987c65af633450e4394a f9b4e7d296c50859cfc4c6a6c1d31bbe f9b5b096e9db36b07cf5c9754046b7d0 f9b63f430ff7644c46adc1a550b15f10 +f9b8953cec3a3b44212112a6b6de80eb f9b8c07a0c3a0862e00b9440f897a9a8 f9b8f045e276bc4b4ddaad3228fbd06e f9bb97a122e38d1cbf8d86a7863eb8ef @@ -56636,20 +63245,25 @@ f9bede8ea3cf5428848625a01c6f08ef f9c0174dbba276924761761a633406af f9c190b47e3420459b725bb916a7b3a8 f9c1e43784222d141fde0cf2514037fe +f9c28dc5903dcfaeb24cfbb5813274f0 f9c2e0ffc303ae324960e5c6ab5fcbf1 f9c40001af9f93a2ed86870ad1a86045 f9c466ebcefe119f47af7f017a851a2a f9c52e6253b9262d17963b6e81839994 +f9c6255cd150a875f205396faa765ef9 f9c7b8b705922be28c4017625846df95 f9c8059db0be35013abfd574c579ab35 f9c922f7327dd763312b17eed3bc31ea f9ca4f576f9cbd85c4f9e3c8ca7d1283 f9cab6b58f90f4f0b5cb9f2147878525 +f9cbb37d75d025cd397599918d676565 +f9cf887ad7acdf6d64fd180289f0e00d f9d17038b999da5e31e62b7d5bcbf37f f9d420dbfbe7378d3d7cc7425471f150 f9d45ee3fcb9c347086d38210d1f2af8 f9d642b56791e9ba85d6f569a5218700 f9d74712d27273f0412f950a4432b01b +f9d74dec7795a1cceb07b6d82bccaf15 f9d76244cb9dd22b45b67255290ad262 f9d80544923cb6165cadac59cd556f6f f9d875fc9f28d83cd8b5b8ff880d95ea @@ -56659,6 +63273,7 @@ f9dc31b614a5997d838df2d5459e0e5d f9dc7709335aa2327f12c6f13ac57800 f9dd0b1a0520c482a94a8715e8adee78 f9dd12da3fdc11126077b2c61fdbdffe +f9dd5a74d93f51134c40dfc06c974115 f9de7244b5124a7f7cf3c068318147f2 f9dedad92c95e5d2ca98de25293e69d3 f9def50e69fe063412f941b48cbc7256 @@ -56677,6 +63292,7 @@ f9e9df5b0198aac60041ecb62d2ee63d f9ead2dedcbed8dd404c18d7c2ad90df f9eb5446c11a30d70d382c6d2b501af9 f9ecb795d1c0722f3dc1cd2a434f8483 +f9ee706be54b82b8e261289870a4d6b0 f9f1eaef34641b8bec99a055e4133386 f9f29888d7db8e37cc64e4e3ccdc193c f9f4ae34202d035ff0cc52178f8779da @@ -56689,6 +63305,7 @@ f9f7faa7b553a58086c7435247b54242 f9f9f4b2bbcbcb7209cdb0a435b5f4be f9fce4bf643ac1694a154fda09fd70ba f9fd6f41b77e00ad01cb721cf5cdd208 +f9fed38330076048f2504cb0fcac8ac5 f9fee59e2c34809541383800287c33bf f9ff11f36ba6453c07c5b50438f1e549 f9ff5c6d6df78cd4ec9592b82e0e18cd @@ -56702,6 +63319,7 @@ fa037d5e66c18d6d1680f6f68dabc5e3 fa041f5ae800e47c3e52ccbc7d2cc331 fa05bd051937ce962fc8fac0a0cc238c fa05bd31c24bec5d703e1a2ece54d31f +fa0604853538e4ea014245de28959a31 fa0628386f9580e553b61d3e9db60dd9 fa07840c039c7931ceb5cd70a8f7bc64 fa09125135a89b894ef12711b17a0178 @@ -56714,6 +63332,8 @@ fa0ff0501fb773c4600d084aefd6ccb9 fa10ac4285c465d1cc809365fe62e8c4 fa147ad566ecfaab951592498b0592bb fa16ae21a5182f4ccc4d7fdc0d098cd0 +fa1718b0f5b0451c318cbb8d7ce7934e +fa178146c9180783dd1ebdcffc72a193 fa19282010a794b665b258c07544d5a0 fa19db539c34fb7ceaf40970203e0c38 fa1ccd7fc64ee76bb0421a25895ea57a @@ -56723,6 +63343,7 @@ fa1f28a392461fccf9190a924ff53e25 fa217c8e9eaff906937b823f404a254b fa2235e6c7dd64dad660dacd29080e98 fa22d68e865ea7d2f1c2076c17048788 +fa242ece8f4e5c706a4f4943f1ed1177 fa2448a69b733f6c72435954c64cf076 fa2465aff828419ca8878e3cef919862 fa2469f4462d279fa45dca4b1315fb15 @@ -56734,11 +63355,13 @@ fa2c9efb2c8345d4ce2c308e7da95f84 fa2e0146cf3ddcb7e596bee98dda06de fa2ea4581574d0fd48d2afae403114c7 fa2fd7ab1c4218c7cbd674e0985a4861 +fa2fe1d1dee5cc3f454c7bcdaeffe254 fa3112599279adf12f8c924ed29838f5 fa311cb53fb0f6e14d6bf93d52b28070 fa31498d0151a938782bd27ad27ea5f6 fa33e75a01cf99184ce8697d4e10143c fa343baf7cdcb62c90ab7e6c0aa622cb +fa36ed5aa94e128575ed9e5f4b4c63dd fa375b28e5e18293da1434b5464285e3 fa38a12e7b61f5e37c864f7b5623abba fa38bffe134be83bd39185e90993609e @@ -56751,14 +63374,17 @@ fa3eef8810fa44e47c4dc4bc7bf6298e fa3f63f32b0cd4dd0aaa8a9d3c0ff5c0 fa408a92aa76ab054ff80cb45e814837 fa409711f55acf746d371cf98db29fca +fa4158d640121258192626814009fc60 fa41fe39fd05f7a4d10e6f65805f35ba fa423c7557f027c3f9b96addbbdb66c2 fa4249108f523852538a7e0d18fbdaee fa4359b74375cdf5fc3f73bb26fb97e9 fa466947a8287c2bf65e721950686870 fa4672383285ff71b7a0b47f08e20890 +fa46a0efa6abb1b4512a2382ed5cb678 fa4730776e7d079a9dfa4450c36b845d fa4737cda3ad1775b4d6b0ab4dc822fd +fa47f6be4316a3045aa04d6de74cf0a3 fa48b4026b6527b9114de27d81be0ccb fa4accbcbfbfaba4789d14557a48b08a fa4dde8ded6420b7048d2805ade32670 @@ -56776,6 +63402,7 @@ fa53681b1eb28309310ee0416bf166ce fa54cfa10dc7a0ccffe2725c52e23c42 fa54d1579db788c31e03f54ee411510f fa56a70d798181e1c87112de87d94e81 +fa585122467d91bc8b8637041eeaa5d6 fa58a092ca2379d66a42b2464a6eaaab fa5a11ad3c10a3e4a3d5d9f40ab294da fa5a313c574fea83a5086701ec6f0e2d @@ -56794,23 +63421,29 @@ fa68b0a52a2f479365dbc8bd97009de9 fa690b50a3550088c101ed55c8c8cb2b fa6a0fd2c085cdb1135bc08c0aa33fa3 fa6a11365caf38f2631763bb4d260d74 +fa6ad2d4540d731cd8ce1f3d5321f419 fa6bdb1cb217572bb54afb79b00a78d4 fa6c9e8fa02b1e75ed1ee94dc7a3bb85 fa6e75ac23900999cb21f60ebc22d5f8 fa700a204cd859cb4320ceba4baa2c55 fa70f32ef24f3815fa853cb2bc536338 fa7296ab1e87045ceceb9093e5f321bb +fa76819fc165bc4c35de25e282502503 fa76d498052d9f2c6ca4db936912ed7f fa7722d4e5ef489748df879f7e580702 +fa7809265393a19e6f64938038f6fd8e fa78b96234adf3099094af650b6a01c4 +fa7af55508c07bbbbf5014ae2d83ddbb fa7c1f3f47db91035b07b2e8458917fa fa7cd1525e3a269af56a3b6fc49d9a1d fa7d6551775ff8fb973e35668e094efb fa7d8040580cf953d2002e6b1a0e1d6b fa7db2a2c3415e3eb2a6e1f06ffd0216 +fa834a97e01b52b07e1d30d367b949f6 fa838b620ffc6b8f65235e3b3d453c49 fa85d039dda283055c7936c72e04d4f7 fa89704df325b84f525e9477a3ddc19d +fa8a3cdfed8153a7df1ab164d9bbef1a fa8c766b56a9b508a116ede76e1c64d6 fa8cd5f7a113c2cc4890d293cd452a22 fa8ce0ace709c15f254bebd8a921f9d9 @@ -56833,6 +63466,7 @@ fa9fbf577edf3cec862fa507a30e8fa4 faa0b659ff96618d796630717ff149c1 faa25a077fe804db837b40eb12654ea0 faa2ea71c8b08633ddb067efaa666eeb +faa4dce25e6ae93a0d5d79b7f0785598 faa579c5e14f59ecb07a9ad63ad52df5 faa700453d118197208de1a1a8fcaaef faa89e951f6c93d085b942ae1de6db80 @@ -56846,6 +63480,7 @@ fab05db4aa5edaed10b716dc1a42cffd fab0659046bc5d0b352bb6fd62e2ad51 fab0f8c3ca4896b1ffd50b3b28493629 fab2336ac785be51aa3e72e86cbb06d0 +fab36fba8ac224a741f42798bdfcefc7 fab49f99ef09f4d2a7bec718e82e0a95 fab4ef1aeef320dfaa8982cdf0cbfda6 fab5d88523a9abbc69287ce2944b435c @@ -56878,8 +63513,10 @@ face5d61e29686eeb0078ead1ca4613b facea83498bc41bd61e22a6c01b77dd4 fad0d1cbfc3f13a92fc2bc34eef27c58 fad1035f59fc0b0bec23ab5234e93539 +fad10f319558576ac903c75715863609 fad1adc64148811f6acdfe9094171ff1 fad2273dc40f3b6e109ed246b14326f9 +fad363b5ec49db6873904adaffb8235b fad43ededef961654ba7edfc8d4a6695 fad53aeaf9f742441de7a6513557f96f fad5d277bf6839419102c5ef60f85a93 @@ -56890,6 +63527,8 @@ fad761538543f6cb5bbdd457b1e3c606 fad7ef725b8aed057408a25958c250a3 fad896395e8fc5a91ed882ee2e47fe72 fad8c2e08e76fd604661e68d63121334 +fadb53c29b40cb053420df6500c98820 +fadc3797de1abbcabe91f6d3299f50c1 faddc6d9023a59f1f99214d97bc529ca fae087015e0df2161d7522ebe5c6aed2 fae0d439a8a45e7ae8ab5286c046020b @@ -56910,6 +63549,7 @@ faefe2e4bef137c4121ef94afbe3a699 faf0ee81ae05041a10dce7052eb093f4 faf1af78fab2487a3e097868f6d07fee faf5cb6359f00993143c35481cf04057 +faf722441ed6ff58b258698a83079a16 faf7d04997677c730cfb2b86302b5d83 fafb30e25848a9e7c0ccc0330e3868fe fafbed4cdccab6972c368b2a8e6e51b3 @@ -56923,6 +63563,7 @@ fb026628235738e409975a8c9526cf47 fb081a7fda5be8d93755d385268051a1 fb089f94f283a813f545caa87ff855c1 fb08e80d5a7c13232f6ce2a7abf738ae +fb0a341101df57aef048e34beb8260ce fb0de2e23c45e68f40175e1fb31c7b8e fb0dfda392755cfe9fada5dcc58e627a fb10eb875fb10b09e245d2e4c80ce147 @@ -56934,6 +63575,7 @@ fb141f00e8aa69f073d4dd6218bf75b6 fb145f932127cbc7679b86647ff292a9 fb14fa4e83816b4cb8765141955fcd4a fb15f0ba84617f2d7129fa8de98ef29e +fb1869cd4fe0b581d9ae446c3f0baddc fb1924537552ddc531b7000ba4c8a74a fb1935582151801970901461de212e60 fb19db90990df53fc882727217547611 @@ -56955,6 +63597,7 @@ fb29515f7a94c3745a287e26d7e72796 fb29714b092930b3dc57f4c3de2998c4 fb29a9f0f6362e4170a93fc96c96ea6c fb29dc7ea8d1c118b759f974d08e741a +fb2b736587bcc1e5bfd8644a2751b23b fb2c3b2d7fcc1ccb9ebdaf70ece9c60e fb2d42f89745cde9387f647959d148e8 fb2ebcb890061d66702930329e3e114e @@ -56962,11 +63605,14 @@ fb31b9b6fec1b3dd74b220a2aa639016 fb31f9d26247df95578ae094e3cbd187 fb338021445092021ca507eecf36a8f4 fb342aba66c59b4b84b78aee29168e68 +fb34b8ee68097166e0737b67e4f5b517 fb36056037cb3bb9b7d78fbca9e9596c fb3a7add830c5cd9e2d4af002fbbf387 fb4014aa560d60adc9fba8203ab55861 fb407f6b15679aa83a9e59db6815d177 fb442d4ca49b4c032eb9eeaf4514bca1 +fb451316a40357b931adb55d1f9faa72 +fb45b41424b87661b690bb6cffbb80c1 fb463f3f69a57c0dcf73b0ed70bc7eb0 fb46532c1a2c08dffb883d8f62579301 fb46978b6a53c3bcd41539974361003e @@ -56984,6 +63630,7 @@ fb5362715e177290cc18cada69c76d56 fb5434842ff1a0fcc3b3da0f5ae6625e fb55294169d37f82058888c2f665e97a fb563f4db0b89516da60531ce32e6a47 +fb56a712f525304337c5665230fbae43 fb56eae47ee161a8346258c28b234d99 fb57f8fc44f509852a161595319d3bfd fb5846097fc69c2d633bbd6f4d1f0915 @@ -56991,6 +63638,7 @@ fb586eabfd5811279f51f96ef901da77 fb58812e6ffcb14fc33a2f61cfd185ab fb589ebde1e87dad47240f5b99e83f78 fb5b973d3fbc66756ea86f086e66d4d2 +fb5c6c5b2473f9cdbba42362e2495946 fb5e6495e1b8fc7f2e8f66704a4b6ce8 fb5ed71ebbc564f6136c22ffbde8973e fb5f62c5445c02419a80568eb8032093 @@ -57027,6 +63675,7 @@ fb824b004559da48703d3249de88ab3b fb83f20c721822dd6327f0a987feb3b5 fb84466eba6d6c1b71edbaf6ac0f05d5 fb84efdba6ef28915ea51b98359a1a73 +fb8733fdd089d8a3937b9c67381b289e fb87ed163795921084325f47cafb06ae fb8b8a136ba81a6abd9acdd4506e2d40 fb8bfa279f49858a6d90e6c630e90428 @@ -57037,15 +63686,20 @@ fb903cdc5e0139c39f153b2c0cfd70d8 fb939cdb55b13de3e0db4246f7e1c777 fb9402950a1a9a56c05979863a28eca4 fb942a66108d9d966bc60f507cda2872 +fb967bd245635a4122297e97979bcfa6 fb976d812b58c2b1e9309e4ddab46b92 fb97e4d8a1cdcd62713aa842dd5dea65 fb98a84ac5ee650d6e626b5feaa2c618 +fb9b6721d06a9f6e94c9f0174694698c +fb9d9c9af6d6f29b49f9c1e8d9f550af fb9e411e6ea6d8f2d72fae2880cecb00 fb9ec1e839409bfc2c8048b14bf3e9a7 fba0a5f8bfc01b482bc2cb6d5b9c7e4b fba0a91e87bd33b4d7991860ceb7ecf4 +fba0f9ebb29af2f1e379c6ac147f9259 fba2f9fbf07892cc8198eb63fe89bdd4 fba3639ee8db00e1307398d0810f2f13 +fba36ab2a2781729273ecf5267a478ae fba3e0ecab90f9d11b34e7a2747dc13e fba3ed6e2bdaccdda6c28e3ed7012bc6 fba637b6069c68719c5a1534e767014b @@ -57070,6 +63724,7 @@ fbba5f6b91121f9d0d5075bba24e0a70 fbbb0c620cf88cc86737fb8c5c64906a fbbbfe8c8119a4ae058015af5c94f798 fbbc7ade8230a2286ddb5ceb6d56fdd5 +fbbd23e2c9d66afad1c5d142710c52ac fbbd437e278c52741c2512471a194a63 fbc0edaef1a3a9437d8234915af6346f fbc39f1d6604ee134d61ace1146a75e0 @@ -57121,6 +63776,7 @@ fbea1b01e5507201b1390e29b7690d0f fbec2351e89b275d3a1b0eedcf549ae3 fbeca63c7f2a572638802c461d25692a fbee3cf5d732f2e66ea2c4d7df0ad3c4 +fbeedffa2764b60ad2652adaa2180fcf fbefdce4ffab4dc094bb1af3f592e9f4 fbf007cc3d685d8586c73eb0ff863d36 fbf23a68067e1f5e3f41898bf8f76270 @@ -57142,6 +63798,7 @@ fc00697d792e85e3f43e9173fc71333f fc00f16379bc9ff69a52ff695919b31a fc012b03b1bcba86faf4a545dc8f0a59 fc023fb452f2c9271d62e7e187d5e6c9 +fc02b253849c8af0153f7beeb2815fd0 fc074137c8a0cf984991cd0d9864b7d9 fc083f9a973963afe0047a04e688b62e fc09622dbacabe32c786f65d3af9b374 @@ -57159,6 +63816,7 @@ fc0f28ffe6e7d566b07762b0b1201631 fc0f7ccbca4b80c4514c7cfc853e8b49 fc10489044a262b61405c6c4ec488fc0 fc104e1a8c03068b3de59b9d745d4709 +fc10638dd5ed95336ade32b0f4e1af35 fc1089c8edc35d903af0607a01640cd0 fc11552d8e395597f16b7e8fd79aaeac fc11bb3ac7377c3c88db6756715d741c @@ -57180,6 +63838,7 @@ fc1fde6348b9dede084e9d526d221de1 fc21b539e05e03b4d25249b1e05a55e4 fc21bcb292d5a8668fad3dce6e770eb5 fc22b71b75d299ae32ac627f8e92326e +fc2369928a46147afb31de8d19b56597 fc2369efd07dff9b5e76d2ddf7ee19a1 fc240c7cdf1bb099c85aa1204bb431cf fc24531bb6b612960177a8305bccb1f1 @@ -57192,8 +63851,11 @@ fc29b3db67ec4b38313d7e9f67f332ca fc2a327c37aff0cb19d56a9b927845a9 fc2fd3473d06277716ab22eda1357d74 fc30a135fc8d39bafa22ce93bea51d7c +fc30bc5161f7526a8829d45226af5436 +fc30f5ab7dc91a358f652b1c3ec8ae91 fc3110b61b091b0be8b3425367c0f871 fc346a9803ad3e72813cb498dafc2ba3 +fc3473f6d994fe40957f0412cbce2451 fc354b08333c3137a656b2bab90d523a fc361a8c81f1cfce91220b3cf03ccdac fc369bbc3f52fa28d6ece5784d3f5e46 @@ -57216,13 +63878,16 @@ fc43934a545ab8a57ea61105a13595bd fc4659fd9491faa407e58e62ca1c37c8 fc47b36a7008201f01c84b180128fa1d fc489b509b13d49d96b381c4cadba479 +fc49420378088d495d0b7830347ecc77 fc4a0d5404af5ced408a704efd7e9dd3 fc4ad99013730b4b29bed8745e9d5abf +fc4bd66bf86c46ad1ffcba151d97fd50 fc4bf1623d66390b1366584ca5f7da74 fc4bfd5fcfebe74ca68673d112a15bf4 fc4c2165274ec4e51bfb2d948e721c92 fc4cafcc18f77dbeed0e9ea6e05a5b54 fc4d77e835c6fb1885419c85c3f56a48 +fc4dfdc4996078eb14cc6414bd747523 fc4e3e8126889255fde12069b141f63f fc4f060038e1f221fe154c2f4d58f928 fc4f0b75293a960f61e59a5279ad7104 @@ -57251,24 +63916,30 @@ fc62e56afc81c9cfdf0a7b94cb0ed105 fc62f433628e389a705e80c6574a0f66 fc637f570251f184135bfe12d6effbc8 fc6410327b3178d042c636e9a6b43ea6 +fc65df2db9c077b744bc6d54fa8ce5dc fc66030d7e959fa583fc8c901e4c07c2 fc666250be329f146fbc66be050be2b4 fc66c7fd74ac3f7cbe01bdbdabccb65f fc67f88747cfb853182e1698924152ad fc67fe9c58d6028b36a5f8e871d0b974 +fc6821e56db001e364f76e129ebeb2cc fc68fae3c4e097406d1ef29949ca6867 fc6972ba8e5919bd95caf3d9de543cc1 fc698a5292665bf0d0615963774cafbb fc6bca58243f4f534a946a25937bc136 fc6d9d2eb6a74a6716b7eb91a2292bde +fc6e2c9b5ac105b62196a246cfb512ba fc6f15fb4a3b4b43d6915576cf096a15 fc6f827e710a41477bd02ef1ba591517 fc6f95d7a18ccf51e08cc6806af492d1 +fc71037c5e6f4cb8f8392849cd6b3666 fc721f8ee6a0fc48b171ae61e4e9c1b1 +fc76ac44331d4ffd5f6db5f60083b39f fc79d791ea4fac1f4d446d6c108a1930 fc7b1b0dcca0b6cb402f608b5da788c2 fc7c9d2b1d2b1b20d2c70e083d0646e9 fc7cd89e2e6492dc859aaa6beb464211 +fc7d1f2434465d07eb0914f8a795e679 fc8174ee6ccfeb7f8ba09969aef9b8d0 fc8262c8ce98a11d9a765a5e905fe3a0 fc835e402383f24b56708b4680d1284b @@ -57281,6 +63952,7 @@ fc8ae1fff5a50e2ccc31dfd454791b50 fc8b97c3cb6b15cebc69a67c2f1d191f fc8dd5d947e330bc8d31ba285ede5a51 fc8e9658c43853b98508b4a5e8e39e1c +fc8f69ac40997056a7142feb6e09fe77 fc91b222205317045cf82cea3b9f1938 fc92d6a7861bd1f70815f8efd5868b68 fc964a0290259c9fc605555ec4a3bd56 @@ -57298,10 +63970,14 @@ fcaa9e9cd6c6b870d290ff95647cdd7d fcabc885e522a09cbc1c0deffe46659c fcafabb7d281f7332f0511afb765cb1d fcb015b3ac947dfef29859a216667e56 +fcb1c7c0a61d867e7985cfdb803df528 fcb2b215a71e03d202fab51a0e2499d7 fcb303d15bc83e94107edc4999effccf +fcb3dbac767e6924c916507aaddc55b2 +fcb3faae3968abdd02e7d642e0e7f906 fcb492606c3fed358a8470fc31e0e8f9 fcb4f11de6c64045e389a5499ee6359e +fcb65925ce3a386262a93446abdc94e0 fcb6897b974e541589407d252cf771ce fcb7415f814ae6d02c35b423535d9441 fcb84ab9bd275236b3babdaf1f06c3ea @@ -57312,9 +63988,11 @@ fcbc29ce639ff97fce962e375343828a fcbdf00155ecaa74b63995e4c93aaa0e fcbdf62e202217046c7dee3d9a8754bc fcbe1dc00f2b8dc4aa46c23b041a68a9 +fcbe7264907ad49afc22f605c9937e46 fcbe9d6dc973d2971dadbe2e26d3be5e fcc02f56b51e43fa0acef0e568d7eefc fcc04bdbf9983083e8a7bb40369083c6 +fcc21284b660c98b25ff528f6297a6db fcc45b860c87c02e398f510c26a5402e fcc4a872257764710fb9ac92fe749a89 fcc4c30a5dabf37b027762ba15a3d64b @@ -57343,10 +64021,13 @@ fcdd5911b681da6d764f3aef53cfea04 fcdd70166ba29944034417dcfe6b03c8 fcddbf092836d583db0ec0ddf4fbf9db fcdf492bd75a038407d235a0e4413839 +fcdf5f3e928c62826e58c91d48656494 fcdf6d66d9616322b841a2e5f0c6db69 +fcdf84b047e8f42477a4efbb39e2d3a3 fce007403bb941cb31d4aa53a5cd54b6 fce05034c443f97aea28b8101028b037 fce0bb0bf84d0649b56fe6a775dfc8c2 +fce19471ff5733574038b4b028e053cd fce248a57134c6495046c0d12c47c1f9 fce2d214a8fe8ad5dd3d6fa99ca726bf fce352bb78f1e1dd63262790361db819 @@ -57369,8 +64050,12 @@ fcf2a5e325d5281021d1c2845810ff63 fcf33bfa95f9e92aa259f3acf415d456 fcf3aedad8a7456e973e09e59af6f0de fcf3c2fe509940341f5e1eef4543fcd8 +fcf4117d36009a2bef097a0cf9ce8545 +fcf438c612aa4eb9b646b05e9acf29ba +fcf48a93ea855cc68dfe93b2ae07263b fcf81ce153216615a3ca5c0589342af4 fcfbcc7af26872f24884bbf80b75ff5f +fcfc5ea9c15d9b06b62f55e297dbec43 fcfc64e1fffe9ff2dd58093cca9ad097 fcfccb533264308cbb6ac8ab417829c2 fcfcd669fe5540b490c60bf4c275f885 @@ -57382,10 +64067,12 @@ fd0613f5233dea0cef506f333608d8ac fd061db2b0f28f8740fba1625d4a5207 fd062d7de1d16fb189f9f65e90d51b11 fd062ea33c146f6d661037cea6ce1ccf +fd073c0dc0a2586b92f9f77ad685100f fd079c54537a30c2a7dffec6a24db0e3 fd081dff2a98ab0716cc0d155aabbed4 fd09a6d593307e81dcb8f63bca026e97 fd0b2a3e8d13b65e124abd379e825d48 +fd0cb7a7a756d1bfdbf3633d3ec9915a fd0da3f0af96692c6e77eb391ebf664e fd0dc0bb475c02c6e596eab28c566417 fd0e5a7564c48e75636864dc0d7ae17f @@ -57393,6 +64080,7 @@ fd0ee0e2b08abc61a6e4a6e61b2aad81 fd0f1b545957cae7d1d657083bcb09b0 fd0f62ec33bd33de5075b1e034eb57e2 fd11398fd164be2f8426525ba1b20bd1 +fd1175e772ae2cd8a2d4b8cf07bdf640 fd12c4bbdc1208c6a5add2024ca794ff fd12deeccd9db39fca2e192640940db6 fd12ef2c93a6ef7653f4898ab27df971 @@ -57406,6 +64094,7 @@ fd1b7b1a89fab5ab4bd3dfd092d39d85 fd1cc1d4b1e078ea6bbd7475537314ce fd1d462854c3bbe7680e06d8a07b0c6a fd1dd8f38dc2ea1f8b75483dce001602 +fd1f9eed6a8d839c2858184fb416fab1 fd1fe77bc6ac439c8cd9da8431ee1383 fd20c40371557ad7c8d7f70d7a1a7848 fd22f429a80fac17c52fa8a167fcb63b @@ -57428,6 +64117,7 @@ fd393d9b5b81003bdac56a881cce4f6a fd39eb64b0d7d81cdd3a4dc3f44d967b fd39ffd0a8d646e4f76bfd385833543f fd3ad774c3a8bef21e804a02548eb5db +fd3bfb28c0ddfee7caf0096f2faea7fe fd3c17a3afc6c89ec23a6e37fa3ba25a fd3ddf10bb0452a1f49eaf78eab9840b fd3eda09ffc6ec510f85c88538cf5395 @@ -57438,6 +64128,7 @@ fd3f98b3a7c9a8ff37fc80f5bfbd12af fd40fb17ae3fcf90935276128090012f fd4153aeecd7450ceee0b81fb78d73fc fd423f903e5a1a3d746f29268f929176 +fd4361afa89590572acaffd8a9a91a3e fd4403e8b03caaf4146c5d3a02d6998b fd4428791ef1f8e75569c3e1c715da1f fd4715c1799d596c84c81eebb5de8ac8 @@ -57452,7 +64143,9 @@ fd4f9c522107a64d79f9c85a843ee7f0 fd50f63af4992a7dc22e79ccd0829593 fd54a94a717782105eb350b067055807 fd54d135038ea0f8ef55fb319bb171c5 +fd556fc831e3ec9bc80e73d930dcd6fb fd55f44e1ecdca033e480c46e1d85b02 +fd5868ae63aa5c4cf1ab4e44b746c462 fd59a90519005fd5220ca423f40e99e1 fd5a666783db33fa09ca1de2636176d3 fd5af17cb310afc6ab2d55615d061eeb @@ -57476,19 +64169,28 @@ fd6fa91378077a6841231a21fe800a8b fd7001af36561310393623fe0bd63175 fd7084bb688c551712d99fdd17815502 fd714515b0cfa2579a273479a2b714dd +fd73c0af2c35183bc793c1e404c988dd +fd744ab7ab90c83a4d396f670ed0a6ba fd74f1db4009c1cc342ff36c09eca378 fd75181ddfa202c67e2dc2aaf2bd7fbd +fd7707cd3731280d9a3b7db4767951c8 +fd77157c9933a8957d403905e55b679a fd780851bef74e2637421f64c6319291 fd7e8c69413803d51ba18f4c13630e52 +fd7eb20b72ef64f1995c392a8c0d6548 fd7f5655fb64eb33452c29676c8355c9 fd818b2f6a65e374126bee689c310b52 +fd8432bc78524bb550a92507b889621d +fd8438db7e50b3bdb627b861f289837c fd85a15d7e8e614fe407fb0e105de673 +fd85ea64d5b4232e20a48341f2dd3916 fd8707508ee19f5dbcf90e48fbb9015a fd875fdecacbb7fce43e07b03998c349 fd88176cab325251cfd730312b77a795 fd881b09ba980e349c818dd359ed0a73 fd883f64ab41da032aab3703b601e27c fd89a12b31567ec2d4339d7c253600fc +fd8a99b5dd58b86a05f9391a0bed1d85 fd8c2f7368896a9d47393dcad183fad7 fd8cb9571ea20e7ca86a1ea3114d1efe fd8cf2e11c249bb9bb138a750c6844b9 @@ -57542,15 +64244,19 @@ fdbeabb00448b4520c8d85d563b961bb fdc02e937dacb6cee118359d68e65d7a fdc0300326fb97ca4c5c7d1c107e6b46 fdc0c54a50ce65b8fdc08a5302167cf6 +fdc1050e03126b711892e959999e793d fdc30f4096dad098b8b1175ffe423816 fdc319a9b38dd6fe38bb6f28434da011 fdc3572c7bb890a3a1666c80cb1b58e3 fdc4afe74880691b7169e6b4c64beba7 fdc661a2d07462f3b4d493c3d6ed951c fdc68b6ede67cf3fac8bef036d5cb5df +fdc6d856aa35866cbe00d2417c452fa9 fdca2b31739a6a212dd43567b2b2dec2 fdcc83dc63d3cee3129e60b69ea0d5d9 +fdccdacf3c81f77a8b433ba0ca5e8980 fdcd8df3ee4daa390ae60d69cef3d0d1 +fdcdb782389e3249531534951281a11f fdceab7e59ac6c0db949cb6d0f5ab65a fdd0d66794b9c01bd98deeff7f237bf9 fdd3325911a4fce988f6fc3d9c66f64b @@ -57559,6 +64265,7 @@ fdd55c04f1ecd3e9a0170a89a7eb6fc5 fdd5cabb4b0a2efa15f72536e3c11a0c fdd5e4ea0e9d607dff6fe5777cce757b fdd7df1467dd4cbb52027dbd10a21870 +fdd7f7b0c1e93b18996b0f9f7a194c59 fddb863a818a55f586985125957781f4 fddc66a6049f15a2ac9335112ea003e3 fddcc782ef4ebbee16a19255274b883d @@ -57568,13 +64275,16 @@ fdde5e0be06d9811a377ce63bc1bfa81 fde01966d47a269f4034d902d498157d fde025c1ea0c29a05df129614596ab1a fde0f771e88d4515d5258d35537c23d1 +fde2f3de7989ae32e65e20971a89ec0d fde36d1747ec7cc9085fc9b8d4df64b5 fde4e931df6cf112595701795e2d7dd0 +fde4efb42e6fe5a01c166d2c16ebbe59 fde50e611451e737af52951b44b38c39 fde52c59a02b3eb24ac420cfb6dfc6cb fde572e2a46017a209cb7363a10c74eb fde5c1f566a4a85ee0dea45542557fdd fde5de8561aaf55e03f036d42a8db4ff +fde687878ed14ea2f1a6043ca58bd1c4 fde6d86a03d44f660cebc6029379425d fde7ae5c7227c85f708bb28f3bcb0664 fde7d5ffdfd62888109bac2771c21cb5 @@ -57603,6 +64313,7 @@ fdffa96d3cee1ad486c37d85ffbeb80b fe0128aad8de6412eb103e1241abf185 fe01ee02f1ea0ceaef1ef4363a81405f fe020b0696be4fa0fdfd72b8bada0d55 +fe065418592a482f5c4d2c04bbf9b43e fe08303214ad9353127c14b6f0da073a fe09763768b51ff280aa00e7265a13ff fe0a71081c28b26136d94a829045a8fd @@ -57626,6 +64337,7 @@ fe1b39c5f935e30191de53214b281ac1 fe1b85d251adb8e4384eceaa615d9c82 fe1d88ab6c33ffec4e6fdb12f9c46ee6 fe1dd9a361d556359a26c547b5bab5a5 +fe21e77727eb534a57050067a01ca36c fe239c8b88fbb04285e0785d6f0ce6e1 fe278beb1f2ad76473312aef20308b3b fe28e420e2cc9ba8cea65f7f9e7e9c49 @@ -57633,6 +64345,7 @@ fe29bc2e40a3e4a053e2063bfe62c959 fe2ba11caa55294ceb230f49985d6ff0 fe2c5574c9c0292ab8981f8fd8dea837 fe2d132f2d4a0a8b5e1db2a5c0f66cb0 +fe2d7e7f5d4f61d13fb389d74ecaeb68 fe2e0ee93ee5eb1602a59a951cd980c6 fe2f3e22c605eb3a00194adaef8282f0 fe2f5ca63b286bdef90cfde25e8d4543 @@ -57640,6 +64353,8 @@ fe32d39f47488efb59aa1d2128229b01 fe3350bb4c1483910f4ef6befddfa83f fe337066c08199bf7d9fe3ba6398ded6 fe3522355333a257462c6a998da6c027 +fe363ea7f4868135246c54853004d7ff +fe3721c46983d4cd2ec7f61ae16f3346 fe372900e1c2a71f5d95db7deb447cc6 fe37af1121acc8eea99038b5449dc42c fe38c68781841f3e2c7e025adf140ae7 @@ -57653,13 +64368,17 @@ fe4330efbfca7a52b3319555e035052a fe439b38a13bdb8df49b6a46ed2a3f40 fe45040c4455a45d41abe5a716c1c4f9 fe460cedef353182362a5c0dbed781f6 +fe462a469891d8bb51ea523d2c78349d fe4861c16670b46abdb7233b498d6b09 fe48fce1093ac1ea73fe5801af68a64a +fe498a3f5ee551ed8ee55b83f6eeec8a fe4af76d097fe32cb32b07dbaace5fa3 fe4afebbc7eff059485846198c812a91 fe4e6882d86e78f9f9821fac468e1708 +fe5246337e6ac74b2bbcb3d6733156c5 fe54b48413b5dec2c0757669fe22a572 fe56878bf49aba131992500c61be3d4f +fe57649774931ef02c349e247818c4ee fe5976ca2951b92cb6d4277b111ded8f fe5978aba3beaac52dc67e93fde647ed fe5a207aa868d990e1cc99df1ff69ca1 @@ -57667,19 +64386,23 @@ fe5acf915665fb3c1b0a4265b91b0aaf fe5b4e8f894aa960293ecfe741c0b191 fe5c07a8cbb65ad630626e793bae9c07 fe5f004e4e6f731bdf87dd96620cf827 +fe5f066f4d34527f80640b83dc41532c fe5f5237f7bfa85bd8eb01d914f8e6fb fe60aa5e78c658d7dec77391545e10a6 fe6116478a3ef478f619e3dcfc252a93 fe61cbcffd335091e3582c4b978b3a88 +fe640aa591ca1d1a3a57767f0aedfe7e fe65e8dc4c1b06a56f19f211175b047b fe66b580a334de1727bab40a959a5103 fe689ff12979381ac939a82725f14b5c fe68bb398c20b95ad3ac817d3961b8ec +fe6ace7a9cc28ea88197d52013428706 fe6b58abff1e0181af3593b3352ac5c2 fe6c6ccf1b3756af6f5bfa704c53a62c fe6c730c0b7d25ab26d4849a99d52f72 fe6cddd4b51d8a2f54d0cdeca7fee260 fe6efda102b589b07d61febb304c323b +fe717e9b53962c47db134ec91e1daf91 fe7190395b62f5ae7a4c508d2d90dcb7 fe748248c18a90a4be14d0edd16fe09d fe7568bb813808ef3935bcd2fad37dae @@ -57700,6 +64423,7 @@ fe84995db27ea4edd6b06571a69567ec fe84cabfed2b16dd6f95ab2bc663d163 fe85e9d295826d9a46d769d4dfd07be1 fe85fba83877d96aa1202b631a24fbc9 +fe880cd9bfa9a89ad4309c7f64ab367b fe8a983d950a0b5dc224722e76651db5 fe8b84c3fd2e847cde501e2b52205bc8 fe8d31e8c9cdccfa8dfb9a0c39c48afb @@ -57721,7 +64445,9 @@ fe9bc7eaacab21d91cb9c15ebb0f6344 fe9c827f7212edb153c40d5c504b8a26 fe9de99fe592731f4d93c599bad689a1 fe9e03a8013f452eab395047fd68a2f8 +fe9f35c197dfb20423ea6371346edd3a fea0c8b909943c5c79afd1f9fb5f018c +fea230d4dc10b9debf33c7ced149da5e fea28a5746e45a0b12e676b1ca44bc14 fea4390d46d17d5e0e07a97cff4ef075 fea605a86fb68eed4240558de75d338b @@ -57751,15 +64477,19 @@ feb9f6fbab110816b7d9b40948fcf392 febc05bb5e2619915f57bed34496a080 febc737ad7bd2b3b97a563860fd1e3ce febe63320d1abf4e5788f4b92cb1a14e +febefba163febbc314ee76964fd208ae febf9be8a3a33110c276d47cbe444977 febfad9d4e74a9df68b536384685f914 fec02db452681507c9f6aa0d2744ea8d fec1627ebbf9c2e0b19aa1abdeace369 fec31e3c5636d034db7d77b74d392837 +fec629773270160ba4110b9871935213 +fec67c2b35efee71b36e1863a2c63612 fec700c8f9e220643ede8c23ef3f579e fec8460590d596f617dbe432f06922f4 fec9120eb69e66e0b0ffc954c107e06e feca5dc85f0e16b548826b11257e7668 +fecab03c8d5af35766ad50aed6bcf00d fecc512eec9968fc1fc57d59da88e350 fece40aac7c899a992d61f1160ca69ef fece65a24bfa92478d9aabb5e10524ea @@ -57779,7 +64509,9 @@ fedc4ae3203d3c6c8812a25a9bc7cc1b fedce25d0eb84a4a16da694ca4b1f2f0 fedfe858672a7767ad203f024cc8efca fee08b0ce490733f4f40ef2c16eac7a4 +fee0f3d3a27eb5c939689fba39817323 fee33ef3c8cb7d8af69515d97c060ab9 +fee34602648e634373380c38ce47976b fee415e0368f6c8085e1f648a9f90134 fee44874cfe6f529e200eaf8f85df43a fee8d87c869018870c815db95cd72c9a @@ -57788,6 +64520,7 @@ feea33bb7998a6989cc31f1c4f4f429d feea4177c2112af966a5966d9f415fa4 feea5591651e0590f2826aab868bface feeb1fa543a2e363c0038805d9ed8871 +feebd940c07373648ddf982f649b58ef feec4057405bb45d2f62db1170bdbb1f feec501f02a92df68cac935fe8c7d80f feed2b93cb932c13dcf3d1c5bb550c05 @@ -57802,19 +64535,23 @@ fef2dc1ac0cc2b1651c3dc136ff01a28 fef4106328250ac47ab220adedd2cf45 fef4175f6ca217ce3c1b15deae3526ff fef5aa3e1897be2436e28c5aded3c308 +fef7405e82696e00fe6ff06612e1901c fef7884338438ce445b9a64408d5836a fef80ba2651edf62be9b02204f14a684 fef8a361d5dfd33ecba109224ee5038f fefb071c85eea070fb5a746358cf3d5e fefb5c5709d2ddfd8d9a8425ac934c29 +fefc75022dfeb0f1e4de56a51eb6161e fefd1ca0c28a252098abc559fd97d965 fefd2d28951857764372c58c00dec9f8 fefe68e9e838c159471f9a3c9598f5da fefebcfbbcff9a021d1cbef80c5512c4 +feff5dcb296358db62a72a7b79040add feffc126d6ba773bcdf8ef9739e65e47 ff008dd88b82ab0aec8ddd9d2f3c1317 ff00b295f2c17800f8bb61c511827837 ff00c1cfc715f80b40a7cfab2452be2e +ff025fefec6d15a1c7d0b0b5fdadba1b ff037df90a82c0f4c26f4b8547a70167 ff04a809201b0413854978fb0c806ce2 ff056457bef2ea90cbfdf5f17b87a8fe @@ -57822,32 +64559,38 @@ ff06a24fccbb0766802fda96659a5405 ff06d248a29d757aa0afa824908ebadd ff06d92372b3503d4bd29108ca893112 ff0708815ab22577ffd987b2fa479cbf +ff07dd1846b9acb7ced1d05553dc9eb0 ff08b4ab5b226db93ae9358bcb6aa73f ff0962b8540fc4426d9ab8c5f804ad8e ff0a09ec752653d7090b8949cd8259a3 ff0a6713c28202159927b3463281355e ff0a962245ae339a165e36b643aeeaf4 ff0afc56b8e788821134edbcc68ff703 +ff0e55dc7944ffc710b07f83c7590ff1 ff0eb97a78becafad988ce36dc58fe33 ff0ecfb1fa537371e4d9fb29020a531a ff107862dd640e096a947a1806fdfa88 ff116155f8c0f0b3c51d17f26beb6911 ff12097a60afe4b5ee211428022cd4d0 +ff12fcf47f47fbd64a794be6e5519549 ff136b6f3da2ccacfe8286dd561c9289 ff14697d142a8712c55d0d3a72d3d241 ff14b615ab94c9d2ba5af647b1e7fc01 ff14eeeac7ecae6dd371be7fb2b7091d +ff155d98f767cb59ab511be56e2d05b5 ff166677b27ce68f0be221b36fc92a77 ff17ed00fa3884f4cc42a4b0f0c2465f ff1949fc0a0ca76f47548b466bfb635b ff195bb3bd6d4ba98aef3cb7f4753c42 ff1cc67806a84cdd3edbd49923cb7017 +ff1de97170a56ba7094b15244615d692 ff22a3721d519d95ebc3d33bd9fadd34 ff247086752290cccbf4ad67b5250166 ff24f928bdcb760355e825b5df17e010 ff25b948ce2fe844ab640c4d6ece3538 ff2607011d5a5d67351c9b17c5ab745b ff266ec90858b3d0dcbc0a7441b41d84 +ff28ec7360a0ca6dc5e97a22841985fc ff29a5c7380a0f1af5977edc051a3603 ff2a0cfd542bd2318d7bc0f64a78d0f6 ff2b3eb773a53660896b753067686cb3 @@ -57856,9 +64599,11 @@ ff2c8c5bd21d88286073227b2b17fa9e ff2d1d4ea73ded804269482057da11f0 ff2dcef13ad9e56272723c9e68892330 ff2efaf48bb3a229db962e709c6d95de +ff2f27db63a400c76934958afde259bb ff2f5df7b3e1e330a67f5b778608ac4d ff2fe843be87cd71bfc7fb0452908456 ff31fac08d21f24b6bb44bab0b4fc85a +ff33c19bd3455a69ce2881c0e2edc129 ff35a63f215046e021b1627c05a33387 ff35d32a44f393599be1a3ab2ee94a9b ff374bb31c931ffe088bd826b55e5f54 @@ -57877,6 +64622,7 @@ ff4711ba6fcd2a4a36bee8cb2ee1e805 ff47a78f1d647f1b223621ffb933d716 ff47df32fa4daec649bdb7680a342718 ff485e99e59b51dbe26c1762b9d54d12 +ff488faa547bb5d65d5f6d574713db32 ff495554aab44edb5e62f653fac69326 ff4a2f083cb63e053ce60f5d40034543 ff4b7540add498422d2c9f44c5d20887 @@ -57885,10 +64631,12 @@ ff4de078bdd01a05aa2e17878d0c64d6 ff5185fa1dce45618224432060810e3b ff52bf3f721773f1413c1e8b19d2a88a ff52c3c63aeae7045d517c932bb229ce +ff52c7653e9c8686d46b58da7c7778d6 ff550948742ce575edb6f3cac212d5f2 ff556f0b9393c3fed13e0f5d36ab8dae ff55f81342a32cd6667382565debad4b ff5734d1aa6c622884ee56eb8c6690b1 +ff578183fd5f74cc8a84f64adc72279b ff590878a55e5c5969cded82ec13584f ff59e4390fe2d5c3044198dbc0d70754 ff5bd1b7e45a8e590e449777b762feb0 @@ -57897,9 +64645,11 @@ ff5e5ba99a9307240221610595b18875 ff61bb10d210bb0c72b0ecc6f45b722d ff6286edf5e8e6eeebad4ffe5bb97b22 ff6347cdbff3d963ef396f29c89dd5d2 +ff64af020083d605c4a1cff7e6eb2cf2 ff64d7e12d06da89b4d4dc5c1e2007e1 ff64ea43daf1f6690b7e3adf8218a400 ff67416f6be5ff7f1664ac93d946bc61 +ff67918dfcb9c074b66ea7c501a103f8 ff68942431c93f792b1e56b0da56ed82 ff6a45bcf786b24af2e90b7ceb2079b9 ff6a61a39ecc7a45f2171be26ad20eda @@ -57914,15 +64664,20 @@ ff6df8db04c90987eba365615327b94e ff6ee5255c232aaaff612c1ab7079f8e ff6fdc26e2ca51adc769f121d1640451 ff71805bdcfe2248d52bee4e0b707d0b +ff71e503235a3f2d51ab5925363a76d1 ff71f3a6369bbecccdcee869073f1b71 +ff720111207dc3371009546dfe5cfa01 ff726154c6cbe0210923c556e1852dc7 ff728269b3614035d366cf796ab087c8 ff72d7b87a310e97ec6c9c8e8ce4ab77 ff748298206e7625189228ef76806303 ff748c8f9d27f8f484613fbdaad00799 ff75563a6e26dc51a1160ea08d50ba61 +ff760a7c464a30e0bcbac3b76d22a16b +ff792104847892f2cf829a8691c30165 ff7ae88de9f08a441636378aa4ea2021 ff7c4a92fe91727f62cc71270016a319 +ff7f0856aae9011c174d0c82e83fbb25 ff7f7dd10730508f2921ac5a14d6d5c7 ff804b76a0b84687e60a31cbf2901d1f ff8204a4476dc0467dbadae97251bf6e @@ -57930,6 +64685,7 @@ ff82d3c3e774a4f46e5deb52191a0fc6 ff831717a5809c0c5e8a97e514f6294c ff838ee803fe69a8570416d1d04b307a ff8473820b215df1504338da655fac4c +ff84b52a1635be8d247c492272a2d909 ff85b119b4d24d25e555276aec5f641d ff864d7a4df0d05b11a501d58831b14a ff8705e27f88bb6bf34cd3d4152ef43e @@ -57939,6 +64695,7 @@ ff89d9298c936f318e31abf29ef779fe ff8a1cfaa841b5c26997bde5f83c1fbe ff8acd12b05e64f5a6277f1cab9e9b1b ff8ba184c65994a1e899b48081747867 +ff8f51465dd6a2e5ec0606d4e90deaa2 ff8f90519fd0206b24a1e46fdcf6c5d6 ff8fbcff1f2c034a1d6cea2c483241a0 ff9002d2b3f6e48805207a040e230ce1 @@ -57946,6 +64703,7 @@ ff900855ef2d9c05d842359b5e091dff ff91d654536517f0d97b9fc32ccf8d47 ff93d2d990c580b875818a17c6584db2 ff93ee2524c5ceeb4f9e875a8f4524b8 +ff963355c8f72ded48b62db030d26f29 ff967e254c09a5fa162d2c513e9cd465 ff96cfc14006dcd5cd2f5055e02692a7 ff96fe6e31d316945953e5debecf9e11 @@ -57957,6 +64715,7 @@ ff9aca746c779d1f530183e464cf61a8 ff9b66d3fa3e59ad7d5187c5fc32dfce ff9d56068b5c792c2412a86509af099d ff9e0dcaa7dd967bbeba8f357d3102c0 +ffa28282e0a715ed033ec3b2cb3f98ae ffa2f34877c96d16515ddc44e59cf39b ffa4c7c35cbb60bd5bac8c2692805b67 ffa4ee2b7c22e517d1e51a2d7ba96c64 @@ -57970,6 +64729,7 @@ ffa7a44e00395b562213e73a9e126e21 ffa7b09a59bbfca6303130c82f6c950d ffaa3de32a34545a25d20d8ca7f77f1e ffaabf21767c53a55d78a8655bb5175a +ffab175cfc48977594b3340fda214d17 ffab254e799fd42d10da6d4c9f32bf1c ffab9ae62ea5149cebc770d69ab1fc3b ffabb8920899a83a51d88dc6ba5e2596 @@ -57984,7 +64744,9 @@ ffb70773b34e244bbcc97a614a625fe9 ffb74266d52bf044cff87eab01bcf2dc ffb7a2b1f802d60f00fa3da92d3eac19 ffb7dcf84173252ff46d602e9f22e577 +ffb99f5ccfae36f8d737bb08ad8efc01 ffbb402e50ae32f31b0f54368603c4ff +ffbbc3c6bd2d31051289a4f73b398135 ffbcac9b7410e5c1d7c0c92b424d8a44 ffbcd43aa88c27bbaf8e2fd6907faaed ffbf4efac6f9d16dadbf3cf7a6d4612b @@ -58005,6 +64767,7 @@ ffcc56cfee46a62a7594c29b401bf8cf ffcd6272e9b54f1183efd9f0d46b1bd0 ffce45e8ac3827ea2afb49fbd2c9ac81 ffd07816a2a97d5f56562259846c7e8c +ffd0f809e64eb9e3987993baa35451f2 ffd18881dba66205c4e21e6dff2e70bb ffd268d7d7660ca5fbac103cfa50f5e5 ffd2da4d58f6bccacb985215be811cd5 @@ -58035,6 +64798,7 @@ ffe78d515dbed78b8a75415c98633ce1 ffe7ce6ea4a218719fca792cdf726af4 ffead1d08cb28c4af100783413415145 ffeb50773926188e20ddbfdb08212eaa +ffebbb851cca133f07da76fc31f4e331 ffed5926e8ea23b3cb743d4075d61452 ffee9a7d8f0b158120861f460aff695c ffefd774e4ea46caa8f49d7814475592 @@ -58042,8 +64806,11 @@ fff0ab39c75cf5441fcece68da746c7c fff1bbba90ee509950dc3d634fd6efa3 fff2eed02d5934c5443f7b727bcdb8bd fff33d3a8a4c6b80f5e80052eb7c897d +fff69f5e070d68184d46f544ce595894 fff736864cf8bb0df27b9e55a1921fb4 fffb3b61e603ae263fd0b9f3b085fd63 fffb6bb2a5db5614aaef0569c3d8021f fffcb0601c17a4ef20a9b4bb00a2a6a9 -fffccc91ba9f9e0e5d63a0167a71701b \ No newline at end of file +fffccc91ba9f9e0e5d63a0167a71701b +fffe5e6bb15c2b5d454e767341b4423d +fffead5230a9a6c6b8a8bddec53a7912 \ No newline at end of file diff --git a/searx/data/currencies.json b/searx/data/currencies.json index a5d0dc426..7ec63205e 100644 --- a/searx/data/currencies.json +++ b/searx/data/currencies.json @@ -603,7 +603,7 @@ "брунейский доллар": "BND", "брунејски долар": "BND", "bruneisk dollar": "BND", - "புருனே டாலர்": "BND", + "புரூணை டாலர்": "BND", "ดอลลาร์บรูไน": "BND", "brunei doları": "BND", "брунейський долар": "BND", @@ -752,13 +752,12 @@ "רובל בלארוסי": "BYN", "bjeloruski rubalj": "BYN", "belarusz rubel": "BYN", - "rubel belarusia": "BYN", + "rubel belarus": "BYN", "rublo bielorusso": "BYN", "ベラルーシ・ルーブル": "BYN", "벨라루스 루블": "BYN", "baltarusijos rublis": "BYN", "baltkrievijas rublis": "BYN", - "rubel belarus": "BYN", "wit russische roebel": "BYN", "ਬੈਲਾਰੂਸੀ ਰੂਬਲ": "BYN", "rubel białoruski": "BYN", @@ -1314,10 +1313,7 @@ "ethiopische birr": "ETB", "эфиопский быр": "ETB", "ефіопський бир": "ETB", - "euro": [ - "HRK", - "EUR" - ], + "euro": "EUR", "يورو": "EUR", "евро": "EUR", "ইউরো": "EUR", @@ -1659,34 +1655,6 @@ "гондурасская лемпира": "HNL", "honduras lempirası": "HNL", "гондураська лемпіра": "HNL", - "كونا كرواتية": "HRK", - "хърватска куна": "HRK", - "kuna": "HRK", - "chorvatská kuna": "HRK", - "kroatiske kuna": "HRK", - "kroatische kuna": "HRK", - "croatian kuna": "HRK", - "kroata kunao": "HRK", - "kuna croata": "HRK", - "kroatian kuna": "HRK", - "kuna croate": "HRK", - "קונה": "HRK", - "hrvatska kuna": "HRK", - "horvát kuna": "HRK", - "kuna kroasia": "HRK", - "クーナ": "HRK", - "크로아티아 쿠나": "HRK", - "kroatijos kuna": "HRK", - "horvātijas kuna": "HRK", - "ਕ੍ਰੋਏਸ਼ੀਆਈ ਕੂਨਾ": "HRK", - "хорватская куна": "HRK", - "chorvátska kuna": "HRK", - "hrvaška kuna": "HRK", - "хрватска куна": "HRK", - "kroatisk kuna": "HRK", - "குனா": "HRK", - "hırvat kunası": "HRK", - "хорватська куна": "HRK", "جوردة هايتية": "HTG", "gourde": "HTG", "haitský gourde": "HTG", @@ -1841,6 +1809,7 @@ "индијска рупија": "INR", "indisk rupie": "INR", "இந்திய ரூபாய்": "INR", + "எண்ணிம ரூபாய்": "INR", "రూపాయి": "INR", "รูปีอินเดีย": "INR", "hindistan rupisi": "INR", @@ -2192,6 +2161,7 @@ "lõuna korea vonn": "KRW", "etelä korean won": "KRW", "won sud coréen": "KRW", + "וון דרום קוריאני": "KRW", "južnokorejski von": "KRW", "dél koreai von": "KRW", "won korea selatan": "KRW", @@ -3292,7 +3262,7 @@ "PLZ", "PLN" ], - "ซวอตือโปแลนด์": [ + "ซวอตือ": [ "PLZ", "PLN" ], @@ -3887,6 +3857,7 @@ "добра сан томе і принсіпі": "STN", "ليرة سورية": "SYP", "сирийска лира": "SYP", + "সিরীয় পাউন্ড": "SYP", "lliura siriana": "SYP", "syrská libra": "SYP", "syrische lira": "SYP", @@ -4200,7 +4171,7 @@ "フリヴニャ": "UAH", "우크라이나 흐리우냐": "UAH", "grivina": "UAH", - "ukrainas grivna": "UAH", + "ukrainas hrivna": "UAH", "hryvnia ukraine": "UAH", "oekraïense hryvnia": "UAH", "ਯੂਕਰੇਨੀ ਹਰੀਵਨਾ": "UAH", @@ -4212,7 +4183,7 @@ "ukrajinska grivna": "UAH", "украјинска гривна": "UAH", "ஹிருன்யா": "UAH", - "ฮริฟเนียยูเครน": "UAH", + "ฮรึวญา": "UAH", "ukrayna grivnası": "UAH", "гривня": "UAH", "ugandese sjieling": "UGX", @@ -4299,7 +4270,6 @@ "uruguaanse peso": "UYU", "بيزو أوروغواي": "UYU", "уругвайско песо": "UYU", - "peso uruguaià": "UYU", "uruguayské peso": "UYU", "uruguayischer peso": "UYU", "uruguayan peso": "UYU", @@ -4437,7 +4407,7 @@ "самоанская тала": "WST", "самоанска тала": "WST", "самоанська тала": "WST", - "فرنك وسط أفريقي": "XAF", + "فرنك وسط إفريقي": "XAF", "централноафрикански cfa франк": "XAF", "franc cfa de l'àfrica central": "XAF", "středoafrický frank": "XAF", @@ -4546,7 +4516,7 @@ "özel çekme hakları": "XDR", "спеціальні права запозичення": "XDR", "quyền rút vốn đặc biệt": "XDR", - "فرنك غرب أفريقي": "XOF", + "فرنك غرب إفريقي": "XOF", "западноафрикански cfa франк": "XOF", "franc cfa de l'àfrica occidental": "XOF", "cfa franc bceao": "XOF", @@ -4620,7 +4590,7 @@ "yemen riyali": "YER", "єменський ріал": "YER", "suid afrikaanse rand": "ZAR", - "راند جنوب أفريقي": "ZAR", + "راند جنوب إفريقي": "ZAR", "южноафрикански ранд": "ZAR", "rand": "ZAR", "jihoafrický rand": "ZAR", @@ -4676,6 +4646,7 @@ "real time gross settlement dollar": "ZWL", "dollaro rtgs": "ZWL", "rtgsドル": "ZWL", + "dólar do zimbábue": "ZWL", "درهم": "AED", "DH": [ "MAD", @@ -5165,6 +5136,8 @@ "dolar de barbados": "BBD", "dolar barbadense": "BBD", "dollar de la barbade": "BBD", + "bbd$": "BBD", + "bds": "BBD", "dollaro": [ "BZD", "BBD" @@ -5514,6 +5487,7 @@ "$can": "CAD", "$ca": "CAD", "huard canadien": "CAD", + "cdn$": "CAD", "dollar kanada": "CAD", "カナダ・ドル": "CAD", "加ドル": "CAD", @@ -6047,6 +6021,7 @@ "dollar des îles fidji": "FJD", "dollar fidjien": "FJD", "דולר פיג'י": "FJD", + "fj$": "FJD", "피지달러": "FJD", "dólar das fiji": "FJD", "dolarul fijian": "FJD", @@ -6347,31 +6322,6 @@ "lempira hondurenha": "HNL", "валюта гондураса": "HNL", "хондурашка лемпира": "HNL", - "kn": "HRK", - "hrk": "HRK", - "lipa": "HRK", - "kuna croatia": "HRK", - "kroatia kunao": "HRK", - "kunao": "HRK", - "lipao": "HRK", - "cuna croata": "HRK", - "horvaatia kuna": "HRK", - "ליפה": "HRK", - "クロアチアの通貨": "HRK", - "クロアチア・クナ": "HRK", - "クロアチア・クーナ": "HRK", - "쿠나": "HRK", - "kuna chorwacka": "HRK", - "kuny": "HRK", - "lipy": "HRK", - "kuna da croácia": "HRK", - "валюта хорватии": "HRK", - "куна": "HRK", - "липа": "HRK", - "குரோவாசிய குனா": "HRK", - "குரோஷிய குனா": "HRK", - "hırvatistan kunası": "HRK", - "куна хорватська": "HRK", "Gde.": "HTG", "gde.": "HTG", "haitianische gourde": "HTG", @@ -6842,7 +6792,6 @@ "sud korea vono": "KRW", "jeon": "KRW", "lõuna korea won": "KRW", - "וון דרום קוריאני": "KRW", "韓国ウォン": "KRW", "대한민국 전": "KRW", "대한민국 화폐": "KRW", @@ -7027,11 +6976,12 @@ "lib$": "LRD", "dolar liberiano": "LRD", "dollar liberien": "LRD", + "l$": "LRD", + "ld$": "LRD", + "lrd": "LRD", "リベリアドル": "LRD", "dolar liberian": "LRD", "валюта либерии": "LRD", - "l$": "LRD", - "lrd": "LRD", "liberisk dollar": "LRD", "L$": "LRD", "لوتي": "LSL", @@ -7637,6 +7587,7 @@ "dollar de nouvelle zélande": "NZD", "dollar néozélandais": "NZD", "דולר ניו זילנד": "NZD", + "$nz": "NZD", "dollar selandia baru": "NZD", "nzドル": "NZD", "ニュージーランドドル": "NZD", @@ -7843,10 +7794,6 @@ "PLZ", "PLN" ], - "sloti": [ - "PLZ", - "PLN" - ], "zloty polaco": [ "PLZ", "PLN" @@ -7971,6 +7918,10 @@ "PLZ", "PLN" ], + "ซวอตือโปแลนด์": [ + "PLZ", + "PLN" + ], "польський злотий": [ "PLZ", "PLN" @@ -8163,6 +8114,7 @@ "dolar salomonense": "SBD", "dólar salomonense": "SBD", "dollar des iles salomon": "SBD", + "si$": "SBD", "dollaro delle isole salomone": "SBD", "ソロモン諸島・ドル": "SBD", "솔로몬제도 달러": "SBD", @@ -8170,7 +8122,6 @@ "dolar de las illas salamon": "SBD", "валюта соломоновых островов": "SBD", "долар соломонских острва": "SBD", - "si$": "SBD", "SI$": "SBD", "SRe": "SCR", "seychellisk rupee": "SCR", @@ -8346,6 +8297,8 @@ "dólar surinames": "SRD", "dollar du surinam": "SRD", "dollar surinamien": "SRD", + "sr$": "SRD", + "sur$": "SRD", "dollaro del suriname": "SRD", "スリナムドル": "SRD", "dólar surinamense": "SRD", @@ -8353,7 +8306,6 @@ "валюта суринама": "SRD", "суринамски гилдер": "SRD", "суринамски гулден": "SRD", - "sr$": "SRD", "Db": [ "STN", "SSP" @@ -8402,6 +8354,7 @@ "الليره السورية": "SYP", "ليرات سورية": "SYP", "ليره سوريه": "SYP", + "সিরিয়ান পাউন্ড": "SYP", "lira de síria": "SYP", "lira síria": "SYP", "lliura de síria": "SYP", @@ -8668,6 +8621,7 @@ "trinidad ja tobagon dollari": "TTD", "dollar de trinidad et tobago": "TTD", "dollar trinidadien": "TTD", + "ttd": "TTD", "trinidad en tobago dollar": "TTD", "dolar trynidadzki": "TTD", "dólar de trindade e tabago": "TTD", @@ -8680,7 +8634,6 @@ "тринидадский доллар": "TTD", "trinidadsko tobažský dolár": "TTD", "тринидад и тобаго долар": "TTD", - "ttd": "TTD", "долар тринідаду та тобаго": "TTD", "NT$": "TWD", "nt$": "TWD", @@ -8792,6 +8745,7 @@ "우크라이나 흐리브냐": "UAH", "흐리브냐": "UAH", "흐리우냐": "UAH", + "ukrainas grivna": "UAH", "ukrainas grivnas": "UAH", "grivnas": "UAH", "ukraiņu grivna": "UAH", @@ -8814,6 +8768,7 @@ "karbovanet": "UAH", "உக்ரைனிய ஹிரீவ்னியா": "UAH", "உக்ரைனிய ஹிருன்யா": "UAH", + "ฮริฟเนียยูเครน": "UAH", "українська гривня": "UAH", "гривні": "UAH", "грн.": "UAH", @@ -8831,7 +8786,7 @@ "우간다실링": "UGX", "ugandese shilling": "UGX", "валюта уганды": "UGX", - "US$": "USD", + "щ.д.": "USD", "usd": "USD", "us $": "USD", "american dollar": "USD", @@ -8849,6 +8804,8 @@ "דולר אמריקני": "USD", "דולר ארה\"ב": "USD", "דולר ארצות הברית": "USD", + "u$": "USD", + "usa dollár": "USD", "ドル": "USD", "米ドル": "USD", "dollar merikano": "USD", @@ -8872,12 +8829,14 @@ "đôla mỹ": "USD", "đồng bạc mĩ": "USD", "đồng bạc mỹ": "USD", + "US$": "USD", "us dollar [next day]": "USN", "uruguay peso en unidades indexadas": "UYI", "ui": "UYI", "uyi": "UYI", "$U": "UYU", "بيزو أوروغواني": "UYU", + "peso uruguaià": "UYU", "peso d'uruguai": "UYU", "peso de l'uruguai": "UYU", "$u": "UYU", @@ -9025,6 +8984,7 @@ "тала": "WST", "samoansk tala": "WST", "فرنك س ف ا وسط أفريقيا": "XAF", + "فرنك وسط أفريقي": "XAF", "xaf": "XAF", "frank beac/cfa": "XAF", "ffranc canol affrica": "XAF", @@ -9146,6 +9106,7 @@ "спз": "XDR", "zpč": "XDR", "special drawings right": "XDR", + "فرنك غرب أفريقي": "XOF", "فرنك س ف ا غرب أفريقيا": "XOF", "F": "XOF", "xof": "XOF", @@ -9244,6 +9205,7 @@ "јеменски риал": "YER", "yemenitisk rial": "YER", "R": "ZAR", + "راند": "ZAR", "rand de sud àfrica": "ZAR", "rand sud africà": "ZAR", "rand de affrica": "ZAR", @@ -9287,9 +9249,12 @@ "квача замбии": "ZMW", "zambiya kwachası": "ZMW", "ZK": "ZMW", - "zimbabwe dollar": "ZWL", - "rtgs": "ZWL", + "Z$": "ZWL", "rtgs$": "ZWL", + "z$": "ZWL", + "zwl": "ZWL", + "zimdollar": "ZWL", + "fifth zimbabwean dollar": "ZWL", "pesos": [ "MXN" ] @@ -9996,7 +9961,7 @@ "ru": "брунейский доллар", "sr": "брунејски долар", "sv": "Bruneisk dollar", - "ta": "புருனே டாலர்", + "ta": "புரூணை டாலர்", "th": "ดอลลาร์บรูไน", "tr": "Brunei doları", "uk": "Брунейський долар", @@ -10212,7 +10177,7 @@ "he": "רובל בלארוסי", "hr": "Bjeloruski rubalj", "hu": "belarusz rubel", - "id": "Rubel Belarusia", + "id": "rubel Belarus", "it": "Rublo bielorusso", "ja": "ベラルーシ・ルーブル", "ko": "벨라루스 루블", @@ -10454,7 +10419,7 @@ "bn": "রেন্মিন্বি", "bo": "མི་དམངས་ཤོག་དངུལ", "ca": "renminbi", - "cs": "Čínský jüan", + "cs": "čínský jüan", "cy": "Renminbi", "da": "Renminbi", "de": "Renminbi", @@ -11057,7 +11022,7 @@ "id": "pound sterling", "it": "sterlina britannica", "ja": "スターリング・ポンド", - "ko": "영국 파운드", + "ko": "파운드 스털링", "lt": "Svaras sterlingų", "lv": "sterliņu mārciņa", "ms": "paun sterling", @@ -11394,47 +11359,6 @@ "uk": "Гондураська лемпіра", "cy": "Lempira Hondwraidd" }, - "HRK": { - "ar": "كونا كرواتية", - "bg": "Хърватска куна", - "ca": "kuna", - "cs": "Chorvatská kuna", - "da": "Kuna", - "de": "kroatische Kuna", - "en": "Croatian kuna", - "eo": "kroata kunao", - "es": "kuna croata", - "et": "Kuna", - "fi": "Kroatian kuna", - "fr": "kuna croate", - "gl": "Kuna croata", - "he": "קונה", - "hr": "hrvatska kuna", - "hu": "horvát kuna", - "id": "Kuna Kroasia", - "it": "kuna croata", - "ja": "クーナ", - "ko": "크로아티아 쿠나", - "lt": "Kroatijos kuna", - "lv": "Horvātijas kuna", - "nl": "Kroatische kuna", - "pa": "ਕ੍ਰੋਏਸ਼ੀਆਈ ਕੂਨਾ", - "pl": "kuna", - "pt": "kuna croata", - "ro": "Euro", - "ru": "хорватская куна", - "sk": "Chorvátska kuna", - "sl": "hrvaška kuna", - "sr": "хрватска куна", - "sv": "Kroatisk kuna", - "ta": "குனா", - "tr": "Hırvatistan kunası", - "uk": "хорватська куна", - "cy": "kuna Croatia", - "ia": "kuna croate", - "oc": "kuna", - "vi": "Kuna Croatia" - }, "HTG": { "ar": "جوردة هايتية", "ca": "gourde", @@ -12031,7 +11955,7 @@ "ar": "وون كوري جنوبي", "bg": "Южнокорейски вон", "ca": "won sud-coreà", - "cs": "Jihokorejský won", + "cs": "jihokorejský won", "da": "Sydkoreanske won", "de": "südkoreanischer Won", "en": "South Korean won", @@ -12041,6 +11965,7 @@ "fi": "Etelä-Korean won", "fr": "won sud-coréen", "gl": "Won surcoreano", + "he": "וון דרום קוריאני", "hr": "Južnokorejski von", "hu": "dél-koreai von", "id": "Won Korea Selatan", @@ -12064,7 +11989,6 @@ "uk": "південнокорейська вона", "vi": "Won Hàn Quốc", "bn": "দক্ষিণ কোরীয় উয়ন", - "he": "וון דרום קוריאני", "oc": "Won sud-corean" }, "KWD": { @@ -12287,7 +12211,7 @@ "de": "Liberianischer Dollar", "en": "Liberian dollar", "eo": "liberia dolaro", - "es": "Dólar liberiano", + "es": "dólar liberiano", "fi": "Liberian dollari", "fr": "dollar libérien", "gl": "Dólar liberiano", @@ -13154,7 +13078,7 @@ "de": "Panamaischer Balboa", "en": "Panamanian balboa", "eo": "panama balboo", - "es": "Balboa", + "es": "balboa", "eu": "Balboa", "fi": "Panaman balboa", "fr": "Balboa", @@ -13223,9 +13147,9 @@ "de": "Kina", "en": "kina", "eo": "papuonovgvinea kinao", - "es": "Kina", + "es": "kina", "fi": "Papua-Uuden-Guinean kina", - "fr": "Kina", + "fr": "kina", "gl": "Kina", "hr": "Papuanska kina", "hu": "pápua új-guineai kina", @@ -13356,7 +13280,7 @@ "sr": "пољски злот", "sv": "Złoty", "ta": "ஸ்வாட்டெ", - "th": "ซวอตือโปแลนด์", + "th": "ซวอตือ", "tr": "Złoty", "uk": "злотий", "vi": "Złoty Ba Lan", @@ -13399,7 +13323,7 @@ "sr": "пољски злот", "sv": "Złoty", "ta": "ஸ்வாட்டெ", - "th": "ซวอตือโปแลนด์", + "th": "ซวอตือ", "tr": "Złoty", "uk": "злотий", "vi": "Złoty Ba Lan", @@ -14068,6 +13992,7 @@ "SYP": { "ar": "ليرة سورية", "bg": "Сирийска лира", + "bn": "সিরীয় পাউন্ড", "ca": "lliura siriana", "cs": "Syrská libra", "de": "syrische Lira", @@ -14311,7 +14236,7 @@ "bg": "Турска лира", "bn": "তুর্কি লিরা", "ca": "lira turca", - "cs": "Turecká lira", + "cs": "turecká lira", "cy": "Lira Twrcaidd", "da": "tyrkisk lira", "de": "türkische Lira", @@ -14470,7 +14395,7 @@ "ja": "フリヴニャ", "ko": "우크라이나 흐리우냐", "lt": "Grivina", - "lv": "Ukrainas grivna", + "lv": "Ukrainas hrivna", "ms": "Hryvnia", "nl": "Oekraïense hryvnja", "oc": "Hryvnia", @@ -14484,7 +14409,7 @@ "sr": "украјинска хривња", "sv": "Hryvnja", "ta": "ஹிருன்யா", - "th": "ฮริฟเนียยูเครน", + "th": "ฮรึวญา", "tr": "Grivna", "uk": "гривня", "vi": "Hryvnia Ukraina", @@ -14576,7 +14501,6 @@ "af": "Uruguaanse Peso", "ar": "بيزو أوروغواني", "bg": "Уругвайско песо", - "ca": "peso uruguaià", "cs": "Uruguayské peso", "de": "uruguayischer Peso", "en": "Uruguayan peso", @@ -14603,6 +14527,7 @@ "sv": "Uruguayansk peso", "tr": "Uruguay pesosu", "uk": "Уругвайський песо", + "ca": "peso uruguaià", "he": "פסו של אורוגוואי", "oc": "Peso uruguaian" }, @@ -14757,7 +14682,7 @@ "oc": "Tala" }, "XAF": { - "ar": "فرنك وسط أفريقي", + "ar": "فرنك وسط إفريقي", "bg": "Централноафрикански CFA франк", "ca": "franc CFA de l'Àfrica Central", "cs": "Středoafrický frank", @@ -15018,7 +14943,7 @@ }, "ZAR": { "af": "Suid-Afrikaanse Rand", - "ar": "راند جنوب أفريقي", + "ar": "راند جنوب إفريقي", "bg": "Южноафрикански ранд", "ca": "rand", "cs": "Jihoafrický rand", @@ -15086,11 +15011,12 @@ "oc": "Kwacha zambian" }, "ZWL": { - "en": "Zimbabwe dollar", + "en": "Zimbabwean dollar", "es": "Dólar RTGS", "fr": "Real Time Gross Settlement dollar", "it": "dollaro RTGS", - "ja": "RTGSドル" + "ja": "RTGSドル", + "pt": "Dólar do Zimbábue (2019–presente)" }, "CHE": { "en": "WIR Euro" diff --git a/searx/data/engine_descriptions.json b/searx/data/engine_descriptions.json index b6482aa6c..bb0ddb1f7 100644 --- a/searx/data/engine_descriptions.json +++ b/searx/data/engine_descriptions.json @@ -37,7 +37,7 @@ "youtube":"YouTube - hamerikański internecowy wideoportal założůny we lutym 2005 roku. Uod 2006 mo zic we San Bruno we Kaliforńiji i je zależny uod Google LLC. Youtube pozwalo na darmowe wćepywańe, uobźyrańe a komyntowańe filmůw. We roku 2019 portal tyn doł zarobek 15 miljardůw dolarůw, srogo tajla z tego generujům wrażůne sam reklamy." }, "pap":{ - "wikipedia":"Wikipedia ta un ensiklopedia multilingual riba internet. E ta skibi dor di voluntarionan uzando software pa páginanan di wiki, loke ta hasi posibel pa artíkulonan sea añadi of kambiá dor di kasi tur hende.", + "wikipedia":"Wikipedia ta un ensiklopedia multilingual riba internet. E nomber ta un kombinashon di wiki i ensiklopedia. E ta skirbi dor di voluntarionan uzando software pa páginanan di wiki, loke ta hasi posibel pa artíkulonan sea añadi of kambiá dor di kasi tur hende. Na 2022 Wikipedia a klasifiká komo e di sinku wepsait mas popular na mundu.", "currency":"DuckDuckGo ta un search engine/mashin di buskeda basa den Valley Forge, Pennsylvania cu ta uza informacion for di crowdsourcing cu e meta pa hisa e resultadonan tradicional y mehora e relevancia. E filosofia di e search engine ta enfatisa privacidad y no ta warda informacion di e uzadonan.", "ddg definitions":[ "currency:pap", @@ -82,7 +82,7 @@ ], "crossref":"CrossRef is een samenwerking tussen uitgevers om de standaardisatie van digitale objecten online mogelijk te maken.", "currency":"DuckDuckGo is een zoekmachine die informatie van veelbezochte sites zoals Wikipedia gebruikt om traditionele internet-zoekresultaten te verbeteren. De zoekmachine beoogt een betere privacy voor gebruikers te geven en poogt vooringenomenheid te voorkomen. Er wordt niet gekeken naar het zoekgedrag van de gebruiker. Elke gebruiker krijgt dezelfde zoekresultaten te zien voor dezelfde zoekopdracht.", - "deezer":"Deezer is een web-streaming service voor muziek. De dienst laat gebruikers onbeperkt luisteren naar nummers van muzieklabels zoals Sony Music Entertainment, Universal Music Group, en Warner Music Group. Deezer is beschikbaar in browsers, op Android, BlackBerry, iOS, Windows Phone en Symbian. Naast afspeelmogelijkheden in browsers zijn er met Deezer ook mogelijkheden tot afspelen via streaming speakers zoals onder andere die van HEOS by Denon. Ook is er een Windows 8 en een Windows 10 desktop app.", + "deezer":"Deezer is een web-streaming service voor muziek. De dienst laat gebruikers onbeperkt luisteren naar nummers van muzieklabels zoals Sony Music Entertainment, Universal Music Group, en Warner Music Group. Deezer is beschikbaar in browsers, op Android, BlackBerry, iOS, Windows Phone en Symbian. Naast afspeelmogelijkheden in browsers zijn er met Deezer ook mogelijkheden tot afspelen via streaming speakers zoals onder andere die van HEOS by Denon. Ook is er een Windows 8 en een Windows 10 desktop app. Deezer kan ook als app worden geinstalleerd op een telefoon of tablet. Men kan zelf afspeellijsten samenstellen. Via de pc kan men mp3's toevoegen voor de eigen afspeellijsten, via de telefoon of tablet is deze functie niet beschikbaar. Sinds 2020 is Deezer een geheel betaalde dienst. Voorheen kon men de dienst gebruiken, zonder reclame (betaald), of met reclame, mits men de reclame toeliet. Aangezien veel gebruikers dit omzeilden, kon men medio 2020 ineens nog maar 30 seconden van een muzieknummer luisteren en moest men een betaald abonnement afnemen, om alles weer te kunnen luisteren. De prijs is in 2023 10,95 euro per maand en kan men onbeperkt muziek luisteren en afspeellijsten maken.", "deviantart":"DeviantArt is een Engelstalige internet-community waar gebruikers zelfgemaakte kunstwerken tentoonstellen. De website ging van start op 7 augustus 2000 op initiatief van Scott Jarkoff, Matthew Stephens en Angelo Sotira. Het bedrijf DeviantArt, Inc. is in Hollywood gevestigd.", "ddg definitions":[ "currency:nl-BE", @@ -157,7 +157,7 @@ "wikiquote":"Wikiquote is een van de deelprojecten van de Wikimedia Foundation. Het doel van Wikiquote is het verzamelen van citaten van en over bekende personen. Daarnaast zijn er aparte pagina's voor citaten over een bepaald thema, zoals films, series, fictieve personages, boeken en meer algemene zaken zoals het weer. Ook is er ruimte voor het verzamelen van spreekwoorden in een bepaalde taal.", "wikisource":"Wikisource is een project van de Wikimedia Foundation dat zich richt op het verzamelen van bronmateriaal. Het project heeft hiermee als doel om een vrij wikiwikicompendium van primaire bronnen in elke taal te worden en om vertalingen van deze bronteksten te creëren. Alle teksten die op Wikisource worden gepubliceerd, dienen onder een vrije licentie te staan of bij het publiek domein te horen.", "wiktionary":"Wiktionary is een project van de Wikimedia Foundation om een gratis meertalig woordenboek van alle woorden in alle talen te maken.", - "wikiversity":"Wikiversity is een project van de Wikimedia Foundation. Het project biedt gratis leermateriaal aan, dat wordt opgebouwd vanaf de grond op de website.", + "wikiversity":"Wikiversity is een project van de Wikimedia Foundation. Het project biedt gratis leermateriaal aan.", "wikivoyage":"Wikivoyage is een project van de Wikimedia Foundation in de vorm van een vrije reisgids op internet. Het project omvat bestemmingen, reisgerelateerde onderwerpen en taalgidsen geschreven door onbetaalde vrijwilligers.", "wolframalpha":"Wolfram|Alpha is een antwoordmachine op het web, die niet zoekt naar pagina's zoals een zoekmachine doet, maar naar antwoorden op vragen, dat doet hij door te zoeken in een database van informatie. Om de antwoorden te berekenen maakt het gebruik van de software Mathematica. In maart 2009 is de antwoordmachine aangekondigd door de Britse natuurkundige Stephen Wolfram. De website is voor het publiek geopend op 15 mei 2009 en is officieel geopend op 18 mei 2009.", "seznam":[ @@ -171,7 +171,7 @@ "arxiv":"arXiv 是一個收集物理學、數學、計算機科學、生物學與數理經濟學的論文預印本的網站,成立于1991年8月14日。截至2008年10月,arXiv.org已收集超過50萬篇預印本;至2014年底,藏量達到1百萬篇。截至2016年10月,每月提交量超過10,000篇。", "bandcamp":"Bandcamp是一家美国線上音乐公司, 由前Oddpost联合创始人Ethan Diamond与程序员Shawn Grunberger、Joe Holt和Neal Tucker于2008年创立,总部位于加利福尼亚。", "wikipedia":"維基百科 是维基媒体基金会运营的一个多语言的線上百科全書,并以创建和维护作为开放式协同合作项目,特点是自由內容、自由编辑、自由版权。目前是全球網絡上最大且最受大眾歡迎的参考工具书,名列全球二十大最受歡迎的網站,其在搜尋引擎中排名亦較為靠前。維基百科目前由非營利組織維基媒體基金會負責營運。Wikipedia是混成詞,分别取自於網站核心技術「Wiki」以及英文中百科全書之意的「encyclopedia」。截至2021年初,所有語種的維基百科條目數量達5,500萬。", - "bing":"是一款由微软公司推出的網路搜尋引擎。Bing的历史可追溯至于1998年的第三个季度发布的MSN Search,它的由Looksmart和Inktomi等提供;2006年3月8日,微软发布了Windows Live Search的公测版,并于同年9月11日让其取代了MSN Search,该引擎开始使用搜尋選項卡;次年3月,微软将其与Windows Live分开并更名Live Search,在此期间,其子服务曾经多次重组、关闭。到了2009年6月3日,微软将Live Search改造成了今天的Bing并正式发布。微软认为一词简单明了、易于拼写,容易被人记住;它源自成语「有求必应」。微软声称,此款搜尋引擎将以全新的姿态面世並带来革命。Bing的内测代号为Kumo,其后才被命名为。2020年10月5日,Bing更名為Microsoft Bing。", + "bing":"是一款由微软公司推出的網路搜尋引擎。Bing的历史可追溯至于1998年的第三个季度发布的MSN Search,它的由Looksmart和Inktomi等提供;2006年3月8日,微软发布了Windows Live Search的公测版,并于同年9月11日让其取代了MSN Search,该引擎开始使用搜尋選項卡;次年3月,微软将其与Windows Live分开并更名Live Search,在此期间,其子服务曾经多次重组、关闭。到了2009年6月3日,微软将Live Search改造成了今天的Bing并正式发布。微软认为一词简单明了、易于拼写,容易被人记住;而中文品牌名稱「必應」源自成语「有求必应」。微软声称,此款搜尋引擎将以全新的姿态面世並带来革命。Bing的内测代号为Kumo(「蜘蛛」的日文),其后才被命名为。2020年10月5日,Bing更名為Microsoft Bing。", "bing images":[ "bing:zh-HK", "ref" @@ -216,13 +216,14 @@ "unsplash":"Unsplash是一个免费的照片共享网站。攝影師可以将照片上传到Unsplash,照片编辑者们会对用户上传的照片进行整理。Unsplash使用了较为自由的著作權许可条款,这让Unsplash成为了互联网上最大的摄影照片供应商之一,其网站上的照片经常在文章配图中出现。截止至2020年4月,该网站拥有超过18万名摄影师,图库中储存了超过160万张照片。Unsplash被《福布斯》、《企业家杂志》、CNET和The Next Web评为全球领先的摄影网站之一。", "dailymotion":"Dailymotion 是一家視訊分享網站,總部位於法國巴黎十七區。它的域名在YouTube之後一個月注冊。Dailymotion最广为人知的特点之一就是其提供支援开放格式ogg的視訊。和同類型的其他Flash視訊分享網站相比,Dailymotion以其短片具有高清晰畫質而聞名。到2008年1月,每天上傳到該站的短片大約是16,000,網頁瀏覽次數平均一天超過2600萬次。2008年1月,Dailymotion的Alexa全球網站排名為38。母公司為威望迪。", "wikibooks":"維基教科書(英語:)是維基媒體的一項計劃,於2003年7月10日開放。 此計劃收集自由的教科書,並讓用戶自己編輯教科書——任何人都可以進入“編輯”頁面修改任何一本教科書。", - "wikinews":"維基新聞 是由一群志願者、即民間記者運營的網絡媒體。同時是一個自由內容的維基,屬維基媒體計劃項目,由維基媒體基金會負責運營。維基新聞通過協作新聞學的工作模式去運行,同時亦努力通過中性的觀點報導新聞。", + "wikinews":"維基新聞 是由一群志願者、即民間記者運營的網絡媒體。同時是一個自由內容的維基,屬維基媒體計劃項目,由維基媒體基金會負責運營。維基新聞通過協作新聞學的工作模式去運行,同時亦努力通過中性的觀點報導新聞,包括原創一手獨家報道和採訪。", "wiktionary":"维基词典(英語:),粵文版作維基字典,是维基百科的姊妹工程,旨在创建基于所有语言的自由词典。该项目于2002年12月12日启动,发起人是维基人Daniel Alston。", "wikivoyage":"维基导游(英語:)是基于Wiki系统,由志愿者撰写的免费互联网旅游指南。项目于2006年9月由德国的同名组织Wikivoyage e.V.发起,于2006年12月10日上线,2012年8月加入维基媒体基金会。项目内容使用知识共享-署名-相同方式共享协议授权,因此可供其他用户自由地用作商业用途。同时访客可以免费访问任何内容,并可以自由下载离线版本。对此类计划有害的商业性影响,例如来自旅游业的影响,被排斥于计划之外。", "wolframalpha":",是由 Wolfram Research 公司推出的一款在线自动问答系统。其特色是可以直接向用户返回答案,而不是像传统搜索引擎一样提供一系列可能含有用户所需答案的相关网页。", "naver":"NAVER(韓語:)是Naver公司旗下韩国著名入口/搜索引擎网站,其Logo为一顶草帽,于1999年6月正式投入使用。它使用獨有的搜尋引擎,並且在韓文搜尋服務中獨佔鰲頭。除了搜尋之外也提供入口網站的許多服務,例如新聞、電子信箱、電子地圖服務(含街景地圖)等。在Alexa排名上是韓國國內第一大的入口網站。 据ComScore统计,Naver在2007年8月收到二十亿次搜索,占70%以上的韩国搜索查询,它是世界上排名第十五的网民最常用的搜索引擎,超过25万韩国人选择Naver作为浏览器起始页。", "rubygems":"RubyGems是Ruby的一个包管理器,提供了分发Ruby程序和函式庫的标准格式“gem”,旨在方便地管理gem安装的工具,以及用于分发gem的服务器。这类似于Python的pip。RubyGems大约创建于2003年11月,从Ruby 1.9版起成为Ruby标准库的一部分。", - "rumble":"Rumble是加拿大的,讓使用者投稿、觀看、分享及評論,由科技企業家克里斯·帕夫洛夫斯基 於2013年創立。自2020年7月以來,Rumble的月度用戶數經歷了快速增長,從160萬月度用戶增加到2021年第一季度末的3190萬。" + "rumble":"Rumble是加拿大的,讓使用者投稿、觀看、分享及評論,由科技企業家克里斯·帕夫洛夫斯基 於2013年創立。自2020年7月以來,Rumble的月度用戶數經歷了快速增長,從160萬月度用戶增加到2021年第一季度末的3190萬。", + "goo":"Goo是一个日本的网络搜索引擎(技術由Google搜索提供)和门户网站,該網站會抓取和索引其他日语网站並呈現給用戶。Goo由日本NTT Communications的子公司NTT Resonant运营。" }, "af":{ "arxiv":"arXiv is ’n versameling elektroniese vooruitgawes van wetenskaplike artikels in die wiskunde, fisika, sterrekunde, informatika, matematiese biologie, statistiek en matematiese ekonomie wat aanlyn geraadpleeg kan word. In bepaalde gebiede van die wiskunde en fisika kan byna alle wetenskaplike artikels op arXiv gevind word. arXiv is op 14 Augustus 1991 begin en het op 3 Oktober 2008 reeds die grens van ’n halfmiljoen artikels verbygesteek.", @@ -232,10 +233,6 @@ "bing:af", "ref" ], - "bing news":[ - "Nuus vanaf wêreld-, nasionale en plaaslike nuusbronne, wat georganiseer is om aan jou omvattende nuusdekking van sport, vermaak, besigheid, politiek, weer en meer te verskaf.", - "https://www.bing.com/news" - ], "currency":"DuckDuckGo is ’n soekenjin op die Internet. Een van hulle grootste trekpleisters is dat hulle meer privaatheidsbewus is en nie op gebruikers spioeneer nie. Die gebruiker se gedrag en profiel beïnvloed dus nie die resultate nie. As gevolg hiervan sal elke gebruiker presies dieselfde resultate vir dieselfde soektog kry.", "ddg definitions":[ "currency:af", @@ -286,7 +283,7 @@ "artic":"معهد الفن في شيكاغو متحف عام للفن، ومركز ثقافي وتعليمي في الولايات المتحدة. تأسس معهد الفن عام 1866 باسم أكاديمية شيكاغو للتصميم، تضم المجموعات المعروضة في المعهد اللوحات والمنحوتات، والمطبوعات والرسومات والفنون الزخرفية الأوروبية والأمريكية والفن الشرقي والكلاسيكي وفن التصوير الضوئي والمنسوجات وفنون وحرف أفريقيا وأمريكا اللاتينية وجزر المحيط الهادئ وأمريكا ما قبل كولمبوس.", "arxiv":"أرخايف ‏ بحيث تُنطق في النهاية «أركايف» أو «أرخايف». أرخايف هو أرشيف لمسودات أوراق علمية إلكترونية مكتوبة في مجالات الفيزياء، الرياضيات، الفلك، علم الحاسوب، والإحصاء التي يمكن الوصول إليها عبر الإنترنت. هذه الأرشيفات موجودة على موقع arXiv.org.", "wikipedia":"ويكيبيديا والكلمة مشتقة من مقطعين: ويكي wiki وتعني بلغة هاواي \"بالغ السرعة\"، والثاني بيديا pedia ومشتق من كلمة موسوعة encyclopedia، ويكيبيديا هي موسوعة متعددة اللغات، مبنية على الويب، ذات محتوى حر، تشغلها مؤسسة ويكيميديا، التي هي منظمة غير ربحية. ويكيبيديا هي موسوعة يمكن لأي مستخدم تعديل وتحرير وإنشاء مقالات جديدة فيها.", - "bing":"مايكروسوفت بينغ ‏ واختصارًا وهو الاسم السابق: بينغ ‏ ؛ هو محرك بحث (أعلن عنه تحت اسم ، طور تحت اسم بالعربية: كومو وإنجليزية: kumo, هو محرك بحث في ويب لشركة مايكروسوفت، صمم لمنافسة رواد هذا المجال غووغل وياهو!، تم الإفصاح عنه من قبل ستيف بالمر الرئيس التنفيذي السابق في مايكروسوفت في 28 مايو 2009 في مؤتمر All Things D في سان دييغو، بينغ هو بديل لايف سيرش Live Search، بدأ عمله بالكامل في 3 يونيو 2009.", + "bing":"مايكروسوفت بينغ ‏ واختصارًا وهو الاسم السابق: بينغ ‏ ؛ هو محرك بحث (أعلن عنه تحت اسم ، طور تحت اسم بالعربية: كومو وإنجليزية: kumo, هو محرك بحث في ويب لشركة مايكروسوفت، صمم لمنافسة رواد هذا المجال جوجل وياهو!، تم الإفصاح عنه من قبل ستيف بالمر الرئيس التنفيذي السابق في مايكروسوفت في 28 مايو 2009 في مؤتمر All Things D في سان دييغو، بينغ هو بديل لايف سيرش Live Search، بدأ عمله بالكامل في 3 يونيو 2009.", "bing images":[ "bing:ar", "ref" @@ -295,6 +292,10 @@ "أخبار من مصادر عالمية وإقليمية ومحلية يتم تنظيمها لتقديم تغطية إخبارية شاملة تتضمن أخبار الرياضة والفن والأعمال والسياسية والطقس وأكثر من ذلك.", "https://www.bing.com/news" ], + "bing videos":[ + "يُسهّل البحث الذكي من Bing من العثور بسرعة على ما تبحث عنه كما يمنحك مكافآت.", + "https://www.bing.com/videos" + ], "bitbucket":[ "خدمة استضافة على شبكة الإنترنت لمشاريع تطوير البرمجيات", "wikidata" @@ -383,7 +384,11 @@ "wikidata" ], "naver":"نافير هي منصة كورية جنوبية على الإنترنت تديرها شركة نافير. ظهرت لأول مرة في عام 1999 كأول بوابة ويب في كوريا الجنوبية لتطوير واستخدام محرك البحث الخاص بها. كما كانت أول مشغل في العالم يقدم ميزة البحث الشامل، والتي تجمع نتائج البحث من مختلف الفئات وتقدمها في صفحة واحدة. أضافت نافير منذ ذلك الحين العديد من الخدمات الجديدة التي تتراوح من الميزات الأساسية مثل البريد الإلكتروني والأخبار إلى أول منصة للأسئلة والأجوبة عبر الإنترنت في العالم يعرف ب«نولج ان».", - "rumble":"رامبل ‏ هو موقع صناعة محتويات فيديو كندي. تم تأسيسه في سنة 2013 من قبل كريس بافلوفسكي. بدأ كموقع لنشر فيديوهات عن الحيوانات الأليفة والأطفال الرضع وثم زادت شهرته ليكون منصة بديلة للمحافظين واليمينيين عن يوتيوب. في يوم 11 يناير 2021 رفع الموقع دعوى ضد غوغل بتهمة التلاعب بنتائج البحث عن الموقع واخفائه وطالب بتعويض ملياري دولار على ذلك. يدير الموقع حالياً دان بونجينو." + "rumble":"رامبل ‏ هو موقع صناعة محتويات فيديو كندي. تم تأسيسه في سنة 2013 من قبل كريس بافلوفسكي. بدأ كموقع لنشر فيديوهات عن الحيوانات الأليفة والأطفال الرضع وثم زادت شهرته ليكون منصة بديلة للمحافظين واليمينيين عن يوتيوب. في يوم 11 يناير 2021 رفع الموقع دعوى ضد غوغل بتهمة التلاعب بنتائج البحث عن الموقع واخفائه وطالب بتعويض ملياري دولار على ذلك. يدير الموقع حالياً دان بونجينو.", + "wttr.in":[ + "Des Moines, Iowa, United States تقرير حالة ألطقس", + "https://wttr.in" + ] }, "bg":{ "apple app store":"App Store е Интернет магазин – платформа за цифрова дистрибуция на мобилни приложения на базата на iOS, разработена и поддържана от компанията Apple.", @@ -399,8 +404,33 @@ "Новини от международни, национални и местни източници на новини, организирани така, че да ви предоставят задълбочено информационно покритие от света на спорта, забавленията, бизнеса, политиката, времето и още много други.", "https://www.bing.com/news" ], + "bing videos":[ + "Интелигентното търсене на Bing ви помага бързо да намирате това, което търсите, и ви предоставя награди.", + "https://www.bing.com/videos" + ], + "currency":"DuckDuckGo е интернет търсачка, която акцентира върху поверителността на потребителите.", "deviantart":"deviantArt е онлайн общност, в която се качват различни видове „произведения на изкуството“, направени от потребителите. Отворен е на 7 август, 2000 от Скот Джаркоф, Матю Стивънс, Анджело Сотира и други. Дружеството на deviantArt се намира в Холивуд, Лос Анджелис, Съединени щати.", + "ddg definitions":[ + "currency:bg", + "ref" + ], "wikidata":"Уикиданни е уики проект – база знания създадена от Фондация Уикимедия. Съдържанието е свободно и подобно на повечето проекти на фондацията е достъпно под лицензи „Криейтив Комънс – Признание – Споделяне на споделеното“ (CC-BY-SA) и обществено достояние (CC0).", + "duckduckgo":[ + "currency:bg", + "ref" + ], + "duckduckgo images":[ + "currency:bg", + "ref" + ], + "duckduckgo weather":[ + "currency:bg", + "ref" + ], + "flickr":[ + "американски уебсайт", + "wikidata" + ], "gentoo":[ "gentoo:ru", "ref" @@ -446,12 +476,16 @@ "wikiversity":"Уикиверситет е проект на фондация Уикимедия, който има за цел да направи достъпни учебни материали и упражнения, както и да съхранява и развива оригинални изследвания. Бета фазата на проекта Уикиверситет започва официално на 15 август 2006 г. с англоезичния Уикиверситет. За момента има единадесет Уикиверситета на различни езици – английски, френски, немски, италиански, испански, руски, чешки, гръцки, финландски, японски и португалски, а нови езици се развиват в Уикиверситет Бета – многоезичен портал, където се намира и българският проект за Уикиверситет.", "wikivoyage":"„Уикипътешественик“ е отворен многоезичен проект, посветен на туризма и създаването на свободно редактируем пътеводител. „Уикипътешественик“ е наречен „Уикипедия на пътеводителите“.", "wolframalpha":"WolframAlpha е отговаряща машина, разработена от компанията Wolfram Research, чийто основател и главен изпълнителен директор е Стивън Волфрам.", - "rumble":"Rumble е канадска алт-тех видео платформа. Сайтът е основан от Крис Павловски, технологичен предприемач." + "rumble":"Rumble е канадска алт-тех видео платформа. Сайтът е основан от Крис Павловски, технологичен предприемач.", + "wttr.in":[ + "Прогноза за времето в: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "bn":{ "apple app store":"অ্যাপ স্টোর একটি অ্যাপ স্টোর প্ল্যাটফর্ম যা অ্যাপল ইনক দ্বারা মোবাইল অ্যাপ্লিকেশন এর আইওএস এবং [[আইপ্যাডএস)] এর জন্য তৈরি এবং রক্ষণাবেক্ষণ করা হয় ]] অপারেটিং সিস্টেম। স্টোর ব্যবহারকারীদের অ্যাপলের আইওএস সফটওয়্যার ডেভলপমেন্ট কিট এর সাহায্যে উন্নত অ্যাপ্লিকেশনগুলি ব্রাউজ এবং ডাউনলোড করতে দেয়। অ্যাপ্লিকেশনগুলি আইফোন স্মার্টফোন, আইপড টাচ হ্যান্ডহেল্ড কম্পিউটার, বা আইপ্যাড ট্যাবলেট কম্পিউটারে ডাউনলোড করা যেতে পারে এবং কিছুগুলি অ্যাপল ওয়াচ স্মার্টওয়াচ বা চতুর্থ- প্রজন্ম বা নতুন অ্যাপল টিভি এর আইফোন অ্যাপ্লিকেশনগুলির এক্সটেনশন হিসাবে।", "arxiv":"arXiv হল সংশোধনের পর প্রকাশনার জন্য অনুমোদিত ইলেকট্রনিক প্রাক মুদ্রণের একটি সংগ্রহস্থল, যেটি গণিত, পদার্থবিজ্ঞান, জ্যোতির্বিজ্ঞান, কম্পিউটার বিজ্ঞান, পরিমাণগত জীববিদ্যা, পরিসংখ্যান এবং পরিমাণগত অর্থব্যবস্থা বিভাগের বৈজ্ঞানিক কাগজপত্র নিয়ে গঠিত। এগুলিতে অনলাইনের মাধ্যমে প্রবেশ করা যায়।", - "wikipedia":"উইকিপিডিয়া সম্মিলিতভাবে সম্পাদিত, বহুভাষিক, মুক্ত প্রবেশাধিকার, মুক্ত কন্টেন্ট সংযুক্ত একটি ইন্টারনেট বিশ্বকোষ, যা অলাভজনক উইকিমিডিয়া ফাউন্ডেশন কর্তৃক সমর্থিত, আয়োজিত এবং পরিচালিত। স্বেচ্ছাসেবীরা বিশ্বব্যাপী সম্মিলিতভাবে ৩২৯টি ভাষার উইকিপিডিয়ায় প্রায় ৪০০ লক্ষ নিবন্ধ রচনা করেছেন, যার মধ্যে শুধুমাত্র ইংরেজি উইকিপিডিয়াতেই রয়েছে ৫৮ লক্ষের অধিক নিবন্ধ। যে কেউ উইকিপিডিয়া ওয়েবসাইটে প্রবেশের করে যে কোনো নিবন্ধের সম্পাদনা করতে পারেন, যা সম্মিলিতভাবে ইন্টারনেটের সর্ববৃহৎ এবং সর্বাধিক জনপ্রিয় সাধারণ তথ্যসূত্রের ঘাটতি পূরণ করে থাকে। ফেব্রুয়ারি ২০১৪ সালে, দ্য নিউ ইয়র্ক টাইমস জানায় উইকিপিডিয়া সমস্ত ওয়েবসাইটের মধ্যে বিশ্বব্যাপী পঞ্চম স্থানে অবস্থান করছে, \"মাসিক প্রায় ১৮ বিলিয়ন পৃষ্ঠা প্রদর্শন এবং প্রায় ৫০০ মিলিয়ন স্বতন্ত্র পরিদর্শক রয়েছে। উইকিপিডিয়ায় ইয়াহু, ফেসবুক, মাইক্রোসফট এবং গুগলের পথানুসরণ করে, সর্বাধিক ১.২ বিলিয়ন স্বতন্ত্র পরিদর্শক রয়েছে।\"", + "wikipedia":"উইকিপিডিয়া সম্মিলিতভাবে সম্পাদিত, বহুভাষিক, মুক্ত প্রবেশাধিকার, মুক্ত কন্টেন্ট সংযুক্ত স্বেচ্ছাসেবী সম্প্রদায় চালিত একটি ইন্টারনেট বিশ্বকোষ। স্বেচ্ছাসেবীরা বিশ্বব্যাপী সম্মিলিতভাবে ৩২৯টি ভাষার উইকিপিডিয়ায় প্রায় ৪০০ লক্ষ নিবন্ধ রচনা করেছেন, যার মধ্যে শুধুমাত্র ইংরেজি উইকিপিডিয়াতেই রয়েছে ৬৬ লক্ষের অধিক নিবন্ধ। যে কেউ উইকিপিডিয়া ওয়েবসাইটে প্রবেশের করে যে কোনো নিবন্ধের সম্পাদনা করতে পারেন, যা সম্মিলিতভাবে ইন্টারনেটের সর্ববৃহৎ এবং সর্বাধিক জনপ্রিয় সাধারণ তথ্যসূত্রের ঘাটতি পূরণ করে থাকে। ফেব্রুয়ারি ২০১৪ সালে, দ্য নিউ ইয়র্ক টাইমস জানায় উইকিপিডিয়া সমস্ত ওয়েবসাইটের মধ্যে বিশ্বব্যাপী পঞ্চম স্থানে অবস্থান করছে, \"মাসিক প্রায় ১৮ বিলিয়ন পৃষ্ঠা প্রদর্শন এবং প্রায় ৫০০ মিলিয়ন স্বতন্ত্র পরিদর্শক রয়েছে। উইকিপিডিয়ায় ইয়াহু, ফেসবুক, মাইক্রোসফট এবং গুগলের পথানুসরণ করে, সর্বাধিক ১.২ বিলিয়ন স্বতন্ত্র পরিদর্শক রয়েছে।\"", "bing":"বিং মাইক্রোসফট কর্তৃক নিয়ন্ত্রিত একটি ওয়েব অনুসন্ধান ইঞ্জিন । বিং বিভিন্ন ধরনের অনুসন্ধান সেবা প্রদান করে যেমন - ওয়েব, ভিডিও, চিত্র এবং মানচিত্র ইত্যাদি অনুসন্ধান সরবরাহ করে। এটি এএসপি ডট নেট ব্যবহার করে তৈরি করা।", "bing images":[ "bing:bn", @@ -462,6 +496,7 @@ "https://www.bing.com/news" ], "bitbucket":"বিটবাকেট হল একটি গিট - ভিত্তিক সোর্স কোড রিপোজিটরি হোস্টিং পরিষেবা যা আটলাসিয়ানের মালিকানাধীন । গিটহাব এবং গিটল্যাব এর প্রতিদ্বন্দ্বী । Bitbucket সীমাহীন সংখ্যক ব্যক্তিগত সংগ্রহস্থল সহ বাণিজ্যিক পরিকল্পনা এবং বিনামূল্যে অ্যাকাউন্ট উভয়ই অফার করে।", + "crossref":"Crossref আন্তর্জাতিক DOI ফাউন্ডেশনের একটি অফিসিয়াল ডিজিটাল অবজেক্ট আইডেন্টিফায়ার (DOI) নিবন্ধন সংস্থা। এটি পাবলিশার্স ইন্টারন্যাশনাল লিঙ্কিং অ্যাসোসিয়েশন ইনক দ্বারা পরিচালিত হয়। (PILA) এবং অনলাইন একাডেমিক জার্নালে ক্রমাগত ক্রস-প্রকাশক উদ্ধৃতি লিঙ্কিং সক্ষম করার জন্য প্রকাশকদের মধ্যে একটি সহযোগিতামূলক প্রচেষ্টা হিসাবে ২০০০ সালের প্রথম দিকে চালু করা হয়েছিল। আগস্ট ২০২২-এ, ক্রসরেফ তালিকা করে যে ৬০ মিলিয়নেরও বেশি জার্নাল স্টাডিজগুলিকে দেখার এবং পুনঃব্যবহারের জন্য বিনামূল্যে করা হয়েছিল, এবং তারা সূচকে তাদের রেফারেন্স ডেটা যোগ করার জন্য অন্যান্য প্রকাশকদের কাছে সর্বজনীনভাবে একটি চ্যালেঞ্জ তৈরি করেছিল।", "currency":"ডাকডাকগো, একটি ইন্টারনেট অনুসন্ধান ইঞ্জিন যেটা অনুসন্ধানকারীর ইন্টারনেট গোপনীয়তা এবং ব্যক্তিবিশেষায়িত ফলাফল বর্জনের উপর গুরুত্বারোপ করে। ডাকডাকগো অন্য সার্চ ইঞ্জিনগুলো থেকে নিজেকে স্বকীয় রাখে ব্যবহারকারীদের তথ্য সংগ্রহ না করে এবং একটি নির্দিষ্ট সার্চ টার্মের জন্যে ঢালাওভাবে সমস্ত ব্যবহারকারীর জন্যে একই ফলাফল সরবরাহ করে। এছাড়াও ৪০০ ক্রাউডসোর্স সাইট(যেমন- উইকিপিডিয়া) এবং অন্যান্য সার্চ ইঞ্জিন(যেমন- বিং, ইয়াহু!, ইয়ানডেক্স) থেকে ফলাফল সংগ্রহ করে সবচেয়ে বেশি না বরং সবচেয়ে যৌক্তিক ফলাফল প্রদানের জন্যেও এর খ্যাতি রয়েছে।", "ddg definitions":[ "currency:bn", @@ -485,7 +520,7 @@ "gentoo:ru", "ref" ], - "github":"গিটহাব, ইংক. সফটওয়্যার সংস্করণ নিয়ন্ত্রণ প্রোগ্রাম গিট ব্যবহার করে সংস্করণ নিয়ন্ত্রণের জন্যে একটি ওয়েব-ভিত্তিক হোস্টিং সেবা। এটি বর্তমানে মাইক্রোসফটের অধীনস্থ একটি কোম্পানি, মাইক্রোসফট যেটি ২০১৮ সালে ৭.৫ বিলিয়ন ডলারে ক্রয় করে নেয়। গিটের সমস্ত বিতরণকৃত সংস্করণ নিয়ন্ত্রণ ও সোর্স কোড ব্যবস্থাপনা কৃত্য এতে রয়েছে, সাথে রয়েছে এর নিজস্ব কিছু সুবিধা, যেমন- বাগ ট্র্যাকিং, ফিচার রিকুয়েস্ট, প্রত্যাকটা প্রকল্পের নিজস্ব উইকি ইত্যাদি।", + "github":"GitHub, Inc. এটি একটি ইন্টারনেট হোস্টিং পরিষেবা যা গিট ব্যবহার করে সফ্টওয়্যার উন্নয়ন এবং সংস্করণ নিয়ন্ত্রণ করা হয়। এটি গিট প্লাস অ্যাক্সেস কন্ট্রোল,যা বাগ ট্র্যাকিং, সফ্টওয়্যারের বৈশিষ্ট্য অনুরোধ, টাস্ক ম্যানেজমেন্ট, ক্রমাগত ইন্টিগ্রেশন এবং প্রতিটি প্রকল্পের জন্য উইকির বিতরণ করা সংস্করণ নিয়ন্ত্রণ সরবরাহ করে থাকে। ক্যালিফোর্নিয়ায় সদর দফতরে, এটি ২০১৮ সাল থেকে মাইক্রোসফ্টের একটি সহায়ক প্রতিষ্ঠান।", "google":"গুগল অনুসন্ধান ওয়েবের বৃহত্তম অনুসন্ধান ইঞ্জিন। গুগলের লক্ষ্য \"বিশ্বের যাবতীয় তথ্য সুবিন্যস্ত করা এবং সেগুলো সর্বসাধারণের জন্য উপযোগী করে প্রকাশ করা।\" এটি সর্ববৃহৎ অনুসন্ধান ইঞ্জিন। গুগল প্রতিদিন তার বিভিন্ন সেবার মাধ্যমে প্রায় ৫.৪ বিলিয়ন বা ৫০০ কোটিরও বেশি অনুসন্ধানের অনুরোধ গ্রহণ করে।", "google images":[ "Google ছবি সার্চ৷ ওয়েবে সর্বাধিক বিস্তৃত ছবি সার্চ৷", @@ -504,7 +539,7 @@ "npm":"এনপিএম জাভাস্ক্রিপ্ট প্রোগ্রামিং ভাষার জন্য একটি প্যাকেজ ম্যানেজার । এটি জাভাস্ক্রিপ্ট রানটাইম এনভায়রনমেন্ট নোড.জেএস এর ডিফল্ট প্যাকেজ ম্যানেজার, এটি কমান্ড লাইন ক্লায়েন্ট গঠিত, যাকে এনপিএম বলা হয়। এটি সাধারনত একটি পাবলিক অনলাইন ডাটাবেস এবং অর্থ প্রদান সাপেক্ষে এটি প্রাইভেট প্যাকেজের সুযোগ দিয়ে থাকে, যাকে এনপিএম রেজিস্ট্রি বলা হয়। রেজিস্ট্রি ক্লায়েন্টের মাধ্যমে অ্যাক্সেস করা যায় এবং উপলভ্য প্যাকেজগুলি এনএমপি ওয়েবসাইটের মাধ্যমে ব্রাউজ এবং অনুসন্ধান করা যায়। প্যাকেজ ম্যানেজার এবং রেজিস্ট্রি এনপিএম, ইনক দ্বারা পরিচালিত হয়।", "openstreetmap":"ওপেনস্ট্রিটম্যাপ (ওএসএম) হল মুক্ত লাইসেন্সে বিশ্বের সম্পাদনাযোগ্য মানচিত্র তৈরির একটি প্রকল্প। যুক্তরাজ্যে স্টিভ কস্ট ২০০৪ সালে প্রকল্পটি শুরু করেন। ইন্টারনেটের মাধ্যমে অবদানকারীদের অবদানে ওপেনস্ট্রিটম্যাপ সমৃদ্ধ হচ্ছে। মানচিত্রটির উপাত্ত ওপেন ডেটাবেস লাইসেন্সে প্রকাশিত। প্রকল্পটি ইংল্যান্ড ও ওয়েলস-এ নিবন্ধিত একটি অলাভজনক সংস্থা ওপেনস্ট্রীটম্যাপ ফাউন্ডেশন কর্তৃক পরিচালিত হয়।", "piratebay":"দি পাইরেট বে অনলাইন বিনোদন এবং সফটওয়্যারের টরেন্ট সাইট । ২০০৩ সালে সুইডিশ থিংক ট্যাঙ্ক পাইরাটবায়রান প্রতিষ্ঠিত, পাইরেট বে দর্শকদের বিনোদন এবং সফটওয়্যারের ম্যাগনেট লিঙ্কগুলি এবং টরেন্ট ফাইলগুলি অনুসন্ধান করতে, ডাউনলোড করতে এবং লিঙ্ক দ্বারা অবদান রাখতে সহায়তা করে, যা বিটটোরেন্ট বা ইউটরেন্ট প্রোটোকলের ব্যবহারকারীদের মধ্যে পিয়ার-টু-পিয়ার ফাইল শেয়ার করার সুযোগ করে দিয়েছে।", - "reddit":"রেডিট একটি সামাজিক নেটওয়ার্ক সংহতি, ওয়েব বিষয়বস্তু রেটিং, এবং আলোচনার ওয়েবসাইট। নিবন্ধিত সদস্যরা বিভিন্ন কন্টেন্ট যেমনঃ লিঙ্ক, লিখা, এবং ছবি জমা দিতে পারে, যেগুলো পরে অন্য সদস্যদের ভোটে উপরে উঠে বা নিচে নামে। রেডিট এক বৈচিত্রময় সংকলন যার হাজারো ভাগ রয়েছে, যেগুলোকে বলা হয় “সাবরেডিট”। বেশি আপভোট পাওয়া সাবমিশনগুলো তাদের সাবরেডিটের উপরের দিকে জায়গা করে নেয় এবং যদি যথেষ্ট পরিমাণ ভোট পায় তবে শেষ পর্যন্ত সাইটের প্রথম পাতায় জায়গা করে নেয়।", + "reddit":"রেডিট একটি আমেরিকান সামাজিক সংবাদ সমষ্টি, বিষয়বস্তুর গুণগত মান নির্ণয় এবং আলোচনার ওয়েবসাইট। নিবন্ধিত ব্যবহারকারীরা ওয়েবসাইটে বিষয়বস্তু জমা দেয় যেমন সংযোগ, লিখিত পোস্ট, ছবি এবং ভিডিও, যার উপরে অন্য সদস্যরা ভোট প্রদান করে। পোস্টগুলি বিষয় অনুসারে ব্যবহারকারী দ্বারা তৈরি করা বোর্ডগুলিতে আয়োজিত থাকে যাদেরকে \"সম্প্রদায়\" বা \"সাবরেডিটস\" বলা হয়। যেসব পোস্টে অধিক আপভোট পড়ে তারা সাবরেডিটের শীর্ষে প্রদর্শিত হয় এবং যদি তারা পর্যাপ্ত আপভোট পায় তাহলে শেষ পর্যন্ত সাইটের প্রথম পৃষ্ঠায় চলে আসে। রেডিট প্রশাসকরা সম্প্রদায়গুলিকে নিয়ন্ত্রণ করে। রক্ষণাবেক্ষণের কাজ সম্প্রদায়-নির্দিষ্ট মডারেটরদের দ্বারাও পরিচালিত হয়, যারা রেডিট কর্মচারী নন।", "soundcloud":"সাউন্ডক্লাউড হল জার্মানির রাজধানী বার্লিন-এ স্থাপিত একটি অনলাইন অডিও বণ্টন ভিত্তিক প্রচারের মাধ্যম, যেটি ব্যবহারকারীকে তার নিজেস্ব তৈরীকৃত শব্দ বা সঙ্গীত আপলোড, রেকর্ড, এর উন্নীতকরণ এবং সবার উদ্দেশ্যে তা প্রচারের অধিকার প্রদান করে।", "semantic scholar":"সিম্যান্টিক স্কলার হলো কৃত্রিম বুদ্ধিমত্তা-চালিত গবেষণার সরঞ্জাম। \"অ্যালেন ইনস্টিটিউট ফর এআই\" সাহিত্যের বৈজ্ঞানিক গবেষণার জন্য এটি তৈরি করেছে। ২০১৫ সালের নভেম্বরে এটি সর্বজনীনভাবে প্রকাশিত হয়। এটি পাণ্ডিত্যপূর্ণ কাগজপত্রের সারাংশ প্রদানের জন্য স্বাভাবিক ভাষা প্রক্রিয়াকরণে অগ্রগতি ব্যবহার করে। সিম্যান্টিক স্কলার টিম সক্রিয়ভাবে স্বাভাবিক ভাষা প্রক্রিয়াজাতকরণ, যন্ত্রীয় শিখন, মানব-কম্পিউটার মিথস্ক্রিয়া এবং তথ্য পুনরুদ্ধারে কৃত্রিম-বুদ্ধিমত্তার ব্যবহার নিয়ে গবেষণা করছে।", "startpage":"স্টার্টপেজ হল গোপনীয়তা নির্ভর সার্চ ইঞ্জিন। এটি আগে মেটাসার্চ এবং আইএক্সকুইক নামে ভিন্ন দুটি সার্চ ইঞ্জিন ছিল। ২০১৬ সালে দুটি কোম্পানি একীভূত হয়। পূর্বে এটি আইএক্স কুইক অনুসন্ধান ইঞ্জিন নামে পরিচিত ছিলো।", @@ -517,7 +552,11 @@ "wikiversity":"উইকিবিশ্ববিদ্যালয় হল উইকিমিডিয়া ফাউন্ডেশনের একটি প্রকল্প যা শিক্ষার সম্প্রদায়, তাদের শিক্ষার উপকরণ এবং ফলস্বরূপ ক্রিয়াকলাপকে সমর্থন করে। এটি উইকিপিডিয়া থেকে আলাদা যে এটি একটি এনসাইক্লোপিডিয়ার পরিবর্তে শিক্ষার উত্সাহের জন্য টিউটোরিয়াল এবং অন্যান্য উপকরণ সরবরাহ করে; উইকিপিডিয়ার মতো, এটি অনেক ভাষায় পাওয়া যায়।", "wikivoyage":"উইকিভ্রমণ হল স্বেচ্ছাসেবক লেখকদের দ্বারা লিখিত ভ্রমণের গন্তব্য ও বিষয়গুলোর জন্য একটি বিনামূল্যের ওয়েবভিত্তিক ভ্রমণ নির্দেশিকা। এটি উইকিপিডিয়ার একটি সহপ্রকল্প এবং অলাভজনক উইকিমিডিয়া ফাউন্ডেশন দ্বারা সমর্থিত ও হোস্ট করা হয়। উইকিভ্রমণকে \"ভ্রমণ নির্দেশনার উইকিপিডিয়া\" বলা হয়েছে।", "1337x":"১৩৩৭এক্স হল একটি ওয়েবসাইট যা বিটটরেন্ট প্রোটোকলের মাধ্যমে পিয়ার-টু-পিয়ার ফাইল আদান প্রদানের জন্য ব্যবহৃত টরেন্ট ফাইল এবং ম্যাগনেট লিঙ্কগুলির একটি ডিরেক্টরি প্রদান করে। টরেন্টফ্রিক নিউজ ব্লগ অনুসারে, ১৩৩৭এক্স ২০২১ সালের হিসাবে তৃতীয় সর্বাধিক জনপ্রিয় টরেন্ট ওয়েবসাইট।", - "naver":"নেইভার একটি দক্ষিণ কোরীয় ইন্টারনেট ভিত্তিমঞ্চ। কোরিয়ার নেইভার কর্পোরেশন এটির পরিচালক। ১৯৯৯ সালে দক্ষিণ কোরিয়ার স্ব-উদ্ভাবিত অনুসন্ধান ইঞ্জিন ব্যবহারকারী প্রথম আন্তর্জাল প্রবেশদ্বার হিসেবে এটি যাত্রা শুরু করে। এটি ছিল বিশ্বের প্রথম পূর্ণাঙ্গ অনুসন্ধান সুবিধা প্রদানকারী ওয়েবসাইট, যেখানে বিভিন্ন শ্রেণীর অনুসন্ধান ফলাফল সংকলিত একটিমাত্র ফলাফল পাতায় সেগুলিকে প্রকাশ করা হত। এরপর নেইভার আরও বেশ কিছু নতুন সেবা যোগ করেছে, যাদের মধ্যে বৈদ্যুতিন ডাক (ই-মেইল) ও সংবাদের মতো প্রাথমিক সুবিধাগুলি থেকে শুরু করে বিশ্বের প্রথম ইন্টারনেটভিত্তিক প্রশ্নোত্তর ভিত্তিমঞ্চ \"নলেজ ইন\" অন্তর্ভুক্ত।" + "naver":"নেইভার একটি দক্ষিণ কোরীয় ইন্টারনেট ভিত্তিমঞ্চ। কোরিয়ার নেইভার কর্পোরেশন এটির পরিচালক। ১৯৯৯ সালে দক্ষিণ কোরিয়ার স্ব-উদ্ভাবিত অনুসন্ধান ইঞ্জিন ব্যবহারকারী প্রথম আন্তর্জাল প্রবেশদ্বার হিসেবে এটি যাত্রা শুরু করে। এটি ছিল বিশ্বের প্রথম পূর্ণাঙ্গ অনুসন্ধান সুবিধা প্রদানকারী ওয়েবসাইট, যেখানে বিভিন্ন শ্রেণীর অনুসন্ধান ফলাফল সংকলিত একটিমাত্র ফলাফল পাতায় সেগুলিকে প্রকাশ করা হত। এরপর নেইভার আরও বেশ কিছু নতুন সেবা যোগ করেছে, যাদের মধ্যে বৈদ্যুতিন ডাক (ই-মেইল) ও সংবাদের মতো প্রাথমিক সুবিধাগুলি থেকে শুরু করে বিশ্বের প্রথম ইন্টারনেটভিত্তিক প্রশ্নোত্তর ভিত্তিমঞ্চ \"নলেজ ইন\" অন্তর্ভুক্ত।", + "wttr.in":[ + "আবহাওয়া সঙ্ক্রান্ত তথ্য Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "bo":{ "wikipedia":"ཆམ་ཚང་པདྨ་ལྷུན་གྲུབ་ཀྱི་ལོ་རྒྱུས་སྙིང་བསྡུས། ཆམ་ཚང་པདྨ་ལྷུན་གྲུབ", @@ -543,6 +582,10 @@ "Les notícies de fonts mundials, nacionals i locals, organitzades per donar-vos una cobertura informativa a fons sobre esports, entreteniment, economia, política, el temps i molt més.", "https://www.bing.com/news" ], + "bing videos":[ + "La cerca intel·ligent del Bing t'ajuda a trobar el que cerques més ràpidament i et recompensa.", + "https://www.bing.com/videos" + ], "crossref":"Crossref és una agència que publica un registre d'objectes digitals (DOI) de la fundació Internacional DOI Foundation. L'agència Crossref està dirigida per l'associació d'editorials Publishers International Linking Association (PILA). És una iniciativa cooperativa sense ànim de llucre, llançada a principi de l'any 2000. Ha de permettre als editors de crear un enllaç permanent de les citacions entre les revistes científiques en línia.", "currency":"DuckDuckGo (DDG) és un motor de cerca que posa l'èmfasi en la protecció de la privacitat. Se'l sol presentar com a l'alternativa a Google Search. L'empresa té la seu a Paoli, Pennsilvània (EUA), i té 20 treballadors. Els servidors eren allotjats inicialment al soterrani de Gabriel Weinberg, el fundador, i ara estan allotjats per Amazon.", "deviantart":"DeviantArt és una comunitat en línia. El lloc web va ser llançat el 7 d'agost de 2000 per Angelo Sotira, Scott Jarkoff, Matthew Stephens i altres. S'organitza en: art digital, art tradicional, fotografia, objectes manufacturats, cinema i animació, històries breus, Flash, disseny i icones, customització, còmics i dibuixos animats, manga i anime, fan art, projectes de la comunitat i esbossos.", @@ -596,6 +639,19 @@ "openstreetmap":"OpenStreetMap és un projecte col·laboratiu per crear mapes de contingut lliure usant dades obtingudes mitjançant dispositius GPS mòbils, ortofotografies i altres fonts de dades. Les dades dels mapes (coordenades) i les imatges obtingudes amb elles es lliuren sota la llicència Open Database License.", "piratebay":"The Pirate Bay (TPB) és un directori de torrents suec que data del novembre de 2003. The Pirate Bay serveix com a motor de cerca i, alhora, de rastrejador amb el qual es pot cercar qualsevol tipus de contingut multimèdia.", "pubmed":"MEDLINE és una base de dades bibliogràfica de ciències de la vida i d'informació biomèdica. Inclou la informació bibliogràfica d'articles de revistes acadèmiques que cobreixen medicina, infermeria, farmàcia, odontologia, veterinària i assistència sanitària, salut pública. MEDLINE també cobreix gran part de literatura en biologia i bioquímica, així com camps com ara l'evolució molecular. El percentatge de cobertura de cada àrea correspon en un 80% a Medicina, un 7% a Infermeria, un 8% a Odontologia i a altres matèries un 5%.", + "qwant":"Qwant és un motor de cerca francès, llançat el febrer de 2013 i operat des de París. És un dels pocs cercadors de la UE. Afirma que no utilitza el seguiment dels usuaris ni personalitza els resultats de la cerca per evitar atrapar els usuaris en una bombolla filtre.", + "qwant news":[ + "qwant:ca", + "ref" + ], + "qwant images":[ + "qwant:ca", + "ref" + ], + "qwant videos":[ + "qwant:ca", + "ref" + ], "reddit":"Reddit és un lloc web de marcadors socials i agregador de notícies on els usuaris poden compartir enllaços a continguts web. El contingut s'organitza en comunitats anomenades «subreddits» que són creats i moderats pels mateixos usuaris. Aquestes comunitats cobreixen una gran varietat de temàtiques com ara notícies, ciència, pel·lícules, videojocs, música, gastronomia... Les contribucions a cada «subreddit» poden ser votades positivament o negativament pels usuaris de la comunitat per tal que aquestes apareguin més o menys destacades.", "soundcloud":"SoundCloud és una plataforma de distribució d'àudio en línia on els usuaris poden col·laborar, promocionar i distribuir els seus projectes musicals.", "startpage":"Ixquick és un metacercador web fundat per David Bodnick el 1998. Els seus servidors es troben a Nova York i als Països Baixos. Des de l'any 2000 forma part de l'empresa Surfboard Holding BV.", @@ -612,11 +668,13 @@ "wikiversity":"Wikiversity és un projecte col·laboratiu per produir material per aprendre multilingüe lliure de la fundació Wikimedia i sobre programari Mediawiki.", "wikivoyage":"Viquiviatges és un projecte per crear una guia turística lliure, basada en la tecnologia wiki. Es desenvolupa de manera col·laborativa per viquiviatgers de tot el món. Viquiviatges es construeix amb l'esperit de compartir el coneixement que fa que viatjar sigui tan agradable.", "wolframalpha":"WolframAlpha ( WUULf-rəm-) és un motor de respostes desenvolupat per Wolfram Research. Respon a les consultes de fets calculant respostes a partir de dades d'origen extern.", + "mojeek":"Mojeek és un motor de cerca amb seu al Regne Unit basat en rastrejadors que proporciona resultats de cerca independents utilitzant el seu propi índex de pàgines web, creat mitjançant l'aranya web, en lloc d'utilitzar resultats d'altres motors de cerca.", "naver":[ "portal web sud-coreà", "wikidata" ], "peertube":"PeerTube és una plataforma de vídeo federada i descentralitzada de codi obert, alimentada per ActivityPub i WebTorrent, que utilitza tecnologia peer-to-peer per reduir la càrrega en servidors individuals quan es visualitzen vídeos.", + "brave":"Brave Search és un motor de cerca desenvolupat per Brave Software, Inc., que està establert com a motor de cerca predeterminat per als usuaris del navegador web Brave en determinats països.", "petalsearch":[ "cercador web", "wikidata" @@ -624,10 +682,6 @@ "petalsearch images":[ "petalsearch:ca", "ref" - ], - "petalsearch news":[ - "petalsearch:ca", - "ref" ] }, "cs":{ @@ -648,6 +702,10 @@ "Zpravodajství ze světa a mezinárodní a místní zdroje zpráv uspořádané tak, aby vám poskytly podrobné informace o novinkách o sportu, zábavě, podnikání, politice, počasí a dalších tématech.", "https://www.bing.com/news" ], + "bing videos":[ + "S inteligentním vyhledáváním od Bingu najdete, co hledáte, snadno a rychle a ještě získáte odměnu.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket je webová služba podporující vývoj softwaru při používání verzovacích nástrojů Git a Mercurial. Bitbucket nabízí bezplatný hosting pro open-source projekty a menší týmy do 5 lidí. Dále nabízí komerční programy, které po zaplacení měsíčního poplatku umožňují ukládat soukromé repositáře.", "currency":"DuckDuckGo (DDG) je webový vyhledávač, který klade důraz na soukromí uživatelů, úmyslně nevytváří efekt tzv. filtrovací bubliny a nijak neprofituje prodejem osobních informací uživatelů.", "deviantart":"DeviantArt je online umělecká komunita. Poprvé byla spuštěna 7. srpna 2000 díky práci Scotta Jarkoffa, Matthewa Stephense a Angela Sotiry, který je nyní CEO.", @@ -693,7 +751,7 @@ "alternativní frontend pro YouTube", "wikidata" ], - "library genesis":"Library Genesis je internetová knihovna poskytující knihy, akademické články, komixy, audioknihy, časopisy a další obsah, který by byl jinak přístupný jen placeně, či vůbec.", + "library genesis":"Library Genesis je internetová knihovna poskytující knihy, akademické články, komiksy, audioknihy, časopisy a další obsah, který by byl jinak přístupný jen placeně, nebo vůbec ne.", "library of congress":"Knihovna Kongresu je národní knihovna Spojených států amerických a vědeckovýzkumné středisko Kongresu spojených států. Sídlí ve Washingtonu, D. C. S počtem 155 miliónů knihovních jednotek jde o největší knihovnu na světě.", "metacpan":"CPAN je softwarový repozitář obsahující jednak moduly pro programovací jazyk Perl a jednak aplikace napsané v tomto jazyce. První myšlenky k jeho zřízení se objevily už v roce 1993 inspirované repozitářem CTAN typografického systému TeX, ale do provozu byl oficiálně uveden až v roce 1995. Jméno CPAN nese kromě samotného repozitáře i perlový program, který slouží k stažení a instalaci modulů. Kromě toho je možné do repozitáře přistupovat i přes webové rozhraní, kde je například možné i bez instalace číst dokumentaci patřičného modulu generovanou ze standardního formátu POD.", "npm":"npm je správce balíčků pro JavaScript, výchozí správce balíčků pro prostředí Node.js.", @@ -726,7 +784,7 @@ ], "semantic scholar":"Semantic Scholar je vyhledávač akademických publikací na bázi umělé inteligence vyvinutý v Allen Institute for AI, který byl uvolněn k veřejnému použití v listopadu 2015. Používá pokroky ve zpracování přirozeného jazyka k poskytování shrnutí obsahu výukových odborných článků. Tým provozující Semantic Scholar aktivně zkoumá použití umělé inteligence pro zpracování přirozeného jazyka, strojové učení, interakci mezi člověkem a počítačem a získávání informací.", "startpage":"Startpage.com je webový vyhledávač, který jako svoji hlavní přednost prezentuje zachování soukromí uživatelů. Dříve byl známý jako metavyhledávací systém Ixquick, Startpage v té době byla jiná služba. Obě stránky byly sloučeny v roce 2016.", - "youtube":"YouTube [ju:tu:b] je největší internetový server pro sdílení videosouborů. Založili jej v únoru 2005 zaměstnanci PayPalu Chad Hurley, Steve Chen a Jawed Karim. Nynější generální ředitelkou společnosti je Susan Wojcicki. V listopadu 2006 byl zakoupen společností Google za 1,65 miliardy dolarů. Google nyní provozuje tuto stránku jako dceřinou společnost, uživatelské účty mezi těmito společnostmi jsou propojené.", + "youtube":"YouTube [ju:tu:b] je největší internetový server pro sdílení videosouborů. Založili jej v únoru 2005 zaměstnanci PayPalu Chad Hurley, Steve Chen a Jawed Karim. Nynějším generálním ředitelem společnosti je od února 2023 Neal Mohan. V listopadu 2006 byl zakoupen společností Google za 1,65 miliardy dolarů. Google nyní provozuje tuto stránku jako dceřinou společnost, uživatelské účty mezi těmito společnostmi jsou propojené.", "vimeo":"Vimeo je webový projekt určený pro sdílení audiovizuální tvorby. Nacházejí se zde převážně díla autorská a umělecká. Vimeo je primárně určen filmovým nadšencům a experimentátorům, kteří se mohou zaregistrovat a sdílet názory a postřehy s ostatními. Charakter Vimea je zcela odlišný od charakteru YouTube, Vimeo je zaměřeno na uměleckou komunitu, kdežto YouTube směřuje k zájmům masové společnosti.", "wikibooks":"Wikiknihy je sesterský projekt Wikipedie, obsahující volně šiřitelné učebnice všeho druhu, manuály a podobné texty. Projekt byl založen 10. července 2003, původně v angličtině. Česká verze vznikla v druhé polovině roku 2004.", "wikinews":"Wikizprávy jsou projektem otevřeného zpravodajského serveru na bázi wiki, který provozuje nadace Wikimedia. Wikizprávy umožňují komukoli přispívat zprávami z různých oblastí a jejich cílem, uvedeným na hlavní straně, je „vytvořit různorodé prostředí, kde místní novináři mohou nezávisle referovat o rozmanitých aktualitách“.", @@ -739,6 +797,10 @@ "seznam":"Seznam.cz je český internetový portál a vyhledávač. Byl založen roku 1996 Ivem Lukačovičem a posléze se stal jedním z prvních českých internetových katalogů a vyhledávačů v České republice. Má sídlo v Praze na Smíchově, další kanceláře také v Brně, Ostravě, Plzni, Olomouci, Hradci Králové, Českých Budějovicích a Liberci. Vyhledávač a katalog firem postupně od roku 1998 doplňovaly další služby, k začátku roku 2013 firma provozovala více než 25 různých služeb a přidružených značek. Mezi nejznámější patří Email.cz, Firmy.cz, Mapy.cz, Sklik, Sreality.cz, Sauto.cz, Televize Seznam, Novinky.cz, Seznam Zprávy a další. Návštěvnost služeb Seznam.cz v českém internetu byla k roku 2014 přes 6,75 milionu unikátních návštěvníků měsíčně. Mezi nejnavštěvovanější služby patří podle údajů NetMonitoru Seznam.cz Homepage a Seznam.cz Email.[kdy?]", "naver":"Naver je jihokorejská online platforma provozovaná společností Naver Corporation. Debutoval v roce 1999 jako první webový portál v Jižní Koreji. Byl také prvním operátorem na světě, který zavedl funkci komplexního vyhledávání, která sestavuje výsledky vyhledávání z různých kategorií a prezentuje je na jediné stránce. Naver od té doby přidal množství nových služeb, od základních funkcí, jako je e-mail a zprávy, až po světově první online platformu otázek a odpovědí Knowledge iN.", "peertube":"PeerTube je webová platforma pro hostování souborů, která je decentralizovaná a je svobodným softwarem pod licencí AGPL. Je postavena na protokolu Activity Pub a javascriptovém klientu WebTorrent, který umí používat technologii BitTorrent pro P2P stahování datových proudů pomocí webového prohlížeče.", + "wttr.in":[ + "Předpověď počasí pro: Des Moines, Iowa, United States", + "https://wttr.in" + ], "brave":"Brave Search je webový vyhledávač vyvíjený americkou společností Brave Software, Inc. Je přednastaveným vyhledávačem jejího webového prohlížeče Brave. Podobně jako prohlížeč klade velký důraz na soukromí uživatelů, tedy jde proti trendů využívání nástrojů webové analytiky." }, "cy":{ @@ -748,7 +810,7 @@ ], "wikipedia":"Gwyddoniadur rhyngwladol, amlieithog a reolir gan y Wikimedia Foundation yw Wicipedia. Dechreuodd y fersiwn Saesneg ar 15 Ionawr 2001, ac yn ystod y pum mlynedd ddilynol, dechreuwyd fersiynau mewn dros 200 iaith arall. Ar ddiwedd 2001, roedd dros 20,000 erthygl yn y fersiwn Saesneg a 18 o wahanol ieithoedd. Erbyn Mehefin 2010, roedd 3.3 miliwn erthygl.", "bing images":[ - "Gweld delweddau, papur wal, gifs a syniadau sy'n trendio ar Bing bob dydd.", + "Gweld y crynodeb wedi'i deilwra ar gyfer eich diddordebau", "https://www.bing.com/images" ], "bing news":[ @@ -781,7 +843,11 @@ "youtube":"Cwmni cynnal a rhannu fideos ar-lein ydy YouTube a grëwyd gan dri cynweithwyr cwmni bancio digidol PayPal yn Chwefror 2005. Gall defnyddwyr uwchlwytho a lawrlwytho fideos. Yn San Bruno, California, y lleolwyd pencadlys y cwmni a defnyddia Adobe Flash Video a thechnoleg HTML5 i arddangos ystod eang iawn o fideos a gynhyrchwyd gan y defnyddwyr neu wylwyr gan gynnwys clipiau byr, tameidiau o raglenni teledu a cherddoriaeth yn ogystal â ffilmiau a chlipiau amtaur a blogiau fideo.", "wikibooks":"Gwefan wici ac un o brosiectau Sefydliad Wicifryngau yw Wicilyfrau gyda'r nod o greu casgliad rhydd ac am ddim o werslyfrau.", "wikisource":"Prosiect Wicifryngau yw Wicidestun, sy'n ceisio adeiladu ystorfa testunau gwreiddiol sy'n eiddo cyhoeddus neu o dan termau'r Drwydded Dogfennaeth Rhydd GNU (\"GFDL\"). Mae'r safle yn rhan o'r Sefydliad Wicifryngau.", - "wiktionary":"Un o brosiectau Sefydliad Wicifryngau gyda'r nod o greu geiriadur wici rhydd ym mhob iaith yw Wiciadur sy'n eiriadur Cymraeg - Saesneg. Erbyn Medi 2012 roedd gan y Wiciadur dros 17,000 o gofnodion mewn 65 o ieithoedd gwahanol. Gyda'r Wiciadur Cymraeg, darperir diffiniadau o ystyron geiriau ac ymadroddion Cymraeg eu hiaith tra bod cyfieithiadau o eiriau mewn ieithoedd eraill yn cael eu darparu." + "wiktionary":"Un o brosiectau Sefydliad Wicifryngau gyda'r nod o greu geiriadur wici rhydd ym mhob iaith yw Wiciadur sy'n eiriadur Cymraeg - Saesneg. Erbyn Medi 2012 roedd gan y Wiciadur dros 17,000 o gofnodion mewn 65 o ieithoedd gwahanol. Gyda'r Wiciadur Cymraeg, darperir diffiniadau o ystyron geiriau ac ymadroddion Cymraeg eu hiaith tra bod cyfieithiadau o eiriau mewn ieithoedd eraill yn cael eu darparu.", + "wttr.in":[ + "Adroddiad tywydd ar gyfer: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "da":{ "9gag":"9GAG er et websted, hvor brugerne poster underholdende billeder af ofte humoristisk karakter. Hyppigt forekommende indhold er memes, dvs. internet-populære koncepter. På 9GAG kan der forekomme stødende ord, slang eller visuelle udtryk. Friheden på 9gag er at alt i sin forstand er tilladt at dele, indenfor rimelighedens grænser.", @@ -799,6 +865,10 @@ "Nyheder fra hele verden, nationale og lokale nyhedskilder – med henblik på at give dig en tilbundsgående nyhedsdækning inden for sport, underholdning, forretning, politik, vejret og meget andet.", "https://www.bing.com/news" ], + "bing videos":[ + "Med intelligent søgning med Bing kan du nemmere og hurtigere finde, hvad du leder efter, og du modtager også belønninger.", + "https://www.bing.com/videos" + ], "currency":"DuckDuckGo er en onlinesøgemaskine, som lægger vægt på ikke at gemme oplysninger og accepterer brugerens privatsfære.", "deviantart":"DeviantArt er en amerikansk online fællesskab tilgængeligt for hele verden, der fremviser brugerfremstillet kunst. Siden blev lanceret den 7. august 2000 af Scott Jarkoff, Matthew Stephens, Angelo Sotira og andre. DeviantArt, Inc. har hovedkvarter i Hollywood-området af Los Angeles, Californien, USA.", "ddg definitions":[ @@ -840,7 +910,7 @@ "imdb":"Internet Movie Database, The Internet Movie Database eller forkortet IMDb, er verdens største online filmdatabase med information om stort set alt TV og film relateret.", "library of congress":"Library of Congress er USAs faktiske nationalbibliotek og fagbibliotek for USAs lovgivende forsamling, Kongressen. Biblioteket er beliggende i Washington, DC, umiddelbart syd for højesteretsbygningen og ret sydøst for kongresbygningen. Samlingerne omfatter mere end 30 millioner katalogiserede bøger og andet trykt materiale på over 470 sprog, mere end 58 millioner manuskripter og en mængde aviser, film, kort og lydoptagelser. Biblioteket favner vidt: Alt udgivet i USA skal i princippet være der, men man finder også f.eks. nyere norsk kriminallitteratur.", "mixcloud":"Mixcloud er en britisk online musik streamingtjeneste, der giver mulighed for at lytte og distributere radioprogrammer, DJ mixes og podcasts, som er delt af deres registrerede brugere. Mixcloud blev oprindeligt kun finansieret af deres grundlæggere og er fortsat udelukkende ejet af deres eget team.", - "openstreetmap":"OpenStreetMap (OSM) er et kollaborativt projekt, der har til formål at producere et frit redigerbart kort over verden. OSM's oprindelse og vækst har været motiveret af begrænsninger på anvendelsen eller tilgængeligheden af kort-information over store dele af verden tillige med fremkomsten af billige bærbare satellit navigationsapparater. OSM anses for at være et prominent eksempel på Volunteered geographic information", + "openstreetmap":"OpenStreetMap (OSM) (engelsk for åbent vejkort) er et kollaborativt projekt, der har til formål at producere et frit redigerbart kort over verden. OSM's oprindelse og vækst har været motiveret af begrænsninger på anvendelsen eller tilgængeligheden af kort-information over store dele af verden tillige med fremkomsten af billige bærbare satellit navigationsapparater. OSM anses for at være et prominent eksempel på Volunteered geographic information (en)", "piratebay":"The Pirate Bay er verdens største Bittorrent-indeks. Den blev grundlagt af Gottfrid \"anakata\" Svartholm og Fredrik \"TiAMO\" Neij i slutningen af 2003, som en del af den svenske organisation Piratbyrån, men har siden oktober 2004 været en separat organisation. Trackeren fik for alvor vind i sejlene, da den slovenske hjemmeside Suprnova.org lukkede i slutningen af 2004. Suprnova havde været et af de største piratsites i verden, og The Pirate Bay overtog nu millioner af \"hjemløse\" pirater.", "reddit":"Reddit er en social nyheds- og underholdningshjemmeside, hvor registrerede brugere indsender indhold i form af links eller tekst. Brugere stemmer derefter hver indgivelse \"op\" eller \"ned\" for at rangere stillingen og bestemme positionen på webstedets sider. Indholdsgallerier er organiseret af interesseområder ved navn \"subreddits\", blandt andet har Danmark sit eget subreddit.", "soundcloud":"SoundCloud er en lyd- og musikdelingsside, som blev oprettet i 2007. I juli 2013 havde den 40 mio. brugere og 200 mio. lyttere.", @@ -872,6 +942,10 @@ "News aus aller Welt, landesweiten und örtlichen Quellen informieren Sie übersichtlich und ausführlich über Sportereignisse, Unterhaltung, Wirtschaft, Politik, Wetter und vieles mehr.", "https://www.bing.com/news" ], + "bing videos":[ + "Mit der intelligenten Bing-Suche können Sie die gewünschten Informationen schneller und einfacher finden und dabei Punkte sammeln.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket ist ein webbasierter Onlinedienst zur Versionsverwaltung für Software-Entwicklungsprojekte. Der Dienst wurde ursprünglich als reines Mercurial-System entwickelt, jedoch am 3. Oktober 2011 um Unterstützung für Git erweitert. Bitbucket wurde 2007 durch den Dänen Jesper Nøhr entwickelt und 2010 von Atlassian gekauft. Seit dem 1. Juli 2020 wird Mercurial nicht mehr unterstützt.", "ccc-tv":[ "Video Streaming Portal des Chaos Computer Clubs", @@ -885,7 +959,7 @@ "currency:de", "ref" ], - "docker hub":"Docker ist eine Freie Software zur Isolierung von Anwendungen mit Hilfe von Containervirtualisierung.", + "docker hub":"Docker ist eine freie Software zur Isolierung von Anwendungen mit Hilfe von Containervirtualisierung.", "erowid":"Erowid ist eine Nichtregierungsorganisation, die im Oktober 1995 gegründet wurde. Die englischsprachige Website von Erowid ist eine Online-Datenbank mit Informationen zu psychoaktiven Substanzen und verwandten Themen und hat täglich im Durchschnitt über 41.000 Besucher. Erowid wird seit 1. Januar 2008 vom offiziell als Non-Profit-Organisation anerkannten „Erowid Center“ betrieben. Die Organisation hat ihren Sitz im Norden des US-Bundesstaats Kalifornien, die Server stehen in San Francisco. Erowid finanziert sich ausschließlich über Spenden. Banner oder sonstige Werbung gibt es nicht auf der Website.", "wikidata":"Wikidata ist eine frei bearbeitbare Wissensdatenbank, die unter anderem das Ziel hat, Wikipedia zu unterstützen. Das Projekt wurde von Wikimedia Deutschland gestartet und stellt als gemeinsame Quelle bestimmte Datentypen für Wikimedia-Projekte bereit, zum Beispiel Geburtsdaten oder sonstige allgemeingültige Daten, die in allen Artikeln der Wikimedia-Projekte verwendet werden können.", "duckduckgo":[ @@ -909,7 +983,7 @@ "Verzeichnis freier Software als Projekt der Free Software Foundation", "wikidata" ], - "genius":"Genius ist eine Online-Wissensdatenbank. Die Seite ermöglicht es Benutzern, Anmerkungen und Interpretationen zu Songtexten, aber auch News, Poesie, politischen Reden und anderen Textformen zu erstellen. Bei der Gründung 2009 lag der Fokus auf Rap-Musik. 2014 vergrößerte sich die Seite und ermöglichte es Anmerkungen auf andere Websites einzubetten. Im selben Jahr wurde eine iPhone-App veröffentlicht. Im Juli 2014 änderte die Seite ihren Namen von Rap Genius zu Genius.", + "genius":"Genius ist eine Online-Wissensdatenbank. Die Seite ermöglicht es Benutzern, Anmerkungen und Interpretationen zu Songtexten, aber auch News, Poesie, politischen Reden und anderen Textformen zu erstellen. Bei der Gründung 2009 lag der Fokus auf Rap-Musik. 2014 vergrößerte sich die Seite und ermöglichte es, Anmerkungen auf anderen Websites einzubetten. Im selben Jahr wurde eine iPhone-App veröffentlicht. Im Juli 2014 änderte die Seite ihren Namen von Rap Genius zu Genius.", "gigablast":"Gigablast ist eine kleine und unabhängige Suchmaschinen-Engine aus New Mexico. Sie wurde 2000 von Matt Wells gegründet. Ihr Quelltext wurde 2013 unter der Apache-Lizenz veröffentlicht.", "gentoo":[ "gentoo:ru", @@ -917,7 +991,7 @@ ], "gitlab":"GitLab ist eine Webanwendung zur Versionsverwaltung für Softwareprojekte auf Git-Basis, hinzu kamen später weitere Funktionen zur Softwareentwicklung. GitLab bietet ein Issue-Tracking-System mit Kanban-Board, ein System für Continuous Integration und Continuous Delivery (CI/CD), ein Wiki, eine Container-Registry, einen Sicherheitsscanner für Container und Sourcecode sowie Multi-Cluster-Verwaltung und -Überwachung. GitLab ist in Produkte für Entwickler, wie zum Beispiel AWS oder Google Cloud, integrierbar und über eine API fernsteuerbar. GitLab ist in den Programmiersprachen Ruby und Go geschrieben.", "github":"GitHub ist ein netzbasierter Dienst zur Versionsverwaltung für Software-Entwicklungsprojekte. Namensgebend war das Versionsverwaltungssystem Git. Das Unternehmen GitHub, Inc. hat seinen Sitz in San Francisco in den USA. Seit dem 26. Dezember 2018 gehört das Unternehmen zu Microsoft.", - "google":"Google ist eine Internet-Suchmaschine des US-amerikanischen Unternehmens Google LLC. Übereinstimmende Statistiken zeigen bei weltweiten Suchanfragen Google als Marktführer unter den Internet-Suchmaschinen und als die meistbesuchte Website der Welt. Google bearbeitet jährlich mehr als zwei Billionen Suchanfragen.", + "google":"Google ist eine Internet-Suchmaschine des US-amerikanischen Unternehmens Google LLC. Mit mehr als 3 Milliarden Suchanfragen pro Tag hat Google einen Anteil von über 92 % am globalen Suchmaschinenmarkt und ist die meistbesuchte Website der Welt.", "google images":[ "Google Bilder, die umfassendste Bildersuche im Web", "https://images.google.com" @@ -944,7 +1018,7 @@ "library genesis":"Library Genesis oder LibGen ist eine Schattenbibliothek und Suchmaschine für Bücher und wissenschaftliche Aufsätze. Das Projekt gewährt auf seiner Website einen kostenlosen Zugang zu urheberrechtlich geschützter Literatur, die sonst nur hinter Bezahlschranken online verfügbar ist, und bietet diese zum Download an. Unter anderem bezieht Library Genesis PDFs von Elseviers Online-Datenbank ScienceDirect. Die Rechtmäßigkeit des Dienstes, der sich – ebenso wie das ähnliche Projekt Sci-Hub – zunehmend rechtlichen Streitigkeiten ausgesetzt sieht, ist umstritten.", "library of congress":"Die Library of Congress ist die öffentlich zugängliche Forschungsbibliothek des Kongresses der Vereinigten Staaten. Sie befindet sich, auf mehrere Gebäude verteilt, in Washington, D.C. Die LoC ist beim Medienbestand die zweitgrößte, beim Bücherbestand die größte Bibliothek der Welt und insgesamt eine der bedeutendsten.", "metacpan":"CPAN ist ein weltweit gespiegeltes Online-Repository für Perl-Module, -Anwendungen und -Dokumentationen, das am 25. Oktober 1995 in Anlehnung an die TeX-Library CTAN ins Leben gerufen wurde und sich schnell zum De-facto-Standard entwickelt hat. Es bietet die Möglichkeit einer komfortablen Installation und Verwaltung von Perl-Modulen. Im Oktober 2020 umfasste das CPAN circa 260 Server auf fünf Kontinenten und enthielt ca. 39.700 Distributionen von über 12.700 Autoren mit einem Volumen von ungefähr 21 GB.", - "mixcloud":"Mixcloud ist ein britischer Online-Musikdienst, auf dem speziell – im Gegensatz zu SoundCloud – Mixe gestreamt werden. Angemeldete Nutzer können DJ-Sets, Podcasts und Hörfunk-Sendungen streamen, welche man sich auch unangemeldet online anhören kann. Es werden sowohl Formate von Star-DJs als auch von Radio-DJs sowie auch von Amateuren gelistet. Aus rechtlichen Gründen werden die Mixe jedoch nicht zum Download angeboten; manche lizenzierten Mixe lassen sich auch nur exklusiv via bezahltem Subscribe-Abo des jeweiligen Kanals nutzen; diese können dann lediglich zum Offline-Hören in die zugehörige Mixcloud-App geladen werden.", + "mixcloud":"Mixcloud ist ein britischer Online-Musikdienst, auf dem speziell – im Gegensatz zu SoundCloud – Mixe gestreamt werden. Angemeldete Nutzer können DJ-Sets, Podcasts und Hörfunk-Sendungen streamen, welche man sich auch unangemeldet online anhören kann. Es werden sowohl Formate von Star-DJs wie z. B. Robin Schulz als auch von Radio-DJs sowie auch von Amateuren gelistet. Aus rechtlichen Gründen werden die Mixe jedoch nicht zum Download angeboten; manche lizenzierten Mixe lassen sich auch nur exklusiv via bezahltem Subscribe-Abo des jeweiligen Kanals nutzen; diese können dann lediglich zum Offline-Hören in die zugehörige Mixcloud-App geladen werden.", "npm":"npm ist ein Paketmanager für die JavaScript-Laufzeitumgebung Node.js. npm wurde 2010 von Isaac Schlueter als Mitarbeiter des kalifornischen Cloud-Plattform-Anbieters Joyent programmiert. 2014 gründete er die „npm, inc.“", "openairedatasets":"OpenAIRE steht für ein pan-europäisches Forschungsinformationssystem zur Darstellung und Verknüpfung von Forschungsergebnissen, welches Metadaten aus Repositorien, Archiven, wissenschaftlichen Zeitschriften und anderen Infrastrukturen aggregiert.", "openairepublications":[ @@ -952,6 +1026,10 @@ "ref" ], "openstreetmap":"OpenStreetMap (OSM) ist ein freies Projekt, das frei nutzbare Geodaten sammelt, strukturiert und für die Nutzung durch jedermann in einer Datenbank vorhält. Diese Daten stehen unter einer freien Lizenz, der Open Database License. Kern des Projekts ist also eine offen zugängliche Datenbank aller beigetragenen Geoinformationen.", + "packagist":[ + "Hauptrepostorium öffentlich verfügbarer PHP-Pakete, die mit Composer installiert werden können", + "wikidata" + ], "piratebay":"The Pirate Bay ist ein web-basierter Indizierer für digitale Inhalte, bei dem Besucher Magnet-Links und früher auch .torrent-Dateien finden, herunterladen und hinzufügen können, um einen Peer-to-Peer-Dateiaustausch via BitTorrent zwischen den Nutzern aufbauen zu können.", "pubmed":"MEDLINE ist eine öffentlich zugängliche bibliografische Datenbank des US-amerikanischen National Center for Biotechnology Information (NCBI).", "qwant":"Qwant ist eine Suchmaschine, die vom gleichnamigen französischen Unternehmen entwickelt wurde und mit umfassendem Datenschutz wirbt.", @@ -1004,7 +1082,7 @@ "rubygems":"RubyGems ist das offizielle Paketsystem für die Programmiersprache Ruby. Es stellt ein Paketformat, ein Werkzeug zur Verwaltung von Paketen und ein Repositorium für deren Verteilung zur Verfügung. Mit ihm hat der Anwender die Möglichkeit, mehrere Versionen eines Programmes, Programmteiles oder einer Bibliothek gesteuert nach Bedarf einzurichten, zu verwalten oder auch wieder zu entfernen. Es funktioniert analog zum Paketmanager Pip bei Python, hat aber auch Ähnlichkeiten zu apt-get oder yum.", "peertube":"PeerTube ist eine dezentralisierte, freie, föderierte Software für Video-Plattformen betrieben durch ActivityPub und WebTorrent, welches Peer-to-Peer-Technik verwendet, um die individuelle Server-Belastung zu reduzieren, während Videos geschaut werden.", "mediathekviewweb":"MediathekView ist ein Programm, das die Online-Mediatheken verschiedener öffentlich-rechtlicher TV-Sender durchsuchen und die vorhandenen Sendungen auflisten kann. Im Oktober 2016 gab der Entwickler bekannt, dass er die Pflege des Programms zum Jahresende einstellen und sich fortan die Community darum kümmern werde. Innerhalb von drei Wochen bildete sich ein Team dafür.", - "rumble":"Rumble ist ein kanadisches Videoportal mit Hauptsitz in Toronto. Es wurde 2013 von Chris Pavlovski, einem IT-Unternehmer aus Kanada, gegründet. Ab 2020 stiegen die Nutzerzahlen des Portals stark an und überschritten die Marke von 30 Millionen Menschen. Mitte 2021 wurde der Wert der Plattform auf 500 Millionen US-Dollar geschätzt. Ab 2022 verzeichnet Rumble laut dem Analyseunternehmen Similarweb 150 Millionen monatliche Besucher", + "rumble":"Rumble ist ein kanadisches Videoportal mit Hauptsitz in Toronto. Es wurde 2013 von Chris Pavlovski, einem IT-Unternehmer aus Kanada, gegründet. Ab 2020 stiegen die Nutzerzahlen des Portals stark an und überschritten die Marke von 30 Millionen Menschen. Mitte 2021 wurde der Wert der Plattform auf 500 Millionen US-Dollar geschätzt. Ab 2022 verzeichnet Rumble laut dem Analyseunternehmen Similarweb 150 Millionen monatliche Besucher.", "woxikon.de synonyme":[ "Entdecke das umfassende Online-Lexikon und -Wörterbuch Woxikon ▶ Synonyme & Antonyme ✓ Kreative Sprüche ✓ Geläufige Abkürzungen ✓ Passende Reime ✓ Konjugierte Verben & vieles mehr ✓ Schau vorbei!", "https://www.woxikon.de/" @@ -1013,6 +1091,10 @@ "polnisches Online-Wörterbuch", "wikidata" ], + "wttr.in":[ + "Wetterbericht für: Des Moines, Iowa, United States", + "https://wttr.in" + ], "brave":"Brave Search ist eine Internet-Suchmaschine des US-amerikanischen Browserherstellers Brave Software Inc. Die Suchmaschine legt dabei ähnlich wie der Webbrowser vom selben Unternehmen Wert auf die Privatsphäre des Nutzers, so dass Tracking und Werbung herausgefiltert werden. Brave Search setzt auf einen eigenen Index, um die Suchergebnisse auszugeben.", "sourcehut":[ "Platform für Softwareprojekte", @@ -1037,6 +1119,10 @@ "Ειδήσεις από διεθνείς, εθνικές και τοπικές πηγές ειδήσεων, οργανωμένες έτσι, ώστε να σας παράσχουν λεπτομερή ενημέρωση για θέματα όπως σπορ, ψυχαγωγία, επιχειρήσεις, πολιτική, καιρός και άλλα.", "https://www.bing.com/news" ], + "bing videos":[ + "Η έξυπνη αναζήτηση του Bing σάς διευκολύνει να βρίσκετε γρήγορα αυτό που ψάχνετε και σας ανταμείβει.", + "https://www.bing.com/videos" + ], "currency":"Η DuckDuckGo (DDG) είναι διαδικτυακή μηχανή αναζήτησης που δίνει έμφαση στην προστασία της ιδιωτικής ζωής των χρηστών της και στην αποφυγή του “φίλτρου φυσαλίδας” των εξατομικευμένων αποτελεσμάτων αναζήτησης. Το DuckDuckGo ξεχωρίζει από τις άλλες μηχανές αναζήτησης, μη δημιουργώντας το προφίλ των χρηστών του και εκθέτοντας σκόπιμα σε όλους τους χρήστες τα ίδια αποτελέσματα αναζήτησης για ένα δεδομένο όρο αναζήτησης. Το DuckDuckGo δίνει έμφαση στην επιστροφή των καλύτερων, και όχι απλά των περισσότερων, αποτελεσμάτων. Τα αποτελέσματα αυτά τα παράγει μέσα από περισσότερες από 400 μεμονωμένες πηγές, συμπεριλαμβανομένων γνωστών πληθοπορισμικών (crowdsoursed) σελίδων όπως το Wikipedia και άλλων μηχανών αναζήτησης όπως το Bing, το Yahoo!, το Yandex και το Yummly.", "deezer":[ "γαλλική διαδικτυακή υπηρεσία αναπαραγωγής μουσικής", @@ -1102,7 +1188,11 @@ "wikisource":"Η Βικιθήκη (Wikisource) είναι ένα πρόγραμμα του Wikimedia για τη δημιουργία μιας αυξανόμενης ελεύθερου περιεχομένου βιβλιοθήκης με την συλλογή πρωτογενών κειμένων, και μεταφράσεων πρωτογενών πηγών σε οποιαδήποτε γλώσσα. Τα περισσότερα κείμενα της Βικιθήκης είναι ελεύθερα δικαιωμάτων και δεν προστατεύονται από οποιοδήποτε πνευματικά δικαιώματα ή άδεια χρήσης. Όμως, ορισμένα κείμενα έχουν πνευματικά δικαιώματα και είναι διαθέσιμα με την Άδεια Ελεύθερης Τεκμηρίωσης GNU. Η Βικιθήκη είναι αδελφικός δικτυακός τόπος της Βικιπαίδειας, της ελεύθερης εγκυκλοπαίδειας. Βρίσκεται στην διεύθυνση www.wikisource.org. Το ελληνικό εγχείρημα βρίσκεται στη διεύθυνση http://el.wikisource.org/.", "wiktionary":"Το Βικιλεξικό είναι πολύγλωσσο λεξικογραφικό διαδικτυακό εγχείρημα του ιδρύματος Wikimedia. Βασίζεται σε σύστημα wiki και το περιεχόμενό του μπορεί να χρησιμοποιηθεί ελεύθερα.", "wikiversity":"Το Βικιεπιστήμιο είναι ένα έργο του Ιδρύματος Wikimedia που υποστηρίζει τις κοινότητες μάθησης, το μαθησιακό τους υλικό και τις συνακόλουθες δραστηριότητες. Διαφέρει από τα πιο δομημένα έργα όπως η Βικιπαίδεια, επειδή προσφέρει μια σειρά από μαθήματα, τμήματα και σχολές για την προώθηση της μάθησης παρά για το περιεχόμενο.", - "wikivoyage":"Τα Βικιταξίδια είναι ένας ελεύθερος διαδικτυακός ταξιδιωτικός οδηγός, για ταξιδιωτικούς προορισμούς και θέματα ευρύτερου ταξιδιωτικού ενδιαφέροντος, ο οποίος συντάσσεται από εθελοντές. Το όνομα αποτελεί συνδυασμό της λέξης \"Wiki\" και \"Ταξίδια\"." + "wikivoyage":"Τα Βικιταξίδια είναι ένας ελεύθερος διαδικτυακός ταξιδιωτικός οδηγός, για ταξιδιωτικούς προορισμούς και θέματα ευρύτερου ταξιδιωτικού ενδιαφέροντος, ο οποίος συντάσσεται από εθελοντές. Το όνομα αποτελεί συνδυασμό της λέξης \"Wiki\" και \"Ταξίδια\".", + "wttr.in":[ + "Πρόγνωση καιρού για: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "en":{ "9gag":"9GAG is an online platform and social media website based in Hong Kong, which allows its users to upload and share user-generated content or other content from external social media websites. Since the platform for collections of Internet memes was launched on April 11, 2008, it has grown in popularity across social media such as Facebook, Twitter, and Instagram.", @@ -1122,7 +1212,7 @@ "artic":"The Art Institute of Chicago in Chicago's Grant Park, founded in 1879, is one of the oldest and largest art museums in the world. Recognized for its curatorial efforts and popularity among visitors, the museum hosts approximately 1.5 million people annually. Its collection, stewarded by 11 curatorial departments, is encyclopedic, and includes iconic works such as Georges Seurat's A Sunday on La Grande Jatte, Pablo Picasso's The Old Guitarist, Edward Hopper's Nighthawks, and Grant Wood's American Gothic. Its permanent collection of nearly 300,000 works of art is augmented by more than 30 special exhibitions mounted yearly that illuminate aspects of the collection and present cutting-edge curatorial and scientific research.", "arxiv":"arXiv is an open-access repository of electronic preprints and postprints approved for posting after moderation, but not peer review. It consists of scientific papers in the fields of mathematics, physics, astronomy, electrical engineering, computer science, quantitative biology, statistics, mathematical finance and economics, which can be accessed online. In many fields of mathematics and physics, almost all scientific papers are self-archived on the arXiv repository before publication in a peer-reviewed journal. Some publishers also grant permission for authors to archive the peer-reviewed postprint. Begun on August 14, 1991, arXiv.org passed the half-million-article milestone on October 3, 2008, and had hit a million by the end of 2014. As of April 2021, the submission rate is about 16,000 articles per month.", "bandcamp":"Bandcamp is an American online audio distribution platform founded in 2007 by Oddpost co-founder Ethan Diamond and programmers Shawn Grunberger, Joe Holt and Neal Tucker, with headquarters in Oakland, California, US. On March 2, 2022, Bandcamp was acquired by Epic Games.", - "wikipedia":"Wikipedia is a multilingual free online encyclopedia written and maintained by a community of volunteers, known as Wikipedians, through open collaboration and using a wiki-based editing system. Wikipedia is the largest and most-read reference work in history. It is consistently one of the 10 most popular websites ranked by Similarweb and formerly Alexa; as of 2022, Wikipedia was ranked the 5th most popular site in the world. It is hosted by the Wikimedia Foundation, an American non-profit organization funded mainly through donations.", + "wikipedia":"Wikipedia is a multilingual free online encyclopedia written and maintained by a community of volunteers, known as Wikipedians, through open collaboration and using a wiki-based editing system called MediaWiki. Wikipedia is the largest and most-read reference work in history. It is consistently one of the 10 most popular websites ranked by Similarweb and formerly Alexa; as of 2022, Wikipedia was ranked the 5th most popular site in the world. It is hosted by the Wikimedia Foundation, an American non-profit organization funded mainly through donations.", "bing":"Microsoft Bing is a web search engine owned and operated by Microsoft. The service has its origins in Microsoft's previous search engines: MSN Search, Windows Live Search and later Live Search. Bing provides a variety of search services, including web, video, image and map search products. It is developed using ASP.NET.", "bing images":[ "bing:en", @@ -1140,7 +1230,7 @@ "wikidata" ], "openverse":[ - "Openverse | WordPress.org", + "Search over 600 million free and openly licensed images, photos, audio, and other media types for reuse and remixing.", "https://wordpress.org/openverse/" ], "crossref":"Crossref is an official digital object identifier (DOI) Registration Agency of the International DOI Foundation. It is run by the Publishers International Linking Association Inc. (PILA) and was launched in early 2000 as a cooperative effort among publishers to enable persistent cross-publisher citation linking in online academic journals. In August 2022, Crossref lists that index more than 60 million journal studies were made free to view and reuse, and they made a challenge publicly to other publishers, to add their reference data to the index.", @@ -1189,14 +1279,14 @@ "genius":"Genius is an American digital media company founded on August 27, 2009, by Tom Lehman, Ilan Zechory, and Mahbod Moghadam. The site allows users to provide annotations and interpretation to song lyrics, news stories, sources, poetry, and documents.", "gigablast":"Gigablast is an American free and open-source web search engine and directory. Founded in 2000, it is an independent engine and web crawler, developed and maintained by Matt Wells, a former Infoseek employee and New Mexico Tech graduate.", "gentoo":"Gentoo Linux is a Linux distribution built using the Portage package management system. Unlike a binary software distribution, the source code is compiled locally according to the user's preferences and is often optimized for the specific type of computer. Precompiled binaries are available for some larger packages or those with no available source code.", - "gitlab":"GitLab Inc. is an open-core company that operates GitLab, a DevOps software package that combines the ability to develop, secure, and operate software in a single application. The open source software project was created by Ukrainian developer Dmitriy Zaporozhets and Dutch developer Sytse Sijbrandij. In 2018, GitLab Inc. was considered the first partly-Ukrainian unicorn.", + "gitlab":"GitLab Inc. is an open-core company that operates GitLab, a DevOps software package which can develop, secure, and operate software. The open source software project was created by Ukrainian developer Dmitriy Zaporozhets and Dutch developer Sytse Sijbrandij. In 2018, GitLab Inc. was considered the first partly-Ukrainian unicorn.", "github":"GitHub, Inc. is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, continuous integration, and wikis for every project. Headquartered in California, it has been a subsidiary of Microsoft since 2018.", "codeberg":[ "Codeberg is founded as a Non-Profit Organization, with the objective to give the Open-Source code that is running our world a safe and friendly home, and to ensure that free code remains free and secure forever.", "https://codeberg.org/" ], - "google":"Google Search is a search engine provided by Google. Handling more than 3.5 billion searches per day, it has a 92% share of the global search engine market. It is also the most-visited website in the world.", - "google images":"Google Images is a search engine owned by Google that allows users to search the World Wide Web for images. It was introduced on July 12, 2001 due to a demand for pictures of the green Versace dress of Jennifer Lopez worn in February 2000. In 2011, reverse image search functionality was added.", + "google":"Google Search is a search engine provided and operated by Google. Handling more than 3.5 billion searches per day, it has a 92% share of the global search engine market. It is the most-visited website in the world. Additionally, it is the most searched and used search engine in the entire world.", + "google images":"Google Images is a search engine owned by Google that allows users to search the World Wide Web for images. It was introduced on July 12, 2001, due to a demand for pictures of the green Versace dress of Jennifer Lopez worn in February 2000. In 2011, reverse image search functionality was added.", "google news":"Google News is a news aggregator service developed by Google. It presents a continuous flow of links to articles organized from thousands of publishers and magazines. Google News is available as an app on Android, iOS, and the Web.", "google videos":"Google Video was a free video hosting service launched by the multinational technology company Google on January 25, 2005. Similar to YouTube, this platform allowed video clips to be hosted on Google servers and embedded on to other websites. In 2009, Google Videos stopped accepting new video uploads since Google acquired YouTube, and users had the opportunity to publish their videos directly onto YouTube. On August 20, 2012, Google Videos was ultimately shut down.", "google scholar":"Google Scholar is a freely accessible web search engine that indexes the full text or metadata of scholarly literature across an array of publishing formats and disciplines. Released in beta in November 2004, the Google Scholar index includes peer-reviewed online academic journals and books, conference papers, theses and dissertations, preprints, abstracts, technical reports, and other scholarly literature, including court opinions and patents.", @@ -1211,7 +1301,7 @@ ], "habrahabr":"Habr is a Russian collaborative blog about IT, computer science and anything related to the Internet, owned by TechMedia. Habrahabr was founded in June 2006. The English section of Habr was launched in 2019.", "hoogle":"Haskell is a general-purpose, statically-typed, purely functional programming language with type inference and lazy evaluation. Designed for teaching, research and industrial applications, Haskell has pioneered a number of programming language features such as type classes, which enable type-safe operator overloading, and monadic IO. Haskell's main implementation is the Glasgow Haskell Compiler (GHC). It is named after logician Haskell Curry.", - "imdb":"IMDb is an online database of information related to films, television series, home videos, video games, and streaming content online – including cast, production crew and personal biographies, plot summaries, trivia, ratings, and fan and critical reviews. IMDb began as a fan-operated movie database on the Usenet group \"rec.arts.movies\" in 1990, and moved to the Web in 1993. It is now owned and operated by IMDb.com, Inc., a subsidiary of Amazon.", + "imdb":"IMDb is an online database of information related to films, television series, podcasts, home videos, video games, and streaming content online – including cast, production crew and personal biographies, plot summaries, trivia, ratings, and fan and critical reviews. IMDb began as a fan-operated movie database on the Usenet group \"rec.arts.movies\" in 1990, and moved to the Web in 1993. Since 1998, it is now owned and operated by IMDb.com, Inc., a subsidiary of Amazon.", "ina":"The Institut national de l'audiovisuel, is a repository of all French radio and television audiovisual archives. Additionally it provides free access to archives of countries such as Afghanistan and Cambodia. It has its headquarters in Bry-sur-Marne.", "invidious":[ "alternative front end for YouTube", @@ -1223,7 +1313,7 @@ ], "kickass":"KickassTorrents was a website that provided a directory for torrent files and magnet links to facilitate peer-to-peer file sharing using the BitTorrent protocol. It was founded in 2008 and by November 2014, KAT became the most visited BitTorrent directory in the world, overtaking The Pirate Bay, according to the site's Alexa ranking. KAT went offline on 20 July 2016 when the domain was seized by the U.S. government. The site's proxy servers were shut down by its staff at the same time.", "library genesis":"Library Genesis (Libgen) is a file-sharing based shadow library website for scholarly journal articles, academic and general-interest books, images, comics, audiobooks, and magazines. The site enables free access to content that is otherwise paywalled or not digitized elsewhere. Libgen describes itself as a \"links aggregator\", providing a searchable database of items \"collected from publicly available public Internet resources\" as well as files uploaded \"from users\".", - "library of congress":"The Library of Congress (LOC) is the research library that officially serves the United States Congress and is the de facto national library of the United States. It is the oldest federal cultural institution in the country. The library is housed in three buildings on Capitol Hill in Washington, D.C.; it also maintains a conservation center in Culpeper, Virginia. The library's functions are overseen by the Librarian of Congress, and its buildings are maintained by the Architect of the Capitol. The Library of Congress is one of the largest libraries in the world. Its \"collections are universal, not limited by subject, format, or national boundary, and include research materials from all parts of the world and in more than 470 languages.\"", + "library of congress":"The Library of Congress (LOC) is a research library in Washington, D.C. that serves as the library of the U.S. Congress and the de facto national library of the United States. Founded in 1800, the library is the United States's oldest federal cultural institution. The library is housed in three buildings in the Capitol Hill area of Washington. The Library also maintains a conservation center in Culpeper, Virginia. The library's functions are overseen by the Librarian of Congress, and its buildings are maintained by the Architect of the Capitol. The Library of Congress is one of the largest libraries in the world. Its collections contain approximately 173 million items, and it has more than 3000 employees. Its \"collections are universal, not limited by subject, format, or national boundary, and include research materials from all parts of the world and in more than 470 languages.\"", "lingva":[ "Alternative front-end for Google Translate, serving as a Free and Open Source translator with over a hundred languages available", "https://lingva.ml" @@ -1233,15 +1323,11 @@ "wikidata" ], "azlyrics":[ - "AZLyrics - Song Lyrics from A to Z", + "AZLyrics - request for access", "https://azlyrics.com" ], "metacpan":"The Comprehensive Perl Archive Network (CPAN) is a repository of over 250,000 software modules and accompanying documentation for 39,000 distributions, written in the Perl programming language by over 12,000 contributors. CPAN can denote either the archive network or the Perl program that acts as an interface to the network and as an automated software installer. Most software on CPAN is free and open source software.", "mixcloud":"Mixcloud is a popular British online music streaming service that allows for the listening and distribution of radio shows, DJ mixes and podcasts, which are crowdsourced by its registered users.", - "neeva":[ - "Did you know 40% of search results are ads? Created by ex-Google execs, Neeva only shows you real results. No ads or affiliate links ever.", - "https://neeva.com" - ], "npm":"npm is a package manager for the JavaScript programming language maintained by npm, Inc. npm is the default package manager for the JavaScript runtime environment Node.js. It consists of a command line client, also called npm, and an online database of public and paid-for private packages, called the npm registry. The registry is accessed via the client, and the available packages can be browsed and searched via the npm website. The package manager and the registry are managed by npm, Inc.", "nyaa":[ "A BitTorrent community focused on Eastern Asian media including anime, manga, music, and more", @@ -1298,7 +1384,7 @@ "A search engine of PeerTube videos, channels and playlists, developed by Framasoft", "https://sepiasearch.org" ], - "soundcloud":"SoundCloud is an online audio distribution platform and music sharing website that enables its users to upload, promote, and share audio. Founded in 2007 by Alexander Ljung and Eric Wahlforss, SoundCloud is one of the largest music streaming services in the world and is available in 190 countries and territories. The service has more than 76 million active monthly users as of November 2021. SoundCloud offers both free and paid memberships on the platform, available for mobile, desktop and Xbox devices. SoundCloud has evolved from a traditional online streaming platform to an entertainment company.", + "soundcloud":"SoundCloud is a German music streaming service that enables its users to upload, promote, and share audio. Founded in 2007 by Alexander Ljung and Eric Wahlforss, SoundCloud is one of the largest music streaming services in the world and is available in 190 countries and territories. The service has more than 76 million active monthly users and over 200 million audio tracks as of November 2021. SoundCloud offers both free and paid memberships on the platform, available for mobile, desktop and Xbox devices. SoundCloud has evolved from a traditional online streaming platform to an entertainment company.", "stackoverflow":"Stack Exchange is a network of question-and-answer (Q&A) websites on topics in diverse fields, each site covering a specific topic, where questions, answers, and users are subject to a reputation award process. The reputation system allows the sites to be self-moderating. As of August 2019, the three most actively-viewed sites in the network are Stack Overflow, Super User, and Ask Ubuntu.", "askubuntu":[ "stackoverflow:en", @@ -1340,11 +1426,11 @@ "https://alexandria.org/" ], "wikibooks":"Wikibooks is a wiki-based Wikimedia project hosted by the Wikimedia Foundation for the creation of free content digital textbooks and annotated texts that anyone can edit.", - "wikinews":"Wikinews is a free-content news wiki and a project of the Wikimedia Foundation that works through collaborative journalism. Wikipedia cofounder Jimmy Wales has distinguished Wikinews from Wikipedia by saying, \"On Wikinews, each story is to be written as a news story as opposed to an encyclopedia article.\" Wikinews's neutral point of view policy aims to distinguish it from other citizen journalism efforts such as Indymedia and OhmyNews. In contrast to most Wikimedia Foundation projects, Wikinews allows original work in the form of original reporting and interviews.", + "wikinews":"Wikinews is a free-content news wiki and a project of the Wikimedia Foundation that works through collaborative journalism. Wikipedia co-founder Jimmy Wales has distinguished Wikinews from Wikipedia by saying, \"On Wikinews, each story is to be written as a news story as opposed to an encyclopedia article.\" Wikinews's neutral point of view policy aims to distinguish it from other citizen journalism efforts such as Indymedia and OhmyNews. In contrast to most Wikimedia Foundation projects, Wikinews allows original work in the form of original reporting and interviews.", "wikiquote":"Wikiquote is part of a family of wiki-based projects run by the Wikimedia Foundation using MediaWiki software. Based on an idea by Daniel Alston and implemented by Brion Vibber, the project's objective is to produce collaboratively a vast reference of quotations from prominent people, books, films, proverbs, etc. and writings about them. The website aims to be as accurate as possible regarding the provenance and sourcing of the quotations.", "wikisource":"Wikisource is an online digital library of free-content textual sources on a wiki, operated by the Wikimedia Foundation. Wikisource is the name of the project as a whole and the name for each instance of that project ; multiple Wikisources make up the overall project of Wikisource. The project's aim is to host all forms of free text, in many languages, and translations. Originally conceived as an archive to store useful or important historical texts, it has expanded to become a general-content library. The project officially began on November 24, 2003 under the name Project Sourceberg, a play on the famous Project Gutenberg. The name Wikisource was adopted later that year and it received its own domain name.", - "wiktionary":"Wiktionary is a multilingual, web-based project to create a free content dictionary of terms in all natural languages and in a number of artificial languages. These entries may contain definitions, images for illustration, pronunciations, etymologies, inflections, usage examples, quotations, related terms, and translations of terms into other languages, among other features. It is collaboratively edited via a wiki. Its name is a portmanteau of the words wiki and dictionary. It is available in 186 languages and in Simple English. Like its sister project Wikipedia, Wiktionary is run by the Wikimedia Foundation, and is written collaboratively by volunteers, dubbed \"Wiktionarians\". Its wiki software, MediaWiki, allows almost anyone with access to the website to create and edit entries.", - "wikiversity":"Wikiversity is a Wikimedia Foundation project that supports learning communities, their learning materials, and resulting activities. It differs from Wikipedia in that it offers tutorials and other materials for the fostering of learning, rather than an encyclopedia; like Wikipedia, it is available in many languages.", + "wiktionary":"Wiktionary is a multilingual, web-based project to create a free content dictionary of terms in all natural languages and in a number of artificial languages. These entries may contain definitions, images for illustration, pronunciations, etymologies, inflections, usage examples, quotations, related terms, and translations of terms into other languages, among other features. It is collaboratively edited via a wiki. Its name is a portmanteau of the words wiki and dictionary. It is available in 187 languages and in Simple English. Like its sister project Wikipedia, Wiktionary is run by the Wikimedia Foundation, and is written collaboratively by volunteers, dubbed \"Wiktionarians\". Its wiki software, MediaWiki, allows almost anyone with access to the website to create and edit entries.", + "wikiversity":"Wikiversity is a Wikimedia Foundation project that supports learning communities, their learning materials, and resulting activities. It differs from Wikipedia in that it offers tutorials and other materials for the fostering of learning, rather than an encyclopedia. Like Wikipedia, it is available in many languages.", "wikivoyage":"Wikivoyage is a free web-based travel guide for travel destinations and travel topics written by volunteer authors. It is a sister project of Wikipedia and supported and hosted by the same non-profit Wikimedia Foundation (WMF). Wikivoyage has been called the \"Wikipedia of travel guides\".", "wolframalpha":"WolframAlpha is an answer engine developed by Wolfram Research. It answers factual queries by computing answers from externally sourced data.", "mymemory translated":[ @@ -1362,7 +1448,7 @@ "rubygems":"RubyGems is a package manager for the Ruby programming language that provides a standard format for distributing Ruby programs and libraries, a tool designed to easily manage the installation of gems, and a server for distributing them. It was created by Chad Fowler, Jim Weirich, David Alan Black, Paul Brannan and Richard Kilmer during RubyConf 2004.", "peertube":"PeerTube is a free and open-source, decentralized, ActivityPub federated video platform powered by WebTorrent, that uses peer-to-peer technology to reduce load on individual servers when viewing videos.", "mediathekviewweb":"MediathekView is a free open-source software designed to manage the online multimedia libraries of several German public broadcasters as well as an Austrian, a Swiss and a Franco-German public broadcaster. The software comes with a German user interface that lists broadcasts available online. In October 2016, the developer announced that maintenance of the project would be discontinued at the end of the year. Three weeks later, the user community had formed a team to continue the project, and the software continues to remain open-source.", - "rumble":"Rumble is an online video platform and cloud services business headquartered in Longboat Key, Florida and Toronto, Ontario. It was founded in October 2013 by Chris Pavlovski, a technology entrepreneur from Canada. The cloud services business is known for hosting Truth Social, and the video platform is popular among American right and far-right users. The platform has been described as part of \"alt-tech\".", + "rumble":"Rumble is an online video platform and cloud services business headquartered in Toronto, Ontario with its U.S. headquarters in Longboat Key, Florida. It was founded in October 2013 by Chris Pavlovski, a Canadian technology entrepreneur. The cloud services business hosts Truth Social, and the video platform is popular among American right and far-right users. The platform has been described as part of \"alt-tech\".", "wordnik":"Wordnik, a nonprofit organization, is an online English dictionary and language resource that provides dictionary and thesaurus content. Some of the content is based on print dictionaries such as the Century Dictionary, the American Heritage Dictionary, WordNet, and GCIDE. Wordnik has collected a corpus of billions of words which it uses to display example sentences, allowing it to provide information on a much larger set of words than a typical dictionary. Wordnik uses as many real examples as possible when defining a word.", "sjp.pwn":[ "Polish online dictionary", @@ -1376,7 +1462,7 @@ "weather forecast service", "wikidata" ], - "brave":"Brave Search is a search engine developed by Brave Software, Inc. and is set as the default search engine for Brave browser users in certain countries.", + "brave":"Brave Search is a search engine developed by Brave Software, Inc., which is set as the default search engine for Brave web browser users in certain countries.", "petalsearch":[ "search engine", "wikidata" @@ -1385,10 +1471,6 @@ "petalsearch:en", "ref" ], - "petalsearch news":[ - "petalsearch:en", - "ref" - ], "lib.rs":[ "List of Rust libraries and applications. An unofficial experimental opinionated alternative to crates.io", "https://lib.rs" @@ -1396,7 +1478,8 @@ "sourcehut":[ "software development repository and forge", "wikidata" - ] + ], + "goo":"Goo is an Internet search engine and web portal based in Japan, which is used to crawl and index primarily Japanese language websites. Goo is operated by the Japanese NTT Resonant, a subsidiary of NTT Communications." }, "eo":{ "archive is":"archive.today estas servilo kiu ebligas savi kopion de ajna paĝo en la TTT, kun ĉiuj bildoj, stiloj kaj fontoj. Poste la arkivita paĝo povas esti referencata pere de mallonga URL.", @@ -1505,8 +1588,8 @@ "artic":"El Instituto de Arte de Chicago es un museo y escuela de arte situado en la avenida Míchigan junto al Grant Park, enfrente del lago Míchigan en Chicago, Estados Unidos. Es uno de los museos de arte más importantes del mundo y suele ser nombrado como uno de los tres principales de Estados Unidos, junto con el Metropolitan Museum de Nueva York y el Museo de Bellas Artes de Boston. Cuenta con una de las colecciones permanentes más importantes de cuadros del Impresionismo y Posimpresionismo del mundo.", "arxiv":"arXiv es un archivo en línea para las prepublicaciones de artículos científicos en el campo de las matemáticas, física, ciencias de la computación y biología cuantitativa. En muchos campos de las matemáticas y la física, casi todos los artículos científicos se colocan en arXiv. A fecha 27 de julio de 2010, arXiv.org contenía más de 617.767 imprimibles, lo que supone que miles de ellos son añadidos cada mes.", "bandcamp":"Bandcamp es una tienda de música en línea, además de una plataforma de lanzamiento y de promoción para artistas independientes. Abrió su web en septiembre de 2008, y en 2012 posee un catálogo de más de 5 millones de canciones, más de 600.000 álbumes procedentes de 183 países. El 2 de marzo de 2022, Bandcamp fue adquirida por Epic Games.", - "wikipedia":"Wikipedia es una enciclopedia libre, políglota y editada de manera colaborativa. Es administrada por la Fundación Wikimedia, una organización sin ánimo de lucro cuya financiación está basada en donaciones. Sus más de 59 millones de artículos en 328 idiomas han sido redactados en conjunto por voluntarios de todo el mundo, lo que suma más de 3000 millones de ediciones, y permite que cualquier persona pueda sumarse al proyecto para editarlos, a menos que la página se encuentre protegida contra vandalismos para evitar problemas o disputas.", - "bing":"Microsoft Bing es un motor de búsqueda de Microsoft. que proporciona una variedad de servicios de búsqueda, incluidos productos de búsqueda web, de video, de imágenes y mapas. Se desarrolla utilizando ASP.NET.", + "wikipedia":"Wikipedia es una enciclopedia libre, políglota y editada de manera colaborativa. Es administrada por la Fundación Wikimedia, una organización sin ánimo de lucro cuya financiación está basada en donaciones. Sus más de 60 millones de artículos en 329 idiomas han sido redactados en conjunto por voluntarios de todo el mundo, lo que suma más de 3000 millones de ediciones, y permite que cualquier persona pueda sumarse al proyecto para editarlos, a menos que la página se encuentre protegida contra vandalismos para evitar problemas o disputas.", + "bing":"Microsoft Bing es un motor de búsqueda web de Microsoft. El servicio tiene su origen en los anteriores motores de búsqueda de Microsoft: MSN Search, Windows Live Search y posteriormente Live Search. Bing proporciona varios servicios de búsqueda, incluidos productos de búsqueda web, de vídeo, de imágenes y de mapas. Se desarrolla utilizando ASP.NET.", "bing images":[ "bing:es", "ref" @@ -1519,7 +1602,7 @@ "wikidata" ], "currency":"DuckDuckGo (DDG) es un motor de búsqueda que hace hincapié en la protección de la privacidad de los buscadores y en evitar la burbuja de filtros de los resultados de búsqueda personalizados. DuckDuckGo no muestra resultados de búsqueda procedentes de granjas de contenido. Utiliza varias API de otros sitios web para mostrar resultados rápidos a las consultas y para los enlaces tradicionales utiliza la ayuda de sus socios y su propio rastreador.", - "deezer":"Deezer es un sitio web y aplicación informática con un amplio catálogo musical. Se creó en Francia durante junio de 2006 por dos jóvenes, Daniel Marhely y Jonathan Benassaya. Cuenta con 16 millones de usuarios, está disponible en 16 idiomas, cuenta con una versión Free, Premium sin publicidad y una versión HiFi.", + "deezer":"Deezer es un sitio web y aplicación informática con un amplio catálogo musical. Se creó en Francia durante junio de 2006 por dos jóvenes, Daniel Marhely y Jonathan Benassaya. Cuenta con 16 millones de usuarios, está disponible en 16 idiomas, cuenta con tres versiones: Free [Disponible en algunos países], Premium (Sin anuncios [calidad 320 kbps y FLAC] y Family.", "deviantart":"DeviantArt o DA, es un sitio web estadounidense que agrupa a una comunidad internacional de artistas en la red, es filial de la empresa israelí Wix.com. Fue lanzada el 7 de agosto de 2000 por Angelo Sotira, Scott Jarkoff, Matthew Stephens y otros.", "ddg definitions":[ "currency:es", @@ -1569,7 +1652,7 @@ "npm":"npm es el sistema de gestión de paquetes por defecto para Node.js, un entorno de ejecución para JavaScript, bajo Artistic License 2.0.", "openstreetmap":"OpenStreetMap es un proyecto colaborativo para crear mapas editables y libres. En lugar del mapa en sí, los datos generados por el proyecto se consideran su salida principal.", "piratebay":"The Pirate Bay es un motor de búsqueda y rastreo de ficheros BitTorrent (.torrent) en el que es posible realizar búsquedas de todo tipo de material multimedia.", - "pubmed":"MEDLINE o Medline es posiblemente la base de datos de bibliografía médica más amplia que existe. Producida por la Biblioteca Nacional de Medicina de los Estados Unidos. En realidad es una versión automatizada de tres índices impresos: Index Medicus, Index to Dental Literature e International Nursing Index, recoge referencias bibliográficas de los artículos publicados en unas 5.500 revistas médicas desde 1966. Actualmente reúne más de 30.000.000 citas y está en marcha un proceso para la carga paulatina de citas anteriores a 1966, que incluye artículos desde 1871.", + "pubmed":"MEDLINE o Medline es posiblemente la base de datos de bibliografía médica más amplia que existe,producida por la Biblioteca Nacional de Medicina de los Estados Unidos. En realidad es una versión automatizada de tres índices impresos: Index Medicus, Index to Dental Literature e International Nursing Index. Recoge referencias bibliográficas de los artículos publicados en unas 5.500 revistas médicas desde 1966 y actualmente reúne más de 30.000.000 citas, teniendo en marcha un proceso para la carga paulatina de citas anteriores a 1966, que incluye artículos desde 1871.", "pypi":"El Python Package Index o PyPI es el repositorio de software oficial para aplicaciones de terceros en el lenguaje de programación Python. Los desarrolladores de Python pretenden que sea un catálogo exhaustivo de todos los paquetes de Python escritos en código abierto", "qwant":"Qwant es un motor de búsqueda web creado en Francia por el especialista en seguridad Éric Leandri, el inversor Jean Manuel Rozan y el experto en motores de búsqueda Patrick Constant en 2011. Fundada el 16 de febrero de 2013, la empresa lanzó la versión definitiva de su buscador el 4 de julio de 2013. La compañía afirma no emplear el seguimiento de usuarios y no personaliza los resultados de búsqueda para evitar que sus usuarios queden atrapados en un filtro burbuja.", "qwant news":[ @@ -1585,7 +1668,7 @@ "ref" ], "reddit":"Reddit es un sitio web de marcadores sociales y agregador de noticias donde los usuarios pueden añadir textos, imágenes, videos o enlaces. Los usuarios pueden votar a favor o en contra del contenido, haciendo que aparezcan en las publicaciones destacadas. Se trata de un mapa de discusión, como parte de un DDS global distribuido. Su público es mayoritariamente anglosajón y la mayoría de la actividad se realiza en inglés. Reddit fue software libre desde el 19 de junio de 2009 hasta septiembre de 2017, cuando la compañía archivó y cerró el acceso a sus repositorios en Github, que incluían todo el código escrito para Reddit excepto las partes anti-spam.", - "soundcloud":"SoundCloud es un servicio de retransmisión de música vía streaming que a diferencia de Spotify y otras plataformas, este tiene la opción de poder subir canciones y álbumes directamente, sin la necesidad de distribuidoras externas.", + "soundcloud":"SoundCloud es un servicio de retransmisión de música vía streaming que, a diferencia de Spotify y otras plataformas, tiene la opción de poder subir canciones y álbumes directamente, sin la necesidad de distribuidoras externas.", "stackoverflow":"Stack Exchange es una red de webs de preguntas y respuestas sobre distintos temas, donde las preguntas, respuestas y los usuarios están sujetos a un sistema de reputación y recompensas. Dicho sistema permite que los sitios se automoderen.", "askubuntu":[ "stackoverflow:es", @@ -1596,7 +1679,7 @@ "ref" ], "semantic scholar":"Semantic Scholar es un motor de búsqueda respaldado por un sistema de inteligencia artificial dedicado a trabajar con publicaciones académicas. Desarrollado en el Allen Institute for Artificial Intelligence, se lanzó al público en noviembre de 2015. Utiliza avances recientes en el procesamiento del lenguaje natural para proporcionar resúmenes de artículos académicos.", - "startpage":"Startpage es un metabuscador holandés, que destaca la privacidad como su característica distintiva. El sitio web anuncia que permite a los usuarios obtener resultados del Buscador de Google protegiendo la privacidad de los usuarios al no almacenar información personal ni datos de búsqueda y eliminar todos los rastreadores. Startpage también incluye una función de navegación anónima que permite a los usuarios la opción de abrir los resultados de búsqueda a través de un proxy para aumentar el anonimato. Dado que la empresa tiene su sede en los Países Bajos, está protegida por las leyes de privacidad neerlandesa y de la Unión Europea, por lo que no está sujeta a los programas de vigilancia de Estados Unidos, como PRISM.", + "startpage":"Startpage es un motor de búsqueda holandés, que destaca la privacidad como su característica distintiva. El sitio web anuncia que permite a los usuarios obtener resultados del Buscador de Google protegiendo la privacidad de los usuarios al no almacenar información personal ni datos de búsqueda y eliminar todos los rastreadores. Startpage también incluye una función de navegación anónima que permite a los usuarios la opción de abrir los resultados de búsqueda a través de un proxy para aumentar el anonimato. Dado que la empresa tiene su sede en los Países Bajos, está protegida por las leyes de privacidad neerlandesa y de la Unión Europea, por lo que no está sujeta a los programas de vigilancia de Estados Unidos, como PRISM.", "unsplash":"Unsplash es el sitio web internacional en el que están colocadas las fotografías de stock con licencia Unsplash. Desde 2021 es propiedad de Getty Images. El sitio web cuenta con más de 207,000 fotógrafos colaboradores y genera más de 17 mil millones de impresiones fotográficas por mes en su creciente biblioteca de más de 2 millones de fotos. Unsplash es uno de los sitios web principales de fotografía.", "youtube":"YouTube es un sitio web de origen estadounidense dedicado a compartir videos. Presenta una variedad de clips de películas, programas de televisión y vídeos musicales, así como contenidos amateur como videoblogs y YouTube Gaming. Las personas que crean contenido para esta plataforma generalmente son conocidas como youtubers.", "dailymotion":"Dailymotion es un sitio web en el cual los usuarios pueden subir, ver y compartir vídeos. Aloja una variedad de clips de películas, programas de televisión y vídeos musicales, así como contenidos amateur como videoblogs.", @@ -1604,8 +1687,8 @@ "wikibooks":"Wikilibros, anteriormente llamado Wikimedia Free Textbook Project y Wikimedia-Textbooks, es un proyecto hermano de Wikipedia y parte de la Fundación Wikimedia, que empezó el 10 de julio de 2003. El proyecto es una colección de libros de texto, manuales y otros textos pedagógicos de contenido libre, que se escriben y editan colaborativamente al igual que Wikipedia.", "wikinews":"Wikinoticias es una fuente de noticias de contenido libre y un proyecto de la Fundación Wikimedia. El sitio funciona a través del periodismo colaborativo. El cofundador de Wikipedia, Jimmy Wales, ha distinguido a Wikinews de Wikipedia al decir \"en Wikinews, cada historia debe escribirse como una noticia en lugar de un artículo de enciclopedia\". La política de punto de vista neutral adoptada en Wikinoticias la distingue de otros esfuerzos de periodismo ciudadano como Indymedia y OhmyNews. A diferencia de la mayoría de los proyectos de la Fundación Wikimedia, Wikinews permite el trabajo original en forma de informes y entrevistas originales.", "wikiquote":"Wikiquote es una colección de citas célebres de personajes famosos, libros y proverbios. Se realiza de forma colaborativa a través de Internet, bajo la licencia libre GFDL, y basándose en tecnología wiki. Se basa en una idea de Daniel Alston, implementada por Brion Vibber.", - "wikisource":"Wikisource es un proyecto hermano de Wikipedia cuyo objetivo es crear una biblioteca de textos originales, libros y que hayan sido publicados con una licencia GFDL, Creative Commons o que sean de dominio público; junto con su traducción en distintas lenguas. Este sitio forma parte de la fundación Wikimedia. Forman parte de Wikisource distintos libros publicados, así como documentos históricos, ensayos, etc. Su página de inicio presenta una clasificación general por países, géneros y épocas, entre otras opciones.", - "wiktionary":"El Wikcionario es un proyecto de diccionario libre de la Fundación Wikimedia, que contiene definiciones, traducciones, etimologías, sinónimos y pronunciaciones de palabras en múltiples idiomas.", + "wikisource":"Wikisource es un proyecto hermano de Wikipedia cuyo objetivo es crear una biblioteca de textos originales y libros que hayan sido publicados con una licencia GFDL, Creative Commons o que sean de dominio público; junto con su traducción en distintas lenguas. Este sitio forma parte de la fundación Wikimedia. Forman parte de Wikisource distintos libros publicados, así como documentos históricos, ensayos, etc. Su página de inicio presenta una clasificación general por países, géneros y épocas, entre otras opciones.", + "wiktionary":"El Wikcionario es un proyecto de diccionario libre de la Fundación Wikimedia, que contiene definiciones, traducciones, etimologías, sinónimos y pronunciaciones de palabras en múltiples idiomas. Está basado en la tecnología wiki, en particular mediante la utilización del software MediaWiki, y su contenido está protegido por las licencias libres GFDL y CC BY-SA.", "wikiversity":"Wikiversidad es un proyecto hermano de Wikipedia cuyo objetivo es construir una plataforma educativa virtual libre y gratuita, con filosofía wiki y que forme parte de la Fundación Wikimedia. En este proyecto se elaboran materiales y recursos didácticos, y se forman grupos de estudio, a diversos niveles educativos. Los materiales creados tienen una licencia Creative Commons de tipo \"Atribución-Compartir Igual\" para que sean libremente redistribuibles.", "wikivoyage":"Wikiviajes es una guía de viaje gratuita creada por autores voluntarios. Es un proyecto hermano de Wikipedia y está patrocinado y alojado por la misma Fundación Wikimedia. Wikivoyage se ha llamado la «Wikipedia de guías de viaje».", "wolframalpha":"Wolfram|Alpha es un buscador de respuestas desarrollado por la compañía Wolfram Research. Es un servicio en línea que responde a las preguntas directamente, mediante el procesamiento de la respuesta extraída de una base de datos estructurados, en lugar de proporcionar una lista de los documentos o páginas web que podrían contener la respuesta, tal y como lo hace Google. Fue anunciado en marzo de 2009 por el físico británico Stephen Wolfram y está en funcionamiento desde el 15 de mayo de 2009. Fue lanzado en español en 2022.", @@ -1619,15 +1702,17 @@ "peertube":"PeerTube es una aplicación web de software libre, descentralizada, federada y que usa la tecnología peer-to-peer para reducir la carga de los servidores individuales al visualizar videos.", "rumble":"Rumble es una plataforma de video en línea canadiense con sede en Toronto. Fue fundada en 2013 por Chris Pavlovski, un emprendedor tecnológico de Canadá. El recuento mensual de usuarios de Rumble ha experimentado un rápido crecimiento desde julio de 2020, pasando de 1,6 millones de usuarios mensuales a 31,9 millones al final del primer trimestre de 2021.", "wikimini":"Wikimini es una enciclopedia en línea para niños, gratuita, que tiene la particularidad de ser escrita colaborativamente por niños y adolescentes. Su contenido está dirigido a lectores de 8 a 13 años y está publicado bajo licencia libre, lo que permite su difusión y reutilización. Desde que se puso en línea el 1 de octubre de 2008 por el friburgués Laurent Jauquier, el sitio ha experimentando un crecimiento en aumento dentro de la comunidad francófona.", + "wttr.in":[ + "El tiempo en: Des Moines, Iowa, United States", + "https://wttr.in" + ], + "brave":"Brave Search es un motor de búsqueda desarrollado por Brave Software, Inc. y está configurado como el motor de búsqueda predeterminado para los usuarios del navegador web Brave en ciertos países.", "petalsearch":"Petal Search es un motor de búsqueda propiedad de Huawei. Aunque se inventó hace algunos años, se lanzó oficialmente en mayo de 2019 de manera global. Su público objetivo inicial han sido todos los usuarios de dispositivos móviles marca Huawei, aunque al día de hoy abarca todas las marcas gracias a su posicionamiento como motor web. El objetivo principal del buscador de Petal es buscar contenido en texto e imágenes publicadas en las páginas web, en lugar de otro tipo de datos.", "petalsearch images":[ "petalsearch:es", "ref" ], - "petalsearch news":[ - "petalsearch:es", - "ref" - ] + "goo":"goo, que debe ser escrito en minúsculas, es un motor de búsqueda de Internet y un portal ubicado en Japón que indexa contenidos principalmente en japonés. goo es operado por la empresa de telecomunicaciones NTT." }, "et":{ "9gag":"9GAG on suhtlusportaal, kus kasutajad saavad üles laadida ja teistega jagada enda valmistatud või teistelt veebilehtedelt leitud sisu. Portaali haldav ettevõte, 9GAG Inc., asub Mountain View Californias. Veebilehe käivitamisest 23. aprillil 2008 on see kogunud palju populaarsust. 2015. aasta septembriks oli veebilehel juba üle 26 miljoni Facebooki meeldimise ning üle viie miljoni Twitteri jälgija. 9GAG kuulub internetis 200 populaarseima veebilehe hulka, selle väärtuseks hinnatakse üle 56 miljoni USA dollari.", @@ -1643,6 +1728,10 @@ "Ülemaailmsetest, riiklikest ja kohalikest uudiste allikatest pärinevad uudised on korrastatud nii, et need annavad põhjaliku ülevaate spordi, meelelahutuse, äri ja poliitika uudiste, ilma ning palju muu kohta.", "https://www.bing.com/news" ], + "bing videos":[ + "Bingi intelligentne otsing võimaldab teil otsitavat kiiremini leida ja pakub teile preemiaid.", + "https://www.bing.com/videos" + ], "deezer":"Deezer on prantsuse veebipõhine muusika voogedastusteenus.", "deviantart":"DeviantART on kunstiteemaline veebisait, mis avati 7. augustil 2000.", "wikidata":"Wikidata on vabatahtlike kaastööliste koostöös toimetatav teadmusbaas, mis on mõeldud olema Vikipeedia ja selle sõsarprojektide ühiselt jagatud andmeallikas. Kuna baasis olevad andmed litsentsitakse avalikku omandisse, siis on Wikidata piiramatult kasutatavad ka kolmandatele osapooltele. Teadmusbaas kasutab Wikibase tarkvara ning teadmusbaasi haldab Wikimedia Foundation.", @@ -1689,7 +1778,7 @@ }, "eu":{ "artic":"Chicagoko Arte Institutua, ingelesez: Art Institute of Chicago, AEBetako Chicago hirian dagoen arte-museo bat da. Munduko arte-museo garrantzitsuenetako bat da, eta ziurrenik AEBetako hiru arte-museo nabarmenetako bat, New Yorkeko Metropoliar Museoa eta Bostongo Arte Ederren Museoarekin batera.", - "wikipedia":"Wikipedia eduki askeko entziklopedia bat da, lankidetzaz editatua, eleanitza, Interneten argitaratua, Wikimedia Fundazioa irabazi asmorik gabeko erakundeak sustengatua. Wikipedia mundu osoko boluntarioek idazten dute. Internetera konektatutako edonork parte har dezake Wikipediako artikuluetan, aldatu lotura sakatuz. 2015ko azaroaren bostean, 291 hizkuntzatako edizioak zituen, eta horietatik 275 zeuden aktibo. Proiektuaren xedea da ahalik eta hizkuntza gehienetan idatzitako entziklopedia sortu eta hedatzea. Guztira 37 milioi artikulu ditu, horietatik 400.826 euskaraz eta bost milioitik gora ingelesez.", + "wikipedia":"Wikipedia eduki askeko entziklopedia bat da, lankidetzaz editatua, eleanitza, Interneten argitaratua, Wikimedia Fundazioa irabazi asmorik gabeko erakundeak sustengatua. Wikipedia mundu osoko boluntarioek idazten dute. Internetera konektatutako edonork parte har dezake Wikipediako artikuluetan, aldatu lotura sakatuz. 2015ko azaroaren bostean, 291 hizkuntzatako edizioak zituen, eta horietatik 275 zeuden aktibo. Proiektuaren xedea da ahalik eta hizkuntza gehienetan idatzitako entziklopedia sortu eta hedatzea. Guztira 37 milioi artikulu ditu, horietatik 406.309 euskaraz eta bost milioitik gora ingelesez.", "bing":[ "Microsoft enpresak garatutako bilaketa motorra", "wikidata" @@ -1702,6 +1791,10 @@ "Munduko eta tokiko albiste-iturburuetako nahiz iturburu nazionaletako albisteak ondo antolatuta, kirol, entretenimendu, negozio, politika eta eguraldiaren berri emateko sakon, besteak beste.", "https://www.bing.com/news" ], + "bing videos":[ + "Bing bilaketa adimendunei esker, bizkorrago aurkituko duzu bilatzen ari zarena; gainera, sariak jasoko dituzu.", + "https://www.bing.com/videos" + ], "crossref":[ "DOI zenbakien kudeaketa agentzia", "wikidata" @@ -1781,7 +1874,7 @@ "archive is":"archive.is یک وبگاه بایگانی است که عکس‌های صفحات وب را ذخیره می‌کند. این وبگاه مشابه WebCite یک صفحه را در یک زمان بازیابی می‌کند، که هر صفحه حجمی کمتر از ۵۰ مگابایت داشته باشد اما با این تفاوت که محتویات صفحات طراحی وب ۲٫۰ را نیز شامل می‌شود.", "artic":"موسسه هنر شیکاگو در سال ۱۸۷۹ میلادی تأسیس شد. این مرکز از معتبرترین موزه‌های هنری در ایالات متحده آمریکا محسوب می‌شود.", "arxiv":"وب‌گاه آرکایو یک بایگانی برای نسخهٔ پیش‌چاپ نوشتارهای علمی در زمینه‌های فیزیک، ریاضیات، دانش رایانه، زیست‌شناسی کمّی، مدیریت مالی کمّی، و آمار است که می‌توان به آن دسترسی برخط داشت.", - "wikipedia":"ویکی‌پدیا یک دانشنامه برخط چندزبانه مبتنی بر وب با محتوای آزاد و همکاری باز است که با همکاری افراد داوطلب نوشته می‌شود و هر کسی که به اینترنت و وب دسترسی داشته باشد می‌تواند مقالات آن را ببیند و ویرایش کند. نام ویکی‌پدیا واژه‌ای ترکیبی است که از واژه‌های ویکی و اِنسایکلوپدیا (Encyclopedia) گرفته شده‌است. هدف ویکی‌پدیا آفرینش و انتشار جهانی یک دانشنامه با محتوای آزاد به تمامی زبان‌های زندهٔ دنیا است.", + "wikipedia":"ویکی‌پدیا یک دانشنامه برخط چندزبانه مبتنی بر وب با محتوای آزاد و همکاری باز است که با همکاری افراد داوطلب نوشته می‌شود و هر کسی که به اینترنت و وب دسترسی داشته باشد می‌تواند مقالات آن را ببیند و ویرایش کند. نام ویکی‌پدیا از پیوند واژه «ویکی» با «پدیا» ایجاد شده است. هدف ویکی‌پدیا آفرینش و انتشار جهانی یک دانشنامه با محتوای آزاد به تمامی زبان‌های زندهٔ دنیا است.", "bing":"بینگ یک موتور جستجوی وب متعلق به شرکت مایکروسافت است که پیشتر با نام‌های لایو سرچ، ویندوز لایو سرچ و ام. اس. ان سرچ شناخته می‌شد. استیو بالمر در ۲۸ مه ۲۰۰۹، در کنفرانس «همهٔ چیزهای دیجیتال» در سانفرانسیسکو آمریکا، از بینگ پرده‌برداری نمود و این جستجوگر در ۳ ژوئن همان سال، به‌طور کامل در دسترس قرار گرفت.", "bing images":[ "bing:fa-IR", @@ -1889,6 +1982,11 @@ "seznam":"سزنم پربازدیدترین پرتال اینترنتی در جمهوری چک و کشورهای چک زبان پیرامون آن مانند اسلواکی و بخش‌هایی از آلمان است. صفحه اصلی سزنم روزانه دست کم ۲/۵ میلیون بازدیدکننده دارد. سرویس‌های تجاری و غیرتجاری سزنم نیز سال‌ها است که بدست کاربرانی که به دنبال سرگرمی، یافتن داده‌ها یا دوستان در فضای اینترنت هستند، قابل استفاده است. جستجوگر بومی سزنم با بیش از هزار نیرو و کارمند توانسته است به سهم ۵۰ درصدی از بازار جستجوگرها در کشور خود دست‌یابد. به‌طور تقریبی ۹۰ درصد از مردم این کشور اروپایی از جستجوگر سزنم یا سرویس‌های گوناگون آن بهره می‌برند.", "naver":"موتور جستجوی ناور (به کره‌ای: 네이버) یک موتور جستجوی معروف در کره است که در حدود ۷۰ درصد بازار مشترک را در مقابل ۲ درصد گوگل داراست .Naver در سال ۱۹۹۹ توسط گروهی از مهندسان شرکت Sumsong ایجاد شد. و به عنوان اولین وب پورتال کره جنوبی شناخته می‌شود و یک پورتال بومی اختصاصی محسوب می گردد.", "peertube":"پیرتیوب یک سکوی ویدیوی آزاد، غیر متمرکز و فِدِرِیتِد بر پایهٔ اکتیویتی‌پاب و وب‌تورنت است که از فناوری همتابه‌همتا برای کاهش بار بر روی سرورها هنگام دیدن ویدیو استفاده می‌کند. توسعه این نرم‌افزار در سال ۲۰۱۵ توسط برنامه‌نویسی معروف به Chocobozzz آغاز شد و هم‌اکنون توسط مؤسسه غیرانتفاعی فرانسوی فراماسافت به پیش می‌رود. هدف این پروژه، ارائه جایگزین برای سکوهای متمرکز مانند یوتیوب، ویمیو و دیلی موشن است.", + "rumble":"رامبل یک پلتفرم سرویس اشتراک ویدئو و ارائه دهنده خدمات رایانش ابری برای کسب‌وکارهاست. دفتر اصلی رامبل در شهر تورنتو، مرکز استان انتاریو کشور کانادا قرار دارد و دفتر مرکزی آن در آمریکا هم در شهرک لانگبوت کی ایالت فلوریدا هست. رامبل در اکتبر سال ۲۰۱۳ توسط کریس پاولوفسکی کانادایی، کارآفرین حوزه تکنولوژی تاسیس شد. بخش سرویس خدمات ابری رامبل هاست (میزبان) شبکه اجتماعی تروث سوشال است و بخش پلتفرم ویدئویی رامبل هم بین کاربران حزب محافظه‌کار و گروه‌های راست افراطی آمریکا محبوب است. پلتفرم رامبل به‌عنوان بخشی از تکنولوژی آلترناتیو (alt-tech) شناخته می‌شود.", + "wttr.in":[ + "Des Moines, Iowa, United States اوه و بآ تیعضو شرازگ", + "https://wttr.in" + ], "brave":"بریو سرچ یک موتور جستجو است که توسط بریو سافتور اینک Brave Software, Inc. ساخت و توسعه یافته‌است و به عنوان موتور جستجوی پیش فرض برای کاربران مرورگر بریو است." }, "fi":{ @@ -1899,7 +1997,7 @@ "arxiv":"Arxiv tai arXiv, on tieteellisten tutkimusten sähköisten ennakkojulkaisujen arkisto Internetissä.", "bandcamp":"Bandcamp on yhdysvaltalainen musiikkiyhtiö, jonka ovat perustaneet Ethan Diamond, Shawn Grunberger, Joe Holt ja Neal Tucker vuonna 2008.", "wikipedia":"Wikipedia on Internetissä toimiva avoin tietosanakirja, joka käyttää MediaWiki-ohjelmistoa. Wikipediaa kirjoitetaan 291 kielellä. Wikipedian sisältö on vapaaehtoisten kirjoittama, ja se on avointa Creative Commons Nimeä-JaaSamoin- tai GNU Free Documentation -lisenssien mukaisesti. Wikipediaa ylläpitää Wikimedia Foundation, joka ei kuitenkaan omista Wikipedian sisältöä.", - "bing":"Microsoft Bing on Microsoftin hakukone, joka tunnettiin aiemmin MSN-portaalin hakukoneena. Microsoft pyrkii kilpailemaan hakukoneella maailmanlaajuisesti Google-hakukoneen kanssa. Liiketoimintamalli perustuu hakutulosten yhteydessä näkyvään hakusanamainontaan. Hakukone julkistettiin 1. kesäkuuta 2009.", + "bing":"Microsoft Bing on Microsoftin omistama ja ylläpitämä hakukone. Palvelu juontaa juurensa yrityksen aiemmista hakukoneista MSN Search, Windows Live Search ja myöhemmin Live Search. Microsoft pyrkii kilpailemaan hakukoneella maailmanlaajuisesti Google-hakukoneen kanssa. Liiketoimintamalli perustuu hakutulosten yhteydessä näkyvään hakusanamainontaan. Hakukone julkistettiin 1. kesäkuuta 2009.", "bing images":[ "bing:fi", "ref" @@ -1908,6 +2006,10 @@ "Uutisia niin maailman ja valtakunnan lähteistä kuin paikallislähteistäkin. Uutiset on järjestetty niin, että saat seikkaperäisiä uutisia urheilusta, viihteestä, taloudesta, politiikasta, säästä ja monesta muusta aiheesta.", "https://www.bing.com/news" ], + "bing videos":[ + "Bingin älykäs haku auttaa sinua löytämään etsimäsi nopeammin ja palkitsee sinut.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket on lähdekoodin hallinnointiin ja versiohallintaan tarkoitettu sivusto.", "currency":"DuckDuckGo on hakukone, joka painottaa yksityisyyttä eikä kerää dataa käyttäjiltä. Se käyttää hakuihinsa oman hakurobottinsa lisäksi useita eri lähteitä, muun muassa joukkoutettuja verkkosivuja, kuten Wikipediaa.", "deezer":"Deezer on ranskalainen musiikkipalvelu, jossa käyttäjät voivat kuunnella musiikkia suoratoistona Internetistä. Deezer julkaistiin 24. elokuuta 2007. Palvelua kustannetaan mainostuloilla. Toukokuussa 2013 Deezerissä oli 20 miljoonaa kappaletta. Palvelun käyttö ei vaadi erillistä ohjelmaa, vaan sivustolla olevia kappaleita pystyy kuuntelemaan suoraan verkkosivuston kautta. Palvelu on saatavissa myös älypuhelimille erillisen sovelluksen kautta. Palvelu avattiin Suomessa toukokuussa 2013. Deezer on Spotifyn kilpailija. Deezerissä on tarjolla yli 53 miljoonaa kappaletta.", @@ -1984,20 +2086,24 @@ "wiktionary":"Wikisanakirja on Wikipedian sisarhanke, jonka tavoitteena on luoda wikipohjainen kaikkien kielten välinen vapaa sanakirja.", "wikiversity":"Wikiopisto on Wikimedia Foundationin hallinnoima hanke, joka sai alkunsa Wikikirjastossa ja on laajentunut omaksi hankkeekseen.", "wikivoyage":"Wikimatkat on internetissä oleva matkaopas, jota muokkaavat vapaaehtoiset käyttäjät. Tällä hetkellä se on saatavissa 21 eri kielellä.", - "wolframalpha":"Wolfram Alpha on Wolfram Researchin kehittelemä haku- ja vastauskone, joka julkaistiin 15.5.2009. Wolfram Alphan toiminta pohjautuu Wolfram Researchin kehittelemään Mathematica-laskentaohjelmaan tiedon etsimisessä ja käsittelyssä." + "wolframalpha":"Wolfram Alpha on Wolfram Researchin kehittelemä haku- ja vastauskone, joka julkaistiin 15.5.2009. Wolfram Alphan toiminta pohjautuu Wolfram Researchin kehittelemään Mathematica-laskentaohjelmaan tiedon etsimisessä ja käsittelyssä.", + "wttr.in":[ + "Säätiedotus: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "fil":{ "bandcamp":"Ang Bandcamp ay isang Amerikanong online music company na itinatag noong 2008 ni Oddpost co-founder Ethan Diamond at mga programmer na sina Shawn Grunberger, Joe Holt at Neal Tucker; ang kumpanya ay headquarter sa Oakland, California.", "wikipedia":"Ang Wikipedia ay isang ensiklopedya na may basehang wiki at may malayang nilalaman. Ito ay tinatawag na malaya sa kadahilanang ito ay malayang magagamit at mapapalitan ng kung sino man. Ang Wikipedia ay nakasulat sa maraming wika at pinamamahalaan ng Wikimedia Foundation.", "bing images":[ - "Tingnan ang mga nagte-trend na imahe, wallpaper, gif at ideya sa Bing araw-araw.", + "Tingnan ang feed na inakma sa iyong mga interes", "https://www.bing.com/images" ], "bing news":[ "Balita mula sa buong daigdig, bansa, at lokal, organisado para bigyan ka ng malawakang coverage ng sports, entertainment, negosyo, pulitika, panahon, at marami pang iba.", "https://www.bing.com/news" ], - "wikidata":"Ang Wikidata ay isang internet na wiki na pagkalagay ng datos sa mga wikang pag-aari ng Pundayson ng Wikimedia.", + "wikidata":"Ang Wikidata ay isang internet na wiki na pagkalagay ng datos sa mga wikang pag-aari ng Pundasyong Wikimedia.", "gentoo":[ "gentoo:ru", "ref" @@ -2038,7 +2144,7 @@ "arxiv":"arXiv est une archive ouverte de prépublications électroniques d'articles scientifiques dans les domaines de la physique, des mathématiques, de l'informatique, de la biologie quantitative, de la finance quantitative, de la statistique, de l'ingénierie électrique et des systèmes, et de l'économie, et qui est accessible gratuitement par Internet.", "bandcamp":"Bandcamp est un magasin de musique en ligne qui s'adresse principalement aux artistes indépendants.", "wikipedia":"Wikipédia est une encyclopédie universelle et multilingue créée par Jimmy Wales et Larry Sanger le 15 janvier 2001. Il s'agit d'une œuvre libre, c'est-à-dire que chacun est libre de la rediffuser. Gérée en wiki dans le site web wikipedia.org grâce au logiciel MediaWiki, elle permet à tous les internautes d'écrire et de modifier des articles, ce qui lui vaut d'être qualifiée d'encyclopédie participative. Elle est devenue en quelques années l'encyclopédie la plus fournie et la plus consultée au monde.", - "bing":"Microsoft Bing, ou simplement Bing, est un moteur de recherche élaboré par la société Microsoft. Il a été rendu public le 3 juin 2009.", + "bing":"Microsoft Bing, est un moteur de recherche élaboré par la société Microsoft. Il a été rendu public le 3 juin 2009.", "bing images":[ "bing:fr", "ref" @@ -2047,10 +2153,14 @@ "Les actualités internationales, nationales et locales sont organisées de façon à vous donner une vision détaillée du monde du sport, du divertissement, de l'économie, la politique, la météo et bien plus encore.", "https://www.bing.com/news" ], + "bing videos":[ + "La recherche intelligente de Bing facilite la recherche rapide et vous récompense.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket est un service web d'hébergement et de gestion de développement logiciel utilisant le logiciel de gestion de versions Git.", "crossref":"Crossref est une organisation à but non lucratif de droit américain jouant le rôle d'agence d'enregistrement et de registre des Digital Object Identifier. Lancée au début des années 2000 dans un effort de coopération entre les éditeurs, afin de permettre l'identification des objets numériques, notamment les articles et les revues académiques en ligne. Crossref est le nom commun utilisé par la Publishers International Linking Association (PILA). En 2019, l'agence comptait près de 14 800 adhérents issus de 120 pays.", - "currency":"DuckDuckGo est un moteur de recherche américain qui vise à préserver la vie privée de ses utilisateurs et de leur éviter la bulle de filtres.", - "deezer":"Deezer est une plateforme française de distribution numérique dédiée à l'écoute de musique en streaming lancé en août 2007. Ce service permet l'écoute de musiques et podcasts, issus d'un catalogue négocié avec les labels regroupant plus de 90 millions de titres en 2022. Deezer éditorialise son contenu par l'établissement de playlists ainsi que son algorithme Flow, qui recommande de nouveaux morceaux selon les goûts musicaux de l’utilisateur.", + "currency":"DuckDuckGo est un moteur de recherche américain qui vise à préserver la vie privée de ses utilisateurs et à leur éviter la bulle de filtres.", + "deezer":"Deezer est une plateforme française de distribution numérique dédiée à l'écoute de musique en streaming et qui a été lancée en août 2007. Ce service permet l'écoute de musiques et podcasts, issus d'un catalogue négocié avec les labels regroupant plus de 90 millions de titres en 2022. Deezer éditorialise son contenu par l'établissement de playlists ainsi que son algorithme Flow, qui recommande de nouveaux morceaux selon les goûts musicaux de l’utilisateur.", "deviantart":"DeviantArt est une communauté artistique en ligne, où chacun peut s'inscrire et exposer ses propres créations, graphiques ou littéraires. Le jour de son 15e anniversaire, le site comptait plus de 36,4 millions d'inscrits et plus de 200 millions de deviations.", "ddg definitions":[ "currency:fr", @@ -2100,7 +2210,7 @@ "ina":"L'Institut national de l'audiovisuel (INA) est un établissement public à caractère industriel et commercial français ayant pour mission principale d'archiver les productions audiovisuelles, de produire, d'éditer, de publier, de commercialiser et distribuer des contenus audiovisuels et multimédias à destination de tous les publics, professionnels, entreprises ou particuliers, pour tous les écrans ou plateformes de diffusion, y compris audio. L'INA comprend également un centre de formation et de recherche visant à développer et transmettre les savoirs et expertises dans les domaines de l'audiovisuel, des médias et du numérique.", "kickass":"KickassTorrents est un annuaire web de fichiers torrent et de liens magnet destiné à faciliter le partage de fichiers. Le site a été fondé en 2008 et a été mis hors ligne le 20 juillet 2016, lorsque le domaine a été saisi par le gouvernement des États-Unis. Les sites proxy ont été fermés par les membres de son équipe le même jour. Le 16 décembre 2016, KickassTorrents est de retour en ligne sur une nouvelle adresse: KATcr.co créée par l'équipe originale.", "library genesis":"Library Genesis ou LibGen est un moteur de recherche d'articles et de livres scientifiques qui facilite l'accès aux contenus soumis à un péage. Il diffuse notamment les fichiers PDF du portail Web ScienceDirect d'Elsevier.", - "library of congress":"La bibliothèque du Congrès, située à Washington D. C., assure la fonction de bibliothèque de recherche du Congrès des États-Unis et, de facto, constitue la bibliothèque nationale américaine.", + "library of congress":"La bibliothèque du Congrès, située à Washington, assure la fonction de bibliothèque de recherche du Congrès des États-Unis et, de facto, constitue la bibliothèque nationale américaine.", "metacpan":"Le Comprehensive Perl Archive Network, ou CPAN, est un site Web consacré au langage de programmation Perl. CPAN désigne également un module Perl servant à accéder à ce site. Son nom vient du Comprehensive TeX Archive Network, ou CTAN, son homologue consacré à TeX.", "mixcloud":"Mixcloud est une plate-forme collaborative de partage et d'écoute de musique en ligne spécialement dédiée aux sessions de mixage enregistrées en studio diffusées en radio ou en podcast. The Guardian et TED utilisent la plate-forme.", "npm":"npm est le gestionnaire de paquets par défaut pour l'environnement d'exécution JavaScript Node.js de Node.js.", @@ -2108,7 +2218,7 @@ "piratebay":"The Pirate Bay est un site web créé en 2003 en Suède, indexant des liens Magnets de fichiers numériques, permettant le partage de fichiers en pair à pair à l’aide du protocole de communication BitTorrent. Le site se finance par les dons et la publicité, il a été créé dans l’esprit d’une « culture libre ».", "pubmed":"MEDLINE est une base de données bibliographiques regroupant la littérature relative aux sciences biologiques et biomédicales. La base est gérée et mise à jour par la Bibliothèque américaine de médecine (NLM).", "pypi":"PyPI est le dépôt tiers officiel du langage de programmation Python. Son objectif est de doter la communauté des développeurs Python d'un catalogue complet recensant tous les paquets Python libres. Il est analogue au dépôt CPAN pour Perl.", - "qwant":"Qwant est un moteur de recherche français mis en ligne depuis en février 2013. Qwant prétend garantir la vie privée de ses utilisateurs car il ne les trace pas à des fins publicitaires, ni ne revend de données personnelles. En outre le moteur se veut impartial dans l'affichage des résultats.", + "qwant":"Qwant est un moteur de recherche français mis en ligne en février 2013. Qwant prétend garantir la vie privée de ses utilisateurs car il ne les trace pas à des fins publicitaires, ni ne revend de données personnelles. En outre le moteur se veut impartial dans l'affichage des résultats.", "qwant news":[ "qwant:fr", "ref" @@ -2143,21 +2253,21 @@ "youtube":"YouTube est un site web d'hébergement de vidéos et média social sur lequel les utilisateurs peuvent envoyer, regarder, commenter, évaluer et partager des vidéos en streaming. Il est créé en février 2005 par Steve Chen, Chad Hurley et Jawed Karim, trois anciens employés de PayPal, puis racheté par Google en octobre 2006 pour 1,65 milliard de dollars. Le service est situé à San Bruno, en Californie.", "dailymotion":"Dailymotion est une entreprise française proposant, sur le site web du même nom, un service d'hébergement, de partage et de visionnage de vidéo en ligne.", "vimeo":"Vimeo est un site web communautaire destiné au partage et au visionnage de vidéos réalisées par les utilisateurs. Ce site a été lancé en novembre 2004. Vimeo est une filiale du groupe américain IAC (InterActiveCorp).", - "wikibooks":"Wikibooks est un projet de la Wikimedia Foundation lancé le 10 juillet 2003 pour créer un ensemble de manuels pratiques librement accessibles au moyen d'un wiki. Autrefois nommé Wikimedia Free Textbook Project, son nom officiel est Wikibooks en anglais. En français, le nom Wikilivres est parfois utilisé, mais le nom sur le logo est toujours en anglais.", - "wikinews":"Wikinews est un projet de la Wikimedia Foundation visant à établir une source d'informations libre qui résume des actualités et suit un point de vue neutre. Son contenu est librement distribuable selon les termes de la licence Creative Commons Attribution 2.5. Le nom du projet a pour origines la technologie utilisée et le terme anglais « news », qui se traduit par « actualités » ou « informations ». Son fonctionnement repose sur du journalisme collaboratif et citoyen.", - "wikiquote":"Wikiquote est un projet multilingue et collaboratif de recueil de citations en ligne. Soutenu et hébergé par la Wikimedia Foundation, son contenu est librement distribuable selon les termes de la licence Creative Commons CC-BY-SA.", - "wikisource":"Wikisource est un projet multilingue de bibliothèque numérique, soutenu par la Wikimedia Foundation, libre d'accès, sans publicité, librement distribuable, édifiée par des bénévoles qui s'appuient sur la technologie wiki. Le projet a été lancé le 24 novembre 2003 et fut tout d'abord nommé « Projet Sourceberg », avant d'être officiellement appelé « Wikisource » le 26 décembre 2003. Le projet existe en de nombreuses langues, dont 70 sont dotées de leur propre sous-domaine Internet.", - "wiktionary":"Le Wiktionnaire est un projet lexicographique de la Wikimedia Foundation dont l’objectif est de définir tous les mots dans toutes les langues. Il existe plus de 150 langues de rédaction. Le terme « Wiktionnaire » désigne la version en français de ce projet, Wiktionary étant le nom officiel en anglais. Il est fondé sur un système de wiki et son contenu est librement réutilisable.", - "wikiversity":"Wikiversité est un wiki multilingue et ouvert à tous, destiné à l'enseignement et à la recherche scientifique. Il se décrit lui-même comme une alternative libre à Kartable. Comme Wikipédia, il appartient à Wikimedia Foundation, Inc. et son contenu, librement améliorable, est protégé par la licence Creative Commons « Attribution - Partage dans les Mêmes Conditions ».", - "wikivoyage":"Wikivoyage est un guide touristique sur le Web, rédigé de manière participative par des auteurs bénévoles, et dont le contenu est sous licence libre. Le projet a été fondé en septembre 2006 par l'association allemande suprarégionale Wikivoyage e.V. par la création d'un fork de Wikitravel.", + "wikibooks":"Wikibooks est un environnement d'apprentissage personnel (EAP) multilingue, géré en wiki grâce au moteur MediaWiki. Il consiste en un ensemble de manuels pédagogiques et techniques. Comme Wikipédia, il appartient à Wikimedia Foundation, Inc. et son contenu, librement améliorable, est protégé par la licence Creative Commons « Attribution - Partage dans les Mêmes Conditions ». En français, le nom Wikilivres est parfois utilisé.", + "wikinews":"Wikinews est un site d'actualité multilingue, géré en wiki grâce au moteur MediaWiki. Comme Wikipédia, il appartient à Wikimedia Foundation, Inc. et son contenu, librement améliorable, est protégé par la licence Creative Commons « Attribution - Partage dans les Mêmes Conditions ».", + "wikiquote":"Wikiquote est un site multilingue proposant des recueils de citations, géré en wiki grâce au moteur MediaWiki. Comme Wikipédia, il appartient à Wikimedia Foundation, Inc. et son contenu, librement améliorable, est protégé par la licence Creative Commons « Attribution - Partage dans les Mêmes Conditions ».", + "wikisource":"Wikisource est une bibliothèque numérique de textes du domaine public, gérée en wiki grâce au moteur MediaWiki. Comme Wikipédia, elle appartient à Wikimedia Foundation, Inc.", + "wiktionary":"Le Wiktionnaire est un projet lexicographique de la Wikimedia Foundation dont l’objectif est de définir tous les mots de toutes les langues, dans toutes les langues. Il existe plus de 150 langues de rédaction. Le terme « Wiktionnaire » désigne la version en français de ce projet, Wiktionary étant le nom officiel en anglais. Il est géré en wiki dans le site web wiktionary.org et son contenu est librement réutilisable.", + "wikiversity":"Wikiversité est une communauté d'apprentissage et de recherche multilingue et ouverte à tous, gérée en wiki grâce au moteur MediaWiki. Comme Wikipédia, elle appartient à Wikimedia Foundation, Inc. et le contenu qu'elle produit, librement améliorable, est protégé par la licence Creative Commons « Attribution - Partage dans les Mêmes Conditions ».", + "wikivoyage":"Wikivoyage est un guide touristique multilingue, géré en wiki grâce au moteur MediaWiki. Depuis 2012, il appartient à Wikimedia Foundation, Inc. et son contenu, librement améliorable, est protégé par la licence Creative Commons « Attribution - Partage dans les Mêmes Conditions ».", "wolframalpha":"Wolfram|Alpha est un outil de calcul en langage naturel développé par la société internationale Wolfram Research. Il s'agit d'un service internet qui répond directement à la saisie de questions factuelles en anglais par le calcul de la réponse à partir d'une base de données, au lieu de procurer une liste de documents ou de pages web pouvant contenir la réponse. Son lancement a été annoncé en mars 2009 par le physicien et mathématicien britannique Stephen Wolfram et il a été lancé le 16 mai 2009 à 3 h du matin.", "seznam":"Seznam est un portail web et un moteur de recherche tchèque. Il a été lancé en 1996. En novembre 2020, c'est le troisième site le plus visité en République tchèque.", "naver":"Naver est une plateforme en ligne sud-coréenne gérée par la société Naver Corporation. Le site a été créé en 1999 en tant que premier portail Web en Corée à développer et utiliser son propre moteur de recherche. Il a également été le premier opérateur au monde à introduire la fonction de recherche intégrée, qui compile les résultats de recherche de différentes catégories et les présente sur une seule page. Depuis, Naver a ajouté une multitude de nouveaux services telles que le courrier électronique et les nouvelles, puis aussi la première plateforme de questions-réponses en ligne Knowledge iN.", "rubygems":"RubyGems est un gestionnaire de paquets pour le langage de programmation Ruby qui fournit un format standard pour la distribution de programmes et de bibliothèques Ruby. Il permet de gérer facilement l'installation de gemmes et d'un serveur pour les distribuer. Il a été créé par Chad Fowler, Jim Weirich, David Alan Black, Paul Brannan et Richard Kilmer lors de la RubyConf 2004.", "peertube":"PeerTube est un logiciel libre d'hébergement de vidéo décentralisé permettant la diffusion en pair à pair, et un média social sur lequel les utilisateurs peuvent envoyer, regarder, commenter, évaluer et partager des vidéos en streaming. Il est créé en 2015 et est développé depuis 2017 par Framasoft. Il fonctionne sur le principe d'une fédération d'instances hébergées par des entités autonomes. Son objectif est de fournir une alternative aux plateformes centralisées telles que YouTube, Vimeo et plus récemment Twitch avec l'ajout du support de la diffusion en direct.", - "wikimini":"Wikimini est une encyclopédie destinée aux enfants, accessible librement sur Internet. Elle a la particularité d'être écrite par des enfants et des adolescents. Son contenu s'adresse à de jeunes lecteurs de 8 à 13 ans environ et sa publication est faite sous les termes d'une licence libre, ce qui en facilite la diffusion et la réutilisation.", + "wikimini":"Wikimini est une encyclopédie en ligne écrite en grande partie par des enfants de 7 à 14 ans. Œuvre libre, elle est gérée en wiki grâce au moteur MediaWiki auquel a été ajoutée une interface plus colorée. Elle est écrite principalement en français, mais aussi en suédois.", "wttr.in":[ - "Prévisions météo pour: Washington, Virginia, United States", + "Prévisions météo pour: Des Moines, Iowa, United States", "https://wttr.in" ], "brave":"Le moteur de recherche Brave, également appelé Brave Search, est un moteur de recherche créé par Brave Software en 2021 pour devenir une alternative aux géants du Web.", @@ -2182,6 +2292,10 @@ "Novas procedentes de fontes de noticias mundiais, nacionais e locais, organizadas para ofrecerche unha cobertura en profundidade das novas relacionadas co deporte, o entretemento, os negocios, a política, o tempo e moito máis.", "https://www.bing.com/news" ], + "bing videos":[ + "A busca intelixente de Bing fai que sexa máis rápido e sinxelo atopar o que estás a buscar e concédeche premios.", + "https://www.bing.com/videos" + ], "currency":"DuckDuckGo e un buscador centrando relevancia da búsquea, e respectando a protección dos usuarios e privacidade. DuckDuckGo busca noutros sitios como Wikipedia é o principal Utiliza varias API doutros sitios web para mostrar resultados rápidos das consultas e para os enlaces tradicionais utiliza a axuda de sus socios e o seu propio rastreador.", "ddg definitions":[ "currency:gl", @@ -2218,6 +2332,7 @@ "Google Imaxes. A busca máis completa de imaxes na rede.", "https://images.google.com" ], + "google scholar":"Google Académico é un motor de busca de Google enfocado e especializado na busca de contido e bibliografía científico-académica. O sitio indexa editoriais, bibliotecas, repositorios, bases de datos bibliográficas, entre outros; e entre os seus resultados pódense atopar citas, ligazóns a libros, artigos de revistas científicas, comunicacións e congresos, informes científico-técnicos, teses, tesiñas e arquivos depositados en repositorios.​", "google play apps":"Google Play é unha plataforma de distribución dixital de aplicacións móbiles para os dispositivos con sistema operativo Android, así como unha tenda en liña desenvolvida e operada por Google. Esta plataforma permítelles aos usuarios navegar e descargar aplicacións, xogos, música, libros, revistas e películas. Tamén se poden adquirir dispositivos móbiles como ordenadores Chromebook, teléfonos intelixentes Nexus, Google Chromecast, entre outros.", "google play movies":[ "google play apps:gl", @@ -2265,6 +2380,10 @@ "חדשות ממקורות חדשותיים עולמיים, לאומיים ומקומיים, מאורגנים כדי לספק לך כיסוי חדשותי מעמיק של ספורט, בידור, עסקים, פוליטיקה, מזג אוויר ועוד.", "https://www.bing.com/news" ], + "bing videos":[ + "עם החיפוש החכם של Bing תוכל למצוא את מה שאתה מחפש ביתר קלות ומהירות ולקבל פרסים.", + "https://www.bing.com/videos" + ], "currency":"דקדקגו הוא מנוע חיפוש שמדגיש את הגנת פרטיות המשתמש ונמנע מיצירת \"בועת פילטר\" שמנחשת את אופי החיפושים הרלוונטיים למשתמש. דקדקגו נבדל ממנועי חיפוש אחרים בכך שהוא לא מתחקה אחר תוצאות המשתמשים, כמו גם, מאחזר את אותן תוצאות לכל המשתמשים שחיפשו מושג זהה ואינו נותן תוקף לשיקולים זרים בתוצאות החיפוש. יתרה מכך, דקדקגו מעדיף לאחזר מידע ממעט מקורות מידע איכותיים מאשר מהרבה מקורות מידע שאינם איכותיים. תוצאות החיפוש של דקדקגו הן קומפילציה של \"בערך 50\" מקורות מידע (duck.co). בין היתר, הוא מאחזר מידע מאתרי \"מיקור המונים\" כמו ויקיפדיה, ממנועי חיפוש אחרים כמו: Yandex, Yahoo!, Bing ו-Yummly ומזחלן הרשת שלו עצמו, דקדקבוט.", "deezer":"דיזר הוא שירות הזרמת מוזיקה מבוסס אינטרנט. השירות מאפשר למשתמשים להאזין לתכנים מוזיקליים המפורסמים תחת חברות תקליטים שונות, ביניהן EMI, סוני, וורנר מיוזיק גרופ ויוניברסל מיוזיק גרופ, על מכשירים שונים באופן מקוון או לא מקוון. דיזר נוצר בפריז, צרפת על ידי דניאל מרלי בשנת 2007. השירות פועל בכ-185 מדינות ומחזיק ברישיון להזרמת כ-90 מיליון שירים בספרייתו. השירות מספק מעל ל-30,000 ערוצי רדיו, ורשומים אליו כ-20 מיליון משתמשים פעילים חודשיים, וכ-9 מיליון מנויים בתשלום, נכון לאפריל 2022. השירות, בנוסף לאתר האינטרנט, זמין עבור אנדרואיד, Kindle Fire HDX HDX, OS X, בלקברי, iOS, Windows Phone וסימביאן.", "deviantart":"דיוויינטארט הוא שירות קהילתי לשיתוף תמונות ויצירות אומנות באינטרנט. החברה הוקמה ב-7 באוגוסט 2000. מטה החברה נמצא באזור הוליווד שבלוס אנג'לס, קליפורניה, ארצות הברית. בפברואר 2017 החברה נרכשה על ידי החברה הישראלית \"Wix\" תמורת 36 מיליון דולר.", @@ -2292,17 +2411,17 @@ "wikidata" ], "flickr":"פליקר הוא אתר אינטרנט המעניק שירות שיתוף תמונות בסגנון web 2.0. האתר היה בבעלות חברת האינטרנט ובעלת הפורטל \"Yahoo!‎\"; הוא נרכש על ידה בשנת 2005 מחברת לודיקורפ (Ludicorp), שיצרה אותו ב-2004. בשנת 2018 נמכר האתר לחברת SmugMug. מייסדי לודיקורפ, סטוארט בטרפילד ואשתו קתרינה פייק, נשארו לעבוד עם יאהו עד 2008, אז פרשו.", - "genius":"Genius הוא מאגר מידע מקוון בתחום המדיה, שהוקם באוקטובר 2009 על ידי מהבוד מוגדם, טום ליהמן ואילן זקורי. האתר מאפשר למשתמשים לספק הסברים ופרשנויות לשירים, לסיפורים, למקורות, לשירה ולמסמכים.", + "genius":"Genius הוא מאגר מידע מקוון בתחום המדיה, שהוקם באוקטובר 2009 על ידי מהבוד מוגדם, טום ליהמן ואילן זקורי. האתר מאפשר למשתמשים לספק מילים, הסברים ופרשנויות לשירים, לסיפורים, למקורות, לשירה ולמסמכים.", "gentoo":[ "gentoo:ru", "ref" ], - "github":"GitHub הוא שירות ניהול גרסאות ושירות אחסון, מבוסס רשת, עבור מיזמי פיתוח תוכנה, שבהם משתמשים במערכת גיט. GitHub מספק שירות זה בתשלום למאגרים פרטיים ושירות חינמי למיזמי קוד פתוח. במאי 2011 הוכר GitHub כשירות אחסון הקוד הפופולרי ביותר למיזמי קוד פתוח.", + "github":"GitHub הוא שירות ניהול גרסאות ושירות אחסון, מבוסס רשת, עבור מיזמי פיתוח תוכנה, שבהם משתמשים במערכת גיט. GitHub סיפקה בעבר שירות זה בתשלום למאגרים פרטיים ושירות חינמי למיזמי קוד פתוח. עם זאת, ב-14 באפריל 2020, פתחה החברה את כלל שירותי הליבה שלה לציבור הרחב בחינם.", "google":"גוגל (Google) הוא מנוע חיפוש, הנמצא בבעלות חברת Google. זהו מנוע החיפוש הפופולרי ביותר באינטרנט ואתר האינטרנט הגדול בעולם. מדי יום הוא זוכה למאות מיליוני מבקרים השולחים אליו כ־3 מיליארדי בקשות למציאת תוכן באתרי אינטרנט. המנוע פותח במקור על ידי לארי פייג' וסרגיי ברין במכון הטכנולוגי של מסצ'וסטס בשנת 1997 ומשמש כדף הבית של חברת \"גוגל\".", "google images":"גוגל תמונות הוא שירות של ממשק חיפוש מבית חברת גוגל, לחיפוש תמונות באינטרנט. השירות מבוסס גם על מילים הכתובות סביב התמונה, שם הקובץ וכדומה וגם על \"הבנת תוכן התמונה\". המנוע משולב עם מנוע החיפוש העיקרי של החברה.", "google news":"גוגל חדשות או Google News, הוא אלגוריתם צובר חדשות המציג חדשות באתר של חברת גוגל. שפותח על ידי קרישנה בהרט בשנת 2001 בגרסת הבטא. בינואר 2006 הוציאו גוגל את גוגל חדשות בגרסה המלאה, השירות כולל את החדשות משלושים הימים האחרונים.", "google videos":"גוגל וידאו הוא מנוע חיפוש מבית גוגל, לחיפוש סרטון וידאו באינטרנט. המנוע משולב עם מנוע החיפוש העיקרי של החברה. השירות הושק ב-25 בינואר 2005. ב-9 באוקטובר 2006 גוגל רכשה את המתחרה Youtube", - "google scholar":"גוגל סְקוֹלַר הוא מנוע חיפוש מקוון מבית היוצר של גוגל, הממפתח את הטקסט המלא של ספרות מחקרית ממגוון רחב של הוצאות ובמקצועות שונים.", + "google scholar":"גוגל סְקוֹלַר הוא מנוע חיפוש מקוון מבית היוצר של גוגל, הממפתח את הטקסט המלא של מאמרים, דוחות טכניים, דו\"חות לפני הדפסה, תזות, ספרים, ומסמכים אחרים ממגוון רחב של הוצאות ובמקצועות שונים.", "google play apps":"גוגל פליי, בעבר Android Market, הוא שירות הפצה דיגיטלית של גוגל, הכולל חנות מקוונת ליישומי (\"אפליקציות\") אנדרואיד, משחקי וידאו, מוזיקה, סרטים, סדרות, ספרים וכן נגן מדיה באמצעות ענן. גוגל פליי הוצג לראשונה ב-3 במרץ 2012 כאיחוד ומיתוג מחודש של השירותים שקדמו לו, אנדרואיד מרקט ו-Google Music.", "google play movies":[ "google play apps:he", @@ -2316,7 +2435,7 @@ "openstreetmap":"OpenStreetMap הוא מיזם שיתופי ליצירת מפה חופשית של כדור הארץ. המפה נוצרת בעזרת נתונים ממכשירי GPS ניידים, תצלומי אוויר ומקורות חופשיים אחרים. גם קובצי התמונה של המפה וגם המידע הווקטורי, זמינים להורדה ולשימוש לפי רישיון \"קריאטיב קומונס - שיתוף ברישיון זהה 2.0\". משתמשים רשומים יכולים להעלות רשימות מסלולי GPS, וכן לערוך את המידע הווקטורי בעזרת כלי העריכה של המיזם. ההשראה ל-OpenStreetMap הייתה אתרי אינטרנט כגון ויקיפדיה - לצד המפה מוצגת באופן בולט לשונית \"ערוך\", ונשמרת היסטוריה מלאה של הגרסאות השונות.", "piratebay":"The Pirate Bay הוא אתר אינטרנט לשיתוף קבצים שהוקם בשוודיה ב-2003 ומאפשר למשתמשים שלו לחפש, להוריד ולתרום קישורי מגנט וקובצי טורנט, ושיתוף קבצים עמית לעמית בין משתמשי פרוטוקול ביטורנט.", "reddit":"Reddit (רדיט) הוא אתר מדיה חברתית מסוג מערכת לוח מודעות מקוונת אשר משתמשים הרשומים אליו יכולים לשתף תכנים, כגון טקסטים או קישורים בכל נושא אפשרי וללא הגבלה והפרסומים הזוכים לדירוג גבוה יותר מופיעים בראשו, בתצוגה מתחלפת שמשאירה מקום לפוסטים חדשים שטרם זכו למידת פרסום משמעותית.", - "soundcloud":"SoundCloud היא פלטפורמה מקוונת להפצת אודיו. לאתר ישנו גם בלוג, ערוצי שידור וקבוצות. החברה הוקמה בשנת 2007 ואתר האינטרנט שלה הוקם ב-7 באוקטובר 2008. מנהלי החברה הם אלכסנדר ליונג ואריק וואלפורס. באתר מועלים שירים, הרצאות, פודקאסטים, ושידורים חיים.", + "soundcloud":"סאונדקלאוד היא פלטפורמה מקוונת להפצת אודיו. לאתר ישנו גם בלוג, ערוצי שידור וקבוצות. החברה הוקמה בשנת 2007 ואתר האינטרנט שלה הוקם ב-7 באוקטובר 2008. מנהלי החברה הם אלכסנדר ליונג ואריק וואלפורס. באתר מועלים שירים, הרצאות, פודקאסטים, ושידורים חיים.", "youtube":"יוּטְיוּבּ היא חברה אמריקאית המפעילה אתר אינטרנט לאחסון ושיתוף סרטוני וידאו באותו שם. החברה נוסדה בפברואר 2005, על ידי שלושה עובדים לשעבר של חברת PayPal: צ'אד הארלי, סטיב צ'ן וג'אווד כרים. בנובמבר 2006, רכשה גוגל את החברה תמורת 1.65 מיליארד דולר; מאז, פועלת יוטיוב כאחת מחברות הבת של גוגל.", "dailymotion":"Dailymotion הוא פלטפורמה אינטרנטית לשיתוף וידאו בבעלות חברת Vivendi. האתר נוסד ב-2005 ובדומה לפלטפורמות דומות כיוטיוב ו-vimeo, מאפשר לגולשיו להעלות, לשתף ולצפות בסרטוני וידאו.", "vimeo":"Vimeo הוא אתר אינטרנט לשיתוף וידאו, ומשתמשיו יכולים להעלות, לשתף ולצפות בתכנים בו. שרתי האתר נמצאים בארצות הברית.", @@ -2332,7 +2451,11 @@ "אתר אינטרנט המשמש כמנוע חיפוש לקובצי טורנט ממגוון סוגים.", "wikidata" ], - "rumble":"ראמבל היא פלטפורמת וידאו מקוונת קנדית, שנוסדה בשנת 2013. האתר הוקם על ידי כריס פבלובסקי, יזם טכנולוגי קנדי. האתר פופולרי בקרב יוצרי תוכן שמרניים." + "rumble":"ראמבל היא פלטפורמת וידאו מקוונת קנדית, שנוסדה בשנת 2013. האתר הוקם על ידי כריס פבלובסקי, יזם טכנולוגי קנדי. האתר פופולרי בקרב יוצרי תוכן שמרניים.", + "wttr.in":[ + "Des Moines, Iowa, United States :ריוואה גזמ תיזחת", + "https://wttr.in" + ] }, "hr":{ "9gag":"9GAG je web stranica za zabavu temeljena na slikama kojima su autori korisnici te slikama pronađenima na sličnim stranicama, a koje su zbog svoje komičnosti prozvane gegovima. Stranica je u prosincu 2011. imala milijardu mjesečnih pregleda stranice.", @@ -2346,6 +2469,10 @@ "Novosti iz svjetskih, nacionalnih i lokalnih izvora, organizirane tako da pružaju podrobne informacije o sportu, zabavi, poslovnim temama, politici, vremenu i drugim temama.", "https://www.bing.com/news" ], + "bing videos":[ + "Pametno pretraživanje u tražilici Bing olakšava brzo pretraživanje onog što tražite i nagrađuje vas.", + "https://www.bing.com/videos" + ], "currency":"DuckDuckGo je mrežna tražilica čije se djelovanje temelji na proširenju korisnikove privatnosti izbjegavanjem osobnog pretraživanja i prikupljanja osobnih podataka korisnika na temelju rezultata njihova istraživanja u svrhu prosljeđivanja tih podataka oglašivačima, kao u slučaju većih pretraživača. Prilikom slaganja rezultata koristi se metodom nabave iz mnoštva (crowdsourcinga), prikupljajući i stvarajući baze podataka više na temelju kakvoće stranice nego li na posjećenosti.", "deezer":"Deezer je mrežna usluga za prenošenje glazbenih sadržaja koja korisnicima dopušta slušanje glazbe mrežno ili izvanmrežno te stvaranje i dijeljenje popisa pjesama. Stvoren u Parizu, 2007., Deezer trenutno raspolaže s 56 milijuna licenciranih snimki u svom katalogu, iz svih glazbenih žanrova. Na usluzi je dostupno i preko 30.000 radijskih postaja.", "ddg definitions":[ @@ -2403,7 +2530,7 @@ "wolframalpha":"Wolfram Alpha je znanstvena tražilica razvijena od strane kompanije Wolfram Research. Alpha ne radi poput klasičnih tražilica tipa Google, već pomoću ugrađenih algoritama pokušava odgovoriti na vaš upit odnosno pitanje. Alpha ne daje rezultate poput prijašnjih tražilica već ih povezuje s poznatim stvarima i zapravo izračunava rezulatate koristeći se bazom algoritama i snagom tisuća procesora koji se nalaze u Dell centrima. Djelo je čovjeka po imenu Stephen Wolfram. Javnosti je predstavljena 15. 5. 2009." }, "hu":{ - "9gag":"A 9GAG egy hongkongi székhelyű online platform és közösségimédia-webhely, amely lehetővé teszi a felhasználók számára, hogy külső közösségi oldalakról töltsenek fel és osszák meg a felhasználók által generált vagy más tartalmakat. Az internetes mémgyűjtemények platformjának számító weboldal 2008. április 11-i elindulása óta folyamatos nőtt a népszerűsége a közösségi médiában, például a Facebookon, a Twitteren és az Instagramon.", + "9gag":"A 9GAG egy hongkongi székhelyű online platform és közösségimédia-webhely, amely lehetővé teszi a felhasználók számára, hogy külső közösségi oldalakról töltsenek fel és osszák meg a felhasználók által generált vagy más tartalmakat. Az internetes mémgyűjtemények platformjának számító weboldal 2008. április 11-i elindulása óta folyamatosan nőtt a népszerűsége a közösségi médiában, például a Facebookon, a Twitteren és az Instagramon.", "apple app store":"Az App Store egy online, alkalmazásokat árusító bolt, melyet az Apple fejlesztett ki az iOS rendszerű eszközökre. A legtöbb alkalmazás (=app) fizetős, de vannak közöttük ingyenesek is. Az App Store biztosítja a felhasználóknak, hogy az alkalmazások között böngészhetnek, és letölthetik azokat az iTunes Store-ból. Az appok közvetlenül az erre alkalmas eszközökre, illetve OS X-re vagy Windows-ra az iTunes-on keresztül tölthetőek le.", "archive is":"Az archive.today egy 2012-ben alapított webarchiváló oldal, mely kérés alapján snapshotot készít többek között olyan weboldalakról is, mint a Javascripttel hevesen megtámogatott Google Maps vagy a Twitterhez hasonló progresszív webes alkalmazásokról. Az archive.today lát snapshotot készít. Az egyik minden funkcionális élő linket magában foglal, a másik pedig a weboldalról készített képernyőkép.", "bandcamp":"A Bandcamp egy 2007-ben alapított online zenebolt. A szolgáltatás 2008-ban indult azzal a céllal, hogy független zenészeknek biztosítson helyet, ahol terjeszthetik zenéiket. A művészek rendelkezésére áll egy személyre szabható mikroweboldal, ahová feltölthetik zenéiket. A számok meghallgatása díjmentes, a letölthető tartalmak zenésztől függően lehetnek ingyenesek vagy fizetősek. Néhány esetben a vásárló több pénzt is adhat, mint amennyit a feltöltő szabott ki. A Bandcamp a weboldalon bonyolított tranzakciók egy részéből fedezi a bevételét.", @@ -2417,6 +2544,10 @@ "Hírek nemzetközi, országos és helyi hírforrásokból, amelyek részletes információt nyújtanak Önnek a sporttal, szórakozással, üzleti élettel, politikával, időjárással és egyéb témákkal kapcsolatban.", "https://www.bing.com/news" ], + "bing videos":[ + "A Bing intelligens keresésével gyorsan megtalálhat bármit, amit keres, és még jutalmakban is részesülhet.", + "https://www.bing.com/videos" + ], "currency":"A DuckDuckGo egy internetes kereső, mely fontosnak tartja a felhasználók személyes adatainak a védelmét, illetve kerüli a személyre szabott keresési eredményeket. A DuckDuckGo abban különbözik a többi keresőeszköztől, hogy nem kategorizálja a felhasználóit, hanem ugyanarra a kifejezésre valamennyi felhasználójának ugyanazokat a találatokat jeleníti meg. A DuckDuckGo kihangsúlyozza, hogy az információkat a legjobb forrásokból szerzi, így a találatait a főbb közösségi fejlesztésű oldalakról, például a Wikipédiáról szerzi, illetve együttműködik más keresőeszközökkel, mint például a Yandex, Yahoo!, Bing és Yummly.", "deezer":"A Deezer egy 2007 óta létező francia zenei stream szolgáltató internetes vállalkozás. Netrádióként működik, de emellett előfizetési díj ellenében online musicboxként is. A díjat vállalók lejátszási listákat, vagy szóló darabokat tölthetnek le. Fájlok fel is tölthetők egy saját zenetárba. A Deezer mintegy 73 millió számot, köztük magyar felvételeket is tartalmaz.", "deviantart":"A deviantART (dA) egy nemzetközi, internetes művészeti publikációs helyként, ismeretségi hálózatként és webshopként egyszerre működő honlap, az egyik legnagyobb online alkotóközösség. 2000. augusztus 7-én indította útjára Scott Jarkoff, Angelo Sotira, Matthew Stepens és még sokan mások. Tulajdonosa a deviantART, Inc.", @@ -2474,7 +2605,12 @@ "wiktionary":"A Wikiszótár a Wikipédia testvéroldala, melynek célja szabad szótár készítése minden nyelvre. Ötletgazdája Daniel Alston. 2002. december 12-én indult. A Wikiszótár magyar változata, a magyar Wikiszótár 2004. május 2-án indult.", "wikiversity":"A Wikiegyetem egy Wikimédia Alapítvány projekt, amely tanuló közösségeket és a tananyagaikat támogatja.", "wikivoyage":"A Wikivoyage a Wikimédia Alapítvány ingyenes internetes útikönyve. A neve a Wiki és a francia voyage szóból áll. Az új wikiprojekt 2013. január 15-én, a Wikipédia alapításának 12. évfordulója évében, napra a születésnapján startolt. 24 nyelven érhető el: angolul, németül, hollandul, oroszul, svédül, olaszul, portugálul, franciául, spanyolul, kínaiul, finnül, görögül, héberül, perzsául, lengyelül, románul, ukránul, vietnámiul, törökül, japánul, hindiül, pastuul, bengáliul és eszperantóul.", - "naver":"A Naver dél-koreai internetes portál és keresőmotor, melyet 1999-ben hozott létre egy korábbi Samsung-alkalmazott. A Naver saját keresőmotort fejlesztett, ami kifejezetten koreai nyelvű tartalomra specializálódik. 2009-ben a keresőmotorok között az ötödik helyen szerepelt a világon, a Google, a Yahoo!, a Baidu és a Microsoft után. A Naver a koreai piac domináns keresője, a keresések mintegy 70%-át itt bonyolítják és mintegy 25 millió felhasználónak ez a kezdőoldala a böngészőben. A Woori Investment and Securities elemzése szerint a Google-nek azért nem sikerült megvetnie a lábát a koreai piacon a Naverrel szemben, mert túl kevés koreai nyelvű tartalmat szolgáltat." + "naver":"A Naver dél-koreai internetes portál és keresőmotor, melyet 1999-ben hozott létre egy korábbi Samsung-alkalmazott. A Naver saját keresőmotort fejlesztett, ami kifejezetten koreai nyelvű tartalomra specializálódik. 2009-ben a keresőmotorok között az ötödik helyen szerepelt a világon, a Google, a Yahoo!, a Baidu és a Microsoft után. A Naver a koreai piac domináns keresője, a keresések mintegy 70%-át itt bonyolítják és mintegy 25 millió felhasználónak ez a kezdőoldala a böngészőben. A Woori Investment and Securities elemzése szerint a Google-nek azért nem sikerült megvetnie a lábát a koreai piacon a Naverrel szemben, mert túl kevés koreai nyelvű tartalmat szolgáltat.", + "wttr.in":[ + "Időjárás előrejelzés: Des Moines, Iowa, United States", + "https://wttr.in" + ], + "goo":"A goo egy japán internetes keresőmotor és webportál, amely összegyűjti és indexeli a japán nyelvű weboldalakat. A goot a japán NTT Resonant, az NTT Communications egyik leányvállalata működteti." }, "ia":{ "wikipedia":"Wikipedia [wikipeˈdia] es un projecto de Wikimedia sin scopo lucrative fundate le 15 de januario 2001 pro crear un encyclopedia in numerose linguas in le Internet per redaction collaborative utilisante un si appelate principio wiki. Secundo le demanda e le distribution public, Wikipedia es ora un del medias de massa.", @@ -2506,6 +2642,10 @@ "Berita dari sumber berita dunia, nasional, dan lokal, diatur untuk memberikan Anda liputan berita mendalam tentang olahraga, hiburan, bisnis, politik, cuaca, dan lainnya.", "https://www.bing.com/news" ], + "bing videos":[ + "Carian pintar dari Bing memudahkan anda untuk menemui dengan segera apa yang anda cari dan memberi ganjaran kepada anda.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket adalah sebuah layanan hosting yang berbasis web untuk kode sumber dan pembangunan proyek yang menggunakan Mercurial ataupun sistem kendali versi Git yang dimiliki oleh Atlassian. Bitbucket menawarkan paket akun komersial dan gratis. Akun gratis tersebut menawarkan sebuah layanan repositori dengan jumlah yang tidak terbatas sejak bulan September 2010. Bitbucket terintegrasi dengan perangkat lunak Atlassian lain seperti Jira, HipChat, Confluence dan Bamboo.", "crossref":"Secara etimologis, CrossRef berasal dari kata \"cross\" dan “reference\". Oleh karena itu, Rujukan silang/CrossRef bisa didefinisikan sebagai pembanding dari dua atau lebih sumber informasi. CrossRefadalah lembaga pendaftaran Digital Object Identifier (DOI)resmi yang dikeluarkan pada tahun 2000 sebagai kerja sama antar penerbit untuk membuat sebuah linking referensi lintas penerbit pada jurnal ''online''. CrossRef merupakan implementasi paling kuat dari model DOI. Sekarang, CrossRef telah memiliki jutaan interlink dengan beragam item termasuk jurnal, buku, laporan, hingga data set. Ini adalah sistem yang dipakai secara universal di Eropa dalam industri penerbitan jurnal ilmiah. Tujuan dari CrossRef adalah untuk memfasilitasi kreasi jaringan dari referensi pada jurnal online ke artikel halaman.", "curlie":"Proyek Direktori Terbuka, dikenal dengan nama Dmoz adalah sebuah direktori konten terbuka multibahasa dari World Wide Web, direktori ini dimiliki oleh AOL, tetapi disusun dan dirawat oleh sekumpulan editor sukarela dari sebuah komunitas maya. Direktori ODP tidak mencari keuntungan dalam mendaftarkan situs-situs web yang dikirimkan. ODP menggunakan skema hierarkis ontologi untuk mengatur daftar situs-situs web dalam direktorinya. Daftar situs-situs web dalam direktori ODP yang memiliki topik serupa dikelompokkan ke dalam sebuah kategori, yang dapat mencakup kategori yang lebih kecil.", @@ -2516,7 +2656,7 @@ "currency:id", "ref" ], - "wikidata":"Wikidata Wikidata adalah Wiki multibahasa yang diedit secara kolaboratif, yang diselenggarakan oleh Yayasan Wikimedia. Situs ini adalah sumber untuk menyimpan data terbuka proyek Wikimedia seperti Wikipedia, dan siapa pun di bawah lisensi domain publik CC0. Wikidata adalah wiki yang didukung oleh perangkat lunak MediaWiki, dan juga didukung oleh kumpulan grafik pengetahuan ekstensi MediaWiki yang dikenal sebagai Wikibase.", + "wikidata":"Wikidata adalah Wiki multibahasa yang diedit secara kolaboratif, yang diselenggarakan oleh Yayasan Wikimedia. Situs ini adalah sumber untuk menyimpan data terbuka proyek Wikimedia seperti Wikipedia, dan siapa pun di bawah lisensi domain publik CC0. Wikidata adalah wiki yang didukung oleh perangkat lunak MediaWiki, dan juga didukung oleh kumpulan grafik pengetahuan ekstensi MediaWiki yang dikenal sebagai Wiki.", "duckduckgo":[ "currency:id", "ref" @@ -2685,7 +2825,7 @@ "wikidata" ], "kickass":"KickassTorrents è stato un sito web, fondato nel 2008, che ospitava file torrent e magnet link per facilitare il file sharing peer-to-peer con il protocollo BitTorrent. All'agosto 2015, secondo Alexa, KAT è l'indice di file torrent più visitato al mondo e si stima riceva ogni mese più di 319 milioni di accessi. Il 20 luglio 2016 il sito è stato sequestrato dal governo degli Stati Uniti, successivamente chiuso e l'autore del sito è stato arrestato.", - "library genesis":"Library Genesis o LibGen è un motore di ricerca di articoli e libri su vari argomenti, che consente l'accesso illegale gratuito a contenuti normalmente a pagamento o non digitalizzati altrove. Tra gli altri, veicola contenuti in formato PDF dal portale web di Elsevier di ScienceDirect.", + "library genesis":"Library Genesis o LibGen è un motore di ricerca di articoli e libri su vari argomenti, che consente l'accesso gratuito a contenuti normalmente a pagamento o non digitalizzati altrove. Tra gli altri, veicola contenuti in formato PDF dal portale web di Elsevier di ScienceDirect.", "library of congress":"La Biblioteca del Congresso, nota con gli acronimi LOC o Loc, è di fatto la biblioteca nazionale degli Stati Uniti d'America. Grazie agli oltre 158 milioni di documenti in essa custoditi è la più grande biblioteca al mondo.", "metacpan":"CPAN è la sigla di Comprehensive Perl Archive Network, ed è l'archivio pubblico dei moduli, packages e applicazioni scritte in Perl e pubblicate con licenze libere. È basato sul modello di CTAN.", "mixcloud":"Mixcloud è un servizio musicale di streaming via internet che permette l'ascolto e la distribuzione di spettacoli radiofonici, mix di disc jockey e podcast, che sono caricati dai suoi utenti registrati.", @@ -2745,7 +2885,8 @@ "wikimini":[ "enciclopedia online per ragazzi", "wikidata" - ] + ], + "goo":"goo è un portale web e motore di ricerca internet con sede in Giappone, che esegue la scansione e l'indicizzazione principalmente siti web in lingua giapponese. goo è gestito dalla giapponese NTT Resonant, controllata dalla NTT Communications." }, "ja":{ "apple app store":"App Store(アップストア)は、Appleが運営するiPhone、iPod touch、iPad向けアプリケーションのダウンロードサービスである。Mac OS X 10.6.6以降を搭載したMacにも類似のサービスがあるが、こちらは Mac App Store を参考のこと。", @@ -2766,6 +2907,10 @@ "世界、国内、地方のニュース ソースから、スポーツ、エンターテイメント、ビジネス、政治、お天気情報など、さまざまな分野の詳細なニュースを整理してお届けします。", "https://www.bing.com/news" ], + "bing videos":[ + "Bing のインテリジェント検索機能により、探しているものをより簡単にすばやく見つけられるようになり、リワードも得られます。", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket は、Mercurial(2020年6月1日までのリリース)またはGit(2011年10月以降)リビジョン管理システムを使用するソースコードおよび開発プロジェクト向けに、アトラシアンが運営するWeb ベースのバージョン管理リポジトリホスティングサービスである。商用プランと無料アカウントの両方を提供している。2019年2月現在、プライベートリポジトリを無制限に持てる無料アカウントを提供している。ユーザーがプライベートリポジトリしか持っていない場合でも、プライベートリポジトリはプロファイルページに表示されず、ウェブサイト上には\"このユーザーはリポジトリを持っていません\"と表示される。このサービスはDjangoフレームワークを用いてPythonで書かれている。", "currency":"DuckDuckGo(ダックダックゴー)は、インターネット検索エンジンである。利用者のプライバシーの保護と利用履歴等を記録保存しないことを運営方針としている。VivaldiやTor Browserの標準検索エンジンにも採用されている。また、DuckDuckGoは検索結果のパーソナライズを行わないため「フィルターバブル」に陥らない(DuckDuckGoはGoogleのフィルターバブル問題についてブログで指摘している)。", "deezer":"Deezer (ディーザー) は、フランスの音楽配信サービスである。", @@ -2829,7 +2974,7 @@ "ref" ], "startpage":"Startpage とはニューヨークとオランダを拠点にしているメタ検索エンジンで、1998年にデビッド・ボドニックが設立し2000年にオランダのサーフボード・ホールディングBVが買収した。2015年2月2日にIxquickと姉妹プロジェクトのStartpage.comは(28日平均で)1日直接クエリ数が5,700万に達したとしている。", - "youtube":"YouTube(ユーチューブ)は、アメリカ合衆国カリフォルニア州サンブルーノに本社を置くオンライン動画共有プラットフォームである。2005年2月にPayPalの元従業員であるチャド・ハーリー、スティーブ・チェン、ジョード・カリムの3人によって設立されたこのサービスは、2006年11月に16.5億米ドルでGoogleに買収され、現在は同社の子会社の1つとして運営されている。YouTubeは、アレクサ・インターネットランキングによると、Google 検索に次いで2番目にアクセス数の多いウェブサイトである。", + "youtube":"YouTube(ユーチューブ)は、アメリカ合衆国カリフォルニア州サンブルーノに本社を置くオンライン動画共有プラットフォーム。アクティブユーザー数は、2022年1月時点で25億6,200万人(うち定額制サービス契約者数は8000万人以上)であり、SNSとしては世界第2位。2005年2月にPayPalの元従業員であるチャド・ハーリー、スティーブ・チェン、ジョード・カリムの3人によって設立された。その後、2006年11月に16.5億米ドルでGoogleに買収され、現在は同社の子会社の1つとして運営されている。アレクサ・インターネットランキングによると、Google 検索に次いで2番目にアクセス数の多いウェブサイトである。", "dailymotion":"Dailymotion(デイリーモーション)は、Vivendi S.A.傘下のDAILYMOTION SAが運営する、フランスの動画共有サービス。", "vimeo":"Vimeo は、クリエイター向け動画共有サイト。「video」(ビデオ)と「me」(私)の意味と、「movie」(映画)という言葉のアナグラムである。", "wikisource":"ウィキソース (Wikisource) は、ウィキメディア財団が運営するウィキを利用した自由に利用できるテキストを集めた電子図書館である。ウィキソースはプロジェクトの名前でもあり、またプロジェクトのインスタンス(実体)である個々のサイト(主に各言語版)もウィキソースと呼ばれ、複数のウィキソースが集まって大きなウィキソースプロジェクトを形成している。ウィキソースの目的はあらゆる形態のフリーテキストを、多数の言語および翻訳においても提供することである。元々は有用または重要な歴史的文書を保存するアーカイブとして着想され、今では幅広いコンテンツを扱うライブラリとなっている。", @@ -2838,7 +2983,8 @@ "naver":"ネイバー は、ネイバー株式会社が運営する、大韓民国(韓国)の最大手ポータルサイトである。", "rubygems":"RubyGemsは、Ruby言語用のパッケージ管理システムであり、Rubyのプログラムと ライブラリの配布用標準フォーマットを提供している。gemを容易に管理でき、gemを配布するサーバの機能も持つ。Rubyバージョン1.9以降では標準ライブラリの一部となっている。", "peertube":"PeerTube は、フリーかつオープンソースの分散型動画共有プラットフォームである。ActivityPubとWebTorrentを利用して構築されており、P2P技術を使用することによって動画を閲覧する際の各サーバーの負荷を軽減している。", - "brave":"Brave Searchは、Brave Software, Inc. により開発されている検索エンジンであり、特定の国でBraveブラウザのデフォルト検索エンジンとして設定されている。" + "brave":"Brave Searchは、Brave Software, Inc. により開発されている検索エンジンであり、特定の国でBraveブラウザのデフォルト検索エンジンとして設定されている。", + "goo":"goo(グー)は、NTTレゾナントが運営するポータルサイトである。名称は「global network が無限大(∞)に拡大し続ける」ことに由来する。アレクサランキングでの順位は、2020年12月10日時点で世界594位、日本国内45位。マスコットキャラクターは、メグたん。" }, "ko":{ "9gag":"9GAG는 홍콩의 이미지 기반 소셜 미디어 사이트이다. 2011년 12월 기준 월 페이지뷰가 10억 건을 넘었다. 인터넷에 유행하는 이미지가 주로 올라오는 것으로 알려져 있다. 레딧과 같은 다른 비슷한 사이트와 마찬가지로 게시글에 덧글과 추천을 할 수 있다.", @@ -2850,7 +2996,7 @@ "artic":"시카고 미술관(The Art Institute of Chicago)은 미국 일리노이주 시카고의 미술관이다. 뉴욕의 메트로폴리탄 미술관, 보스턴의 보스턴 미술관과 함께 미국의 3대 미술관의 하나로 손꼽힌다. 대한민국에서는 ‘시카고 현대 미술관’ 또는 시카고 미술 연구소이라고도 불린다.", "arxiv":"arXiv(아카이브)는 수학, 물리학, 천문학, 전산 과학, 계량 생물학, 통계학 분야의 출판 전(preprint) 논문을 수집하는 웹사이트이다. 수학, 물리학, 천문학 분야의 논문은 거의 모두 이곳에서 찾을 수 있다. 2008년 10월 3일, arXiv.org는 문서 수가 50만 개를 넘겼다. 매달 약 5천편의 새로운 전자 문서(e-print)가 게시되고 있다.", "bandcamp":"밴드캠프(Bandcamp)는 미국에 위치한 인터넷 전문 음악 회사이다. 2008년 이단 다이아몬드, 숀 그룬베르거, 조 홀트와 닐 터커가 공동설립했으며 본사는 캘리포니아주 오클랜드에 위치해있다.", - "wikipedia":"위키백과(-百科, IPA: [ɥikçibɛ̝k̚k͈wa̠], [ykçibɛ̝k̚k͈wa̠] ) 또는 위키피디아(영어: Wikipedia, IPA: [ˌwɪkɪˈpiːdɪə] )는 누구나 자유롭게 쓸 수 있는 다언어판 인터넷 백과사전이다. 2001년 1월 15일 지미 웨일스와 래리 생어가 창립하였으며, 대표적인 집단 지성의 사례로 평가받고 있다.", + "wikipedia":"위키백과(-百科, IPA: [ɥikçibɛ̝k̚k͈wa̠], [ykçibɛ̝k̚k͈wa̠] ) 또는 위키피디아(영어: Wikipedia, IPA: [ˌwɪkɪˈpiːdɪə] )는 누구나 자유롭게 쓸 수 있는 다언어판 인터넷 백과사전이다. 개방된 협업을 통해 위키 기반 편집 시스템을 사용하여 자발적인 위키백과 사용자 공동체가 작성하고 관리하고 있다. 위키백과는 대표적인 집단 지성의 사례로 평가받고 있으며 사상 최대의, 가장 많이 읽힌 참고서이기도 하다. 시밀러웹과 (과거) 알렉사 인터넷에서 가장 인기있는 웹사이트 10곳 중 하나로 꾸준히 순위를 올리고 있다. 2022년 기준으로 위키백과는 세계에서 5번째로 인기있는 사이트로 순위를 올렸다. 위키백과는 자유 저작물을 보유하고 상업적인 광고가 없으며 주로 기부금을 통해 지원을 받는 비영리 단체인 위키미디어 재단에 의해 소유되고 지원을 받고 있다.", "bing":"마이크로소프트 빙(Microsoft Bing, 이전 이름: 빙, 라이브 검색, 윈도 라이브 검색, MSN 검색)은 마이크로소프트사에서 2009년 6월 1일 서비스를 시작한 검색 서비스이다. 마이크로소프트가 기존에 개발했던 라이브 검색과 2008년 인수한 파워서치 기술을 결합한 서비스이다.", "bing images":[ "bing:ko", @@ -2860,6 +3006,10 @@ "전세계, 국내 및 현지 뉴스원에서 제공하는 뉴스, 스포츠, 엔터테인먼트, 비즈니스, 정치, 날씨 등 심층적인 뉴스 범위를 제공하도록 구성.", "https://www.bing.com/news" ], + "bing videos":[ + "Bing은 지능적인 검색 기능은 사용자가 원하는 정보를 빠르게 검색하고 보상을 제공합니다.", + "https://www.bing.com/videos" + ], "bitbucket":"빗버킷(Bitbucket)은 아틀라시안 소유의 웹 기반 버전 관리 저장소 호스팅 서비스로서, 깃(2011년 10월 이후) 버전 관리 시스템을 사용하는 소스 코드 및 개발 프로젝트를 대상으로 한다. 빗버킷은 상용 플랜과 무료 계정을 동시에 제공한다. 2010년 9월 기준으로 무료 계정의 경우 무제한 수의 개인 저장소(무료 계정의 경우 최대 5명의 사용자 보유 가능)를 제공한다. 빗버킷은 지라, 힙챗, 컨플루언스, 밤부 등의 기타 아틀라시안 소프트웨어와 연동된다.", "crossref":[ "국제 DOI 재단의 공식 디지털 객체 식별자 등록 기관 중 하나", @@ -2928,7 +3078,7 @@ "qwant:ko", "ref" ], - "reddit":"레딧(Reddit)은 소셜 뉴스 웹사이트로 자신이 쓴 글을 등록하고 그 글을 다른 사용자들의 투표를 통해 \"up\" 혹은 \"down\" 선택해 순위에 따라 주제별 섹션이나 메인 페이지에 올라가게 된다. 레딧의 서버는 미국의 캘리포니아 샌프란시스코에 있다.", + "reddit":"레딧(Reddit)은 미국의 소셜 뉴스 집계, 콘텐츠 등급 및 토론 웹 사이트이다. 등록된 사용자(일반적으로 \"레디터\"라고 함)는 링크, 텍스트 게시물, 이미지, 동영상 등의 콘텐츠를 사이트에 제출한 후 다른 회원에 의해 투표된다. 게시물은 주제별로 \"커뮤니티\" 또는 \"서브레딧\"이라고 불리는 사용자가 만든 게시판으로 구성된다. 더 많은 업보트가 있는 제출물은 하위 레딧의 맨 위에 표시되며, 충분한 업보트를 받은 경우 최종적으로 사이트의 첫 페이지에 표시된다. 레딧 관리자는 커뮤니티를 관리하며 중재는 레딧 직원이 아닌 커뮤니티별 중재자에 의해 수행된다.", "soundcloud":"사운드클라우드(영어: SoundCloud)는 스웨덴의 스톡홀름에서 구상되고 독일 베를린에 본사를 둔 글로벌 온라인 음악 유통 플랫폼이다. 플리커, 유튜브, 비메오가 이미지, 영상 온라인 플랫폼을 대표한다면, 음악에는 사운드클라우드가 이 역할을 하고 있다고 평가된다. 아마추어의 작업물이 대다수이지만, 프로 뮤지션들이 무료 공개곡이나 신곡의 프리뷰를 올리기도 한다. 드레이크, 찬스 더 래퍼 등 다수의 아티스트들이 작업물을 공유하고 있다.", "stackoverflow":[ "질문답변 웹사이트의 네트워크", @@ -2960,10 +3110,15 @@ "peertube":[ "무료/자유 소프트웨어를 기반으로 하는 분산형 비디오 호스팅 네트워크", "wikidata" + ], + "wttr.in":[ + "일기 예보: Des Moines, Iowa, United States", + "https://wttr.in" ] }, "lt":{ "apple app store":"„App Store“ – „Apple“ „iOS“ bei „iPadOS“ operacinės sistemos mobiliųjų programų parduotuvė.", + "archive is":"Archive.today – interneto archyvavimo platforma, įkurta 2012 m. ir archyvuojanti interneto tinklalapių turinį. Archyvavimas atliekamas dviem formomis:išsaugant originalų tinklalapio turinį su jo žodiniu turiniu ir nuorodomis; išsaugant tinklalapio ekrano vaizdą.", "wikipedia":"Vikipedija – interneto enciklopedija. Joje paskelbta daugiau nei 55 mln. straipsnių 306 kalbomis. 2020 m. Vikipediją kas mėnesį skirtingais įnagiais aplankė 1,5 mlrd. lankytojų bei peržiūrėjo 15 mlrd. puslapių.", "bing":"Bing – kompanijos Microsoft sukurta paieškos sistema.", "bing images":[ @@ -2974,6 +3129,10 @@ "Naujienos iš viso pasaulio, nacionalinių ir vietinių naujienų šaltinių parengtos taip, kad išsamiai atskleistų sporto, pramogų, verslo, politikos įvykius, orus ir dar daugiau.", "https://www.bing.com/news" ], + "bing videos":[ + "Intelektualioji „Bing“ ieška leidžia lengvai ir greitai rasti tai, ko ieškote, ir apdovanoja jus.", + "https://www.bing.com/videos" + ], "deviantart":"deviantArt, deviantART arba DeviantArt – 2000 m. sukurta internetinė svetainė, skirta naudotojų sukurtiems meno kūriniams saugoti ir platinti.", "apple maps":"Apple Maps – žemėlapių ir navigacijos programėlė, veikianti „iOS“, „macOS“, „watchOS“ operacinėse sistemose. „Apple“ ją pristatė 2012 m. rugsėjo 12 d., kartu su nauja „iOS“ versija, kurioje atsisakė anksčiau naudotų „Google Maps“ žemėlapių ir pakeitė juos savais.", "flickr":"„Flickr“ – socialinis tinklas, priklausantis „SmugMug“ bendrovei.", @@ -2990,7 +3149,7 @@ "Išsamios naujausios žinios, kurias iš viso pasaulio naujienų šaltinių surinko „Google“ naujienos.", "https://news.google.com" ], - "google videos":"Google Video – nemokama Google paslauga, kuri leidžia kiekvienam įkelti video klipus į Google serverius, šitaip ją padarant nemokamai prienamą arba apmokestintą per Google Video parduotuvę. Naudotojai gali naršyti ir peržiūrėti filmus tiesiogiai Google Video svetainėje arba parsisiųti failus ir juos pateikti savo asmeninėje svetainėje.", + "google videos":"Google Video – nemokama „Google“ paslauga, kuri leidžia kiekvienam įkelti vaizdo klipus į „Google“ serverius, taip ją padarant nemokamai prienamą arba apmokestintą per „Google Video“ parduotuvę. Naudotojai gali naršyti ir peržiūrėti filmus tiesiogiai „Google Video“ svetainėje arba parsisiųti failus ir juos pateikti savo asmeninėje svetainėje.", "google scholar":"„Google Scholar“ – „Google“ bendrovės mokslinės informacijos paieškos sistema. Joje galima rasti recenzuotus darbus, disertacijas, knygas, santraukas ir kitą mokslinę literatūrą įvairiose mokslinio tyrimo srityse.", "google play apps":"Google Play – „Android“ operacinės sistemos mobiliųjų programų, knygų, žaidimų, muzikos ir filmų parduotuvė. Prieinama beveik visose šalyse.", "google play movies":[ @@ -3013,7 +3172,11 @@ "wikisource":"Vikišaltiniai – kaip ir Vikipedija yra Vikimedijos projektas, paremtas MediaWiki programine įranga; internetinis projektas, kuriame kaupiama tekstinė informacija, dokumentai, skirti tekstinėms kitų Vikimedijos projektų „iliustracijoms“ ir papildymams. Tekstams netaikomos autorinės teisės apsaugos režimas dėl riboto naudojimo arba jie yra viešo naudojimo arba taikoma GNU-FDL licencija. Kitoms medijų rūšims kaip vaizdinei, garso informacijai yra skirtas Vikitekos projektas.", "wiktionary":"Vikižodynas – universalaus internetinio žodyno kūrimo projektas, Vikipedijai bei kitiems Vikimedijos projektams giminingas projektas, besiremiantis mediawiki programine įranga ir yra laisvai prieinamas internete.", "wikiversity":"Vikiversitetas – Vikimedijos fondo projektas, pagrįstas MediaWiki technologija; vikisvetainė.", - "wikivoyage":"Vikikelionės – internetinis projektas, kuriamas vikitechnologija bei pagrįstas MediaWiki programine įranga. Vikikelionės nuo 2013 m. sausio 15 d. yra oficialus Vikimedijos projektas." + "wikivoyage":"Vikikelionės – internetinis projektas, kuriamas vikitechnologija bei pagrįstas MediaWiki programine įranga. Vikikelionės nuo 2013 m. sausio 15 d. yra oficialus Vikimedijos projektas.", + "wttr.in":[ + "Orų prognozė: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "lv":{ "apple app store":"Apple App Store ir elektronisks iOS ierīcēm paredzēts lietotņu veikals, kuru uzrauga Apple Inc.. Šis lietotņu veikals ļauj lietotājiem meklēt un lejupielādēt lietotnes no iTunes Store, kuras tiek izgatavotas, izmantojot iOS SDK vai Mac SDK, un tās izdod Apple. Veikalā pieejamas gan bezmaksas, gan maksas lietotnes. Lietotnes var lejupielādēt tieši vajadzīgajā ierīcē vai arī datorā, izmantojot programmu iTunes. No pārdotajām maksas lietotnēm 30% ieņēmumu nonāk uzņēmumam „Apple”, bet atlikušie 70% nonāk lietotņu izstrādātājiem.", @@ -3023,13 +3186,17 @@ ], "wikipedia":"Vikipēdija (Wikipedia) ir brīva, daudzvalodu enciklopēdija ar bezmaksas saturu, kuras ikdienas darbību nodrošina bezpeļņas organizācija Wikimedia Foundation. Kopš tās dibināšanas 2001. gadā, Vikipēdija ir kļuvusi par vienu no populārākajām uzziņu un ziņu vietnēm vispasaules tīmeklī, kā arī vienu no apmeklētākajām mājaslapām visā pasaulē.", "bing images":[ - "Ik dienu skatiet populārākos attēlus, fona attēlus, GIF attēlus un idejas pakalpojumā Bing.", + "Skatiet plūsmu, kas pielāgota jūsu interesēm", "https://www.bing.com/images" ], "bing news":[ "Ziņas, ko piedāvā pasaules, valsts un vietējie ziņu avoti, sniedz visaptverošu pārskatu par jaunumiem sportā, izklaides nozarē, uzņēmējdarbībā, politikā, laika prognozi un citām tēmām.", "https://www.bing.com/news" ], + "bing videos":[ + "Viedā Bing meklēšana palīdz ātri atrast nepieciešamo un atalgo jūs.", + "https://www.bing.com/videos" + ], "currency":"DuckDuckGo ir interneta meklētājprogramma, kuru izveidoja Gabriels Veinbergs un laida klajā 2008. gada 25. septembrī. 2014. gada 21. maijā DuckDuckGo ieviesa jauno mājaslapas dizainu, kas fokusējās uz labāk formulētām atbildēm un labāku izskatu. Jaunajā dizainā tika iekļautas tādas pieprasītas funkcijas kā attēlu meklēšana.", "ddg definitions":[ "currency:lv", @@ -3095,6 +3262,10 @@ "bing:ml", "ref" ], + "bing videos":[ + "Bing-ൽ നിന്നുള്ള ഇന്റലിജന്റ് തിരയൽ നിങ്ങൾ തിരയുന്നത് അതിവേഗം കണ്ടെത്തുന്നത് എളുപ്പമാക്കുന്നു, നിങ്ങൾക്ക് റിവാർഡ് നൽകുകയും ചെയ്യുന്നു.", + "https://www.bing.com/videos" + ], "currency":"വെബ്സൈറ്റുകളിൽ തിരച്ചിൽ നടത്തുന്നവരുടെ സ്വകാര്യത സംരക്ഷിക്കുകയും വ്യക്തിഗത തെരച്ചിൽ ഫലങ്ങളിലെ ഫിൽറ്റർ ബബ്ൾ ഒഴിവാക്കുകയും ചെയ്യുന്ന സുരക്ഷിതമായ ഒരു ഇന്റർനെറ്റ് സെർച്ച് എൻജിനാണ് ഡക്ഡക്ഗോ (DuckDuckGo). തങ്ങൾ ഉപയോക്താവിനെ പിൻതുടരുകയോ (ട്രാക്കിംഗ്) തെരച്ചിൽ ചരിത്രം മറ്റുള്ളവരുമായി പങ്കുവെയ്കുകയോ ചെയ്യുന്നില്ലെന്ന് ഈ സെർച്ച് എഞ്ചിന്റെ പരിപാലകർ അവകാശപ്പെടുന്നു. തിരച്ചിലിന്റെ ഫലത്തിൽ 'കൂടുതൽ ആശ്രയിക്കുന്ന ഉത്ഭവങ്ങളിൽ' നിന്നുമുളളതിനേക്കാൾ 'മികച്ച സ്രോതസ്സിൽ നിന്നുമുള്ള വിവരങ്ങൾ' നൽകുവാൻ ഡക് ഡക് ഗോ പരിശ്രമിക്കുന്നു. യാൻഡെക്സ്, യാഹൂ, ബിൻഗ്, യംലി തുടങ്ങിയ സെർച്ച് എൻജിനുകളുമായുള്ള പങ്കാളിത്ത വിവരശേഖരണത്തിലൂടെയും വിക്കിപീ‍ഡിയ പോലുള്ള സാമൂഹ്യസ്രോതസ്സുകൾ മുഖ്യമായുള്ള വെബ്സൈറ്റുകളിൽ നിന്നും ശേഖരിക്കുന്ന വിവരങ്ങളിലൂടെയുമാണ് ഇവർ ഇത് സാദ്ധ്യമാക്കുന്നത്.", "deviantart":"ഉപയോക്താക്കൾ നിർമ്മിക്കുന്ന വിവിധ തരത്തിലുള്ള കലാരൂപങ്ങൾ പ്രദർശിപ്പിക്കുന്ന ഒരു ഓൺലൈൻ സമൂഹമാണ് ഡേവിയന്റ്ആർട്ട്. ആംഗലേയം:deviantArt. സ്കോട്ട് ജാർക്കോഫ്, മാത്യൂ സ്റ്റീഫെൻസ്, ആംഗളോ സോറ്റീറ തുടങ്ങിയവർ ചേർന്ന് 2000 ആഗസ്റ്റ് 7നാണ് ഡേവിയൻആർട്ട് ആരംഭിച്ചത്. ഡേവിയൻആർട്ട് ഇൻകോർപ്പറേറ്റഡിന്റെ ആസ്ഥാനം അമേരിക്കയിലെ കാലിഫോർണിയ സംസ്ഥാനത്തെ ലോസ് ആഞ്ചലസിലെ ഹോളിവുഡ് ഭാഗത്തായാണ് സ്ഥിതി ചെയ്യുന്നത്.", "ddg definitions":[ @@ -3155,7 +3326,11 @@ "wikisource":"സ്വതന്ത്ര വിവരങ്ങളടങ്ങിയ വിക്കി ഗ്രന്ഥശാല സൃഷ്ടിക്കുന്നതിനുള്ള ഒരു വിക്കിമീഡിയ സം‌രംഭമാണ് വിക്കിഗ്രന്ഥശാല (ആംഗലേയം:Wikisource). പകർപ്പവകാശപരിധിയിൽ വരാത്ത പ്രാചീന കൃതികൾ, പകർപ്പവകാശ കാലാവധി കഴിഞ്ഞ കൃതികൾ, പകർപ്പവകാശത്തിന്റെ അവകാശി പബ്ലിക്ക് ഡൊമൈനിൽ ആക്കിയ കൃതികൾ എന്നിങ്ങനെ മൂന്നു തരം കൃതികൾ ആണു വിക്കിഗ്രന്ഥശാലയിൽ ലഭ്യമാകുക. വിക്കിസോഴ്സിലെ എല്ലാ കൃതികളും ഒന്നുകിൽ പകർപ്പാവകാശരഹിതമോ അല്ലെങ്കിൽ ഗ്നൂ സ്വതന്ത്ര പ്രസിദ്ധീകരണാനുമതിക്ക് കീഴിൽ പ്രസിദ്ധീകരിച്ചതോ ആയിരിക്കും. മറ്റ് ഭാഷകളിൽ നിന്നുള്ള തർജ്ജമകളും വിക്കിസോഴ്സിൽ ശേഖരിക്കപ്പെടുന്നു. 2008 ഡിസംബർ വരെയുള്ള കണക്കുകളനുസരിച്ച് 56 ഭാഷകളിൽ വിക്കിഗ്രന്ഥശാല പ്രവർത്തിക്കുന്നു.", "wiktionary":"സ്വതന്ത്ര ഉള്ളടക്കമുള്ള ഒരു നിഘണ്ടു നിർമ്മിക്കുന്നതിനുള്ള ഒരു വെബ് അധിഷ്ഠിത ബഹുഭാഷാ പദ്ധതിയാണ് വിക്ഷണറി. 150-ലധികം ഭാഷകളിൽ ഇത് ലഭ്യമാണ്. സാധാരണ നിഘണ്ടുക്കളിൽ നിന്ന് വ്യത്യസ്തമായി വോളണ്ടിയർമാരുടെ ഒരു സമൂഹമാണ് വിക്ഷണറിക്ക് പിന്നിൽ പ്രവർത്തിക്കുന്നത്. വിക്കി സോഫ്റ്റ്‌വെയർ ഉപയോഗിക്കുന്ന ഇതിലെ ലേഖനങ്ങൾ വെബ്സൈറ്റിലേക്ക് പ്രവേശിക്കുവാൻ സൗകര്യമുള്ള മിക്കവാറും എല്ലാവർക്കും തിരുത്താവുന്നതാണ്.", "wikiversity":"വിക്കിമീഡിയ ഫൗണ്ടേഷന്റെ വിക്കി അധിഷ്ഠിത സം‌രംഭങ്ങളിൽ ഒന്നാണ് വിക്കിവേഴ്സിറ്റി.ഇവിടെ സ്വതന്ത്ര പഠന സാമഗ്രികൾ പ്രവർത്തനങ്ങളും നടത്തുന്ന ഒരു പദ്ധതിയാണിത്. വിക്കിപീഡിയ പോലുള്ള വിജ്ഞാനകോശങ്ങളിൽ നിന്നു് വിഭിന്നമായി ഇവിടെ ഒരേ വിഷയത്തിൽ അധിഷ്ഠിതമായ നിരവധി പഠനസാമഗ്രികൾ വിവിധ പതിപ്പുകളിലായി ലഭിക്കുന്നു.", - "wikivoyage":"ഒരു വിക്കിമീഡിയ സംരംഭമാണ് വിക്കിപര്യടനം(en:wikivoyage). സ്വതന്ത്ര യാത്രാപുസ്തകമാണിത്. ലോകത്തെമ്പാടുമുള്ള പ്രധാന ടൂറിസ്റ്റ് കേന്ദ്രങ്ങളിൽ എത്തിപ്പെടുന്ന ഒരാൾക്ക് ആവശ്യമായ എല്ലാ സംഗതികളും ഉൾക്കൊള്ളിച്ചുകൊണ്ട് വെബ് അടിസ്ഥാനത്തിൽ സേവനം ലഭ്യമാക്കുക എന്നതാണ് ഇതിന്റെ ലക്ഷ്യം." + "wikivoyage":"ഒരു വിക്കിമീഡിയ സംരംഭമാണ് വിക്കിപര്യടനം(en:wikivoyage). സ്വതന്ത്ര യാത്രാപുസ്തകമാണിത്. ലോകത്തെമ്പാടുമുള്ള പ്രധാന ടൂറിസ്റ്റ് കേന്ദ്രങ്ങളിൽ എത്തിപ്പെടുന്ന ഒരാൾക്ക് ആവശ്യമായ എല്ലാ സംഗതികളും ഉൾക്കൊള്ളിച്ചുകൊണ്ട് വെബ് അടിസ്ഥാനത്തിൽ സേവനം ലഭ്യമാക്കുക എന്നതാണ് ഇതിന്റെ ലക്ഷ്യം.", + "wttr.in":[ + "കാലാവസ്ഥ റിപ്പോർട്ട്: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "ms":{ "apple app store":"App Store adalah platform pengedaran digital, dibangunkan dan diselenggarakan oleh Apple Inc., untuk aplikasi mudah alih pada sistem operasi iOS. Kedai ini membolehkan pengguna melayari dan memuat turun aplikasi yang dibangunkan dengan kit pembangunan perisian iOS Apple. Apl boleh dimuat turun di telefon pintar iPhone, komputer pegang tangan iPod Touch, atau komputer tablet iPad, dan sesetengahnya boleh dipindahkan ke Apple Watchsmartwatch atau generasi ke-4 atau lebih baru Apple TV sebagai sambungan aplikasi iPhone.", @@ -3678,13 +3853,13 @@ "petalsearch:en", "ref" ], - "petalsearch news":[ - "petalsearch:en", - "ref" - ], "sourcehut":[ "sourcehut:en", "ref" + ], + "goo":[ + "goo:en", + "ref" ] }, "nl":{ @@ -3728,6 +3903,10 @@ "Je ontvangt diepgravend nieuws over sport, entertainment, business, politiek, weerberichten en nog veel meer van internationale, landelijke en lokale nieuwsbronnen.", "https://www.bing.com/news" ], + "bing videos":[ + "Met de intelligente zoekmachine van Bing kunt u gemakkelijker snel vinden waar u naar op zoek bent en wordt u beloond.", + "https://www.bing.com/videos" + ], "bitbucket":[ "bitbucket:nl-BE", "ref" @@ -3971,15 +4150,23 @@ "rubygems":[ "RubyGems.org | De gem host voor de community", "https://rubygems.org/" + ], + "wttr.in":[ + "Weerbericht voor: Des Moines, Iowa, United States", + "https://wttr.in" ] }, "pa":{ "arxiv":"arXiv ਜਿਸ ਨੂੰ ਆਰਕਾਇਵ ਉੱਚਾਰਿਆ ਕਰਦੇ ਹਨ ਹਿਸਾਬ, ਭੌਤਿਕੀ, ਰਸਾਇਣਕੀ, ਖਗੋਲਿਕੀ, ਸੰਗਣਿਕੀ, ਮਾਤਰਾਤਮਿਕ (ਕਵਾਂਟੀਟੇਟਿਵ​)ਜੀਵ ਵਿਗਿਆਨ, ਸੰਖਿਅਕੀ (ਸਟੈਟਿਸਟਿਕਸ​) ਅਤੇ ਮਾਤਰਾਤਮਿਕ ਵਿੱਤ (ਫਾਇਨੈਂਸ​) ਦੇ ਖੇਤਰਾਂ ਵਿੱਚ ਵਿਗਿਆਨਕ ਲੇਖਾਂ ਦਾ ਇੱਕ ਕੋਸ਼ ਹੈ ਜਿਸ ਨੂੰ ਇੰਟਰਨੇਟ ਉੱਤੇ ਖੋਜਿਆ ਅਤੇ ਪੜ੍ਹਿਆ ਜਾ ਸਕਦਾ ਹੈ। ਸੰਨ 1991 ਵਿੱਚ ਇਸ ਦੀ ਸਥਾਪਨਾ ਹੋਈ ਅਤੇ ਇਹ ਤੇਜੀ ਨਾਲ ਵਧਣ ਲਗਾ। ਵਰਤਮਾਨ ਵਿੱਚ ਬਹੁਤ ਸਾਰੇ ਵਿਦਵਾਨ ਕਿਸੇ ਨਵੀਂ ਖੋਜ ਜਾਂ ਸੋਚ ਉੱਤੇ ਲੇਖ ਲਿਖਣ ਦੇ ਬਾਅਦ ਆਪ ਹੀ ਉਸਨੂੰ ਆਰਕਾਇਵ-ਕੋਸ਼ ਉੱਤੇ ਪਾ ਦਿੰਦੇ ਹਨ। ਅਕਤੂਬਰ 3,2008 ਤੱਕ ਇਸ ਵਿੱਚ 5 ਲੱਖ ਤੋਂ ਜਿਆਦਾ ਲੇਖ ਸਨ। 2012 ਤੱਕ ਇਸ ਵਿੱਚ ਹਰ ਮਹੀਨੇ 7,000 ਤੋਂ ਜਿਆਦਾ ਨਵੇਂ ਲੇਖ ਜੋੜੇ ਜਾ ਰਹੇ ਸਨ।", "wikipedia":"ਵਿਕੀਪੀਡੀਆ ਇੱਕ ਬਹੁਭਾਸ਼ਾਈ ਆਨਲਾਈਨ ਵਿਸ਼ਵਕੋਸ਼ ਹੈ, ਜੋ ਇੱਕ ਖੁੱਲੇ ਸਹਿਯੋਗ ਪ੍ਰੋਜੈਕਟ ਵਜੋਂ ਬਣਾਇਆ ਗਿਆ ਹੈ ਅਤੇ ਵਾਲੰਟੀਅਰ ਸੰਪਾਦਕਾਂ ਦੇ ਸਮੂਹ ਦੁਆਰਾ ਵਿਕੀ-ਅਧਾਰਿਤ ਸੋਧ ਪ੍ਰਣਾਲੀ ਰਾਹੀਂ ਸਾਂਭਿਆ ਜਾਂਦਾ ਹੈ। ਇਹ ਵਰਲਡ ਵਾਈਡ ਵੈੱਬ 'ਤੇ ਸਭ ਤੋਂ ਵੱਡਾ ਅਤੇ ਸਭ ਤੋਂ ਮਸ਼ਹੂਰ, ਆਮ ਹਵਾਲਿਆਂ ਵਾਲਾ ਕੰਮ ਹੈ ਅਤੇ ਮਾਰਚ 2020 ਤੱਕ ਐਲੈਕਸਾ ਦੁਆਰਾ ਦਰਜਾ ਪ੍ਰਾਪਤ 20 ਸਭ ਤੋਂ ਪ੍ਰਸਿੱਧ ਵੈਬਸਾਈਟਾਂ ਵਿੱਚੋਂ ਇੱਕ ਹੈ। ਇਸ ਵਿੱਚ ਵਿਸ਼ੇਸ਼ ਤੌਰ 'ਤੇ ਮੁਫਤ ਸਮੱਗਰੀ ਹੁੰਦੀ ਹੈ ਅਤੇ ਕੋਈ ਵਪਾਰਕ ਵਿਗਿਆਪਨ ਨਹੀਂ ਹੁੰਦੇ ਹਨ, ਅਤੇ ਇਹ ਇੱਕ ਗੈਰ-ਮੁਨਾਫ਼ਾ ਅੰਤਰਰਾਸ਼ਟਰੀ ਸੰਸਥਾ ਵਿਕੀਮੀਡੀਆ ਫਾਊਂਡੇਸ਼ਨ ਦੁਆਰਾ ਚਲਾਇਆ ਜਾਂਦਾ ਹੈ। ਵਿਕੀਪੀਡੀਆ ਵਿੱਚ ਕੋਈ ਵੀ ਵਿਅਕਤੀ ਨਵੇਂ ਲੇਖ ਲਿਖ ਸਕਦਾ ਹੈ ਅਤੇ ਪਹਿਲਾਂ ਬਣੇ ਤਕਰੀਬਨ ਸਾਰੇ ਲੇਖਾਂ ਨੂੰ ਸੋਧ ਸਕਦਾ ਹੈ।", "bing images":[ - "ਹਰ ਰੋਜ਼ Bing 'ਤੇ ਪ੍ਰਚਲਿਤ ਪ੍ਰਤੀਬਿੰਬ, ਵਾਲਪੇਪਰ, GIF ਅਤੇ ਵਿਚਾਰ ਦੇਖੋ।", + "ਆਪਣੀ ਦਿਲਚਸਪੀਆਂ ਦੇ ਅਨੁਸਾਰ ਤਿਆਰ ਕੀਤੀ ਗਈ ਫੀਡ ਵੇਖੋ", "https://www.bing.com/images" ], + "bing videos":[ + "Bing ਦੀ ਹੁਸ਼ਿਆਰ ਖੋਜ ਉਸ ਚੀਜ਼ ਨੂੰ ਤੇਜ਼ੀ ਨਾਲ ਲੱਭਣਾ ਸੌਖਾ ਬਣਾਉਂਦੀ ਹੈ ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਤਲਾਸ਼ ਰਹੇ ਹੋ ਅਤੇ ਤੁਹਾਨੂੰ ਇਨਾਮ ਦਿੰਦੀ ਹੈ।", + "https://www.bing.com/videos" + ], "wikidata":"ਵਿਕੀਡਾਟਾ, ਵਿਕੀਮੀਡੀਆ ਫ਼ਾਊਂਡੇਸ਼ਨ ਦੁਆਰਾ ਸੰਚਾਲਿਤ ਕੀਤੀ ਜਾਣ ਵਾਲੀ ਵਿਕੀ ਪਰਿਯੋਜਨਾ ਹੈ। ਵਿਕੀਪੀਡੀਆ ਵਾਂਗ ਹੀ ਇਹ ਵੀ ਇੱਕ ਵਿਕੀਪਰਿਯੋਜਨਾ ਹੈ, ਜੋ ਕਿ ਇੱਕ ਮੁਫ਼ਤ ਡਾਟਾਬੇਸ ਹੈ ਅਤੇ ਸਮੁੱਚੇ ਲੋਕਾਂ ਦੁਆਰਾ ਇਹ ਸੰਪਾਦਿਤ ਕੀਤਾ ਜਾਂਦਾ ਹੈ। ਇਹ ਡਾਟਾ ਦਾ ਇੱਕ ਆਮ ਸਰੋਤ ਹੈ, ਜੋ ਕਿ ਬਾਕੀ ਵਿਕੀਮੀਡੀਆ ਪਰਿਯੋਜਨਾਵਾਂ ਅਤੇ ਪਬਲਿਕ ਡੋਮੇਨ ਲਸੰਸ ਦੁਆਰਾ ਬਾਕੀ ਵੈੱਬਸਾਈਟਾਂ ਦੁਆਰਾ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ। ਇਹ ਵਿਕੀਮੀਡੀਆ ਕਾਮਨਜ਼ ਵਰਗੀ ਹੀ ਇੱਕ ਪਰਿਯੋਜਨਾ ਹੈ, ਭਾਵ ਕਿ ਜਿਵੇਂ ਕਾਮਨਜ਼ ਵਿੱਚ ਅਪਲੋਡ ਕੀਤੀਆਂ ਗਈਆਂ ਤਸਵੀਰਾਂ ਬਾਕੀ ਸਾਰੇ ਵਿਕੀਪ੍ਰੋਜੈਕਟਾਂ ਵਿੱਚ ਵਰਤੀਆਂ ਜਾਂਦੀਆਂ ਹਨ, ਉਵੇਂ ਹੀ ਵਿਕੀਡਾਟਾ ਵਿਚਲਾ ਡਾਟਾ ਵੀ ਬਾਕੀ ਵਿਕੀਪ੍ਰੋਜੈਕਟਾਂ ਦੁਆਰਾ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ। ਵਿਕੀਡਾਟਾ ਲਈ ਵਿਕੀਬੇਸ ਨਾਂ ਦਾ ਸਾਫ਼ਟਵੇਅਰ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ।", "gentoo":[ "gentoo:ru", @@ -4024,6 +4211,10 @@ "Wiadomości ze świata, z kraju i z lokalnych źródeł, uporządkowane w celu zapewnienia pełnego zakresu informacji dotyczących sportu, rozrywki, biznesu, polityki, pogody i innych tematów.", "https://www.bing.com/news" ], + "bing videos":[ + "Inteligentne wyszukiwanie przez Bing ułatwia szybkie odnalezienie wartościowych wyników... i nie tylko.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket – hostingowy serwis internetowy przeznaczony dla projektów programistycznych wykorzystujących system kontroli wersji Git oraz Mercurial, którego obecnym właścicielem jest firma Atlassian. Serwis umożliwia bezpłatne wykorzystanie usługi wraz z dodatkowymi płatnymi planami. Jest obecnie jednym z najpopularniejszych tego typu serwisów, z którego korzystają m.in. firmy Ford, PayPal, czy Starbucks. W kwietniu 2019 r. Atlassian ogłosił, że Bitbucket dotarł do 10 milionów zarejestrowanych użytkowników i ponad 28 milionów repozytoriów.", "crossref":"Crossref – organizacja non-profit promująca rozwój i kooperatywne wykorzystanie nowych i innowacyjnych technologii w celu przyśpieszenia i ułatwienia wyszukiwania prac naukowych. Crossref jest oficjalną agencją rejestrującą linki DOI dla publikacji profesjonalnych.", "currency":"DuckDuckGo − wyszukiwarka internetowa z siedzibą w Valley Forge w stanie Pensylwania. Wyszukiwarka oprócz tradycyjnych źródeł danych wykorzystuje serwisy tworzone przez użytkowników Internetu, w celu poprawy wyników. Twórcy wyszukiwarki podkreślają dbanie o ochronę prywatności użytkowników i twierdzą, że nie gromadzą żadnych danych o nich i z tego względu nie jest możliwe określenie dokładnej liczby użytkowników. Wyszukiwarka jest zbudowana w oparciu o otwarte oprogramowanie.", @@ -4054,7 +4245,7 @@ "free software directory":"The Free Software Directory – projekt Free Software Foundation i UNESCO zbierający i udostępniający informacje na temat wolnego oprogramowania pozwalającego na uruchomienie go w wolnym systemie operacyjnym, np. GNU/Linux czy OpenBSD.", "genius":"Genius – amerykańskie przedsiębiorstwo zajmujące się mediami cyfrowymi, założone w sierpniu 2009 roku przez Toma Lehmana, Ilana Zechory’ego i Mahboda Moghadama. Witryna Genius umożliwia użytkownikom dostarczanie adnotacji i interpretacji tekstów piosenek, wiadomości o muzykach i informacji dotyczących utworów. Pierwotnie funkcjonowała pod nazwą Rap Genius.", "gentoo":"Genkernel – narzędzie służące do zbudowania jądra systemowego używającego standardowej konfiguracji lub jej modyfikacji.", - "gitlab":"GitLab – hostingowy serwis internetowy przeznaczony dla projektów programistycznych oparty o system kontroli wersji Git oraz otwartoźródłowe oprogramowanie, stworzone przez Dmitrija Zaporozhets, których obecnie właścicielem jest GitLab Inc. Serwis umożliwia bezpłatne wykorzystanie usługi lub zainstalowanie samodzielnie zarządzanego oprogramowania wraz z opcjonalnymi, płatnymi planami. Usługa jest jedną z najpopularniejszych tego typu na rynku, z której korzystają takie firmy, jak IBM, Sony, NASA, Oracle, GNOME Foundation, NVIDIA, czy SpaceX. Serwis był notowany w rankingu Alexa na miejscu 2855.", + "gitlab":"GitLab – hostingowy serwis internetowy i oprogramowanie przeznaczone dla projektów programistycznych. Gitlab oparty jest o system kontroli wersji Git oraz otwartoźródłowe oprogramowanie wspomagające zarządzanie projektami opartymi na Git.", "github":"GitHub – hostingowy serwis internetowy przeznaczony do projektów programistycznych wykorzystujących system kontroli wersji Git. Stworzony został przy wykorzystaniu frameworka Ruby on Rails i języka Erlang. Serwis działa od kwietnia 2008 roku. GitHub udostępnia darmowy hosting programów open source i prywatnych repozytoriów. W czerwcu 2018 ogłoszono, iż serwis zostanie przejęty przez przedsiębiorstwo Microsoft za kwotę 7,5 miliarda dolarów.", "google":"Wyszukiwarka Google – wyszukiwarka internetowa stworzona przez amerykańską spółkę Google LLC. Jej celem jest skatalogowanie wszystkich możliwych informacji i udostępnienie ich za pomocą Internetu. Serwis był notowany w rankingu Alexa na miejscu 1", "google images":"Grafika Google, ang. Google Images – wyszukiwarka internetowa grafiki została uruchomiona w lipcu 2001 roku pod angielską nazwą Google Image Search. Od 9 listopada 2002 dostępna jest w polskiej wersji językowej. Za jej pomocą użytkownicy mogą przeszukiwać pliki graficzne znajdujące się na stronach internetowych. Specjalna wersja Googlebota odnajduje zdjęcia i obrazy, kategoryzuje je pod specyficzne słowa i wysyła miniaturki zdjęć na serwery Google. Stamtąd są one wyświetlane jako wyniki wyszukiwania, razem z linkami do pełnych wersji znalezionych zdjęć i stron internetowych, na których zostały znalezione. W przypisywaniu zdjęciom słów kluczowych pomaga usługa Google Image Labeler – gra polegająca na jak najszybszym otagowaniu wyświetlanych zdjęć.", @@ -4068,7 +4259,7 @@ ], "hoogle":"Haskell – czysto funkcyjny język programowania nazwany na cześć amerykańskiego matematyka, Haskella Curry’ego.", "imdb":"IMDb – największa na świecie internetowa baza danych na temat filmów i ludzi z nimi związanych. Zawiera informacje o aktorach, reżyserach, scenarzystach, producentach, montażystach, operatorach, muzykach itd. Informacje nie ograniczają się do kinematografii amerykańskiej.", - "library genesis":"Library Genesis (LibGen) – biblioteka cyfrowa zawierająca artykuły z czasopism naukowych, książki. Witryna znane jest z tego, że umożliwia bezpłatny dostęp do treści, które w inny sposób są płatne lub nie zostały zdigitalizowane gdzie indziej. Libgen określa się jako „agregator linków”, dostarczając przeszukiwalną bazę danych elementów „zebranych z publicznie dostępnych publicznych zasobów internetowych” oraz plików przesłanych „od użytkowników”. W 28 lipca 2019 r. Library Genesis twierdził, że ma ponad 2,4 miliona książek naukowych lub popularnonaukowych, 2,2 miliona książek beletrystycznych, 80 milionów artykułów z czasopism naukowych, 2 miliony komiksów, i 0,4 miliona pełnych wydań czasopism.", + "library genesis":"Library Genesis (LibGen) – biblioteka cyfrowa typu shadow library zawierająca artykuły z czasopism naukowych, książki. Witryna znane jest z tego, że umożliwia bezpłatny dostęp do treści, które w inny sposób są płatne lub nie zostały zdigitalizowane gdzie indziej. Libgen określa się jako „agregator linków”, dostarczając przeszukiwalną bazę danych elementów „zebranych z publicznie dostępnych publicznych zasobów internetowych” oraz plików przesłanych „od użytkowników”. W 28 lipca 2019 r. Library Genesis twierdził, że ma ponad 2,4 miliona książek naukowych lub popularnonaukowych, 2,2 miliona książek beletrystycznych, 80 milionów artykułów z czasopism naukowych, 2 miliony komiksów, i 0,4 miliona pełnych wydań czasopism.", "library of congress":"Biblioteka Kongresu – biblioteka, która powstała w 1800 roku w Waszyngtonie. W 2019 roku posiadała w swoich zbiorach ponad 170 mln woluminów w ponad 470 językach. Zbiór książek i dokumentów związanych z Polską należy do jednych z największych nie tylko w USA, ale również na świecie. Pełni funkcję biblioteki narodowej. Zapewnia publiczny dostęp do zbiorów, chociaż jej głównym zadaniem jest służba Kongresowi. We wrześniu 2019 Biblioteka Kongresu zatrudniała 3210 stałych pracowników.", "metacpan":"CPAN – źródło dokumentacji oraz modułów do języka Perl. Zgromadzone moduły mają bardzo wiele zastosowań. Na początku 2007 roku liczba modułów przekraczała 11 000, a ich łączny rozmiar 3 400 MB, na początku drugiej połowy roku 2010 było ich już ponad 18 000, co dało prawie 7 400 MB.", "mixcloud":"MixCloud – społeczność internetowa dla artystów tworzących i dystrybuujących audycje radiowe, mikstejpy i podkasty. Serwis był notowany w rankingu Alexa na miejscu 2711.", @@ -4123,10 +4314,6 @@ "petalsearch images":[ "petalsearch:pl", "ref" - ], - "petalsearch news":[ - "petalsearch:pl", - "ref" ] }, "pt":{ @@ -4136,7 +4323,7 @@ "artic":"O Art Institute of Chicago (AIC) é um museu estadunidense de belas artes localizado em Chicago, Illinois, no Grant Park. O AIC possui uma das mais notáveis coleções mundiais do Impressionismo. Sua coleção diversificada inclui obras dos grandes mestres, Arte Americana, arte decorativa europeia e americana, arte asiática e arte moderna e contemporânea.", "arxiv":"O arXiv é um arquivo para preprints eletrônicos de artigos científicos nos campos da matemática, física, ciência da computação, biologia quantitativa e estatística que podem ser acessados via internet. Em muitos campos da matemática e da física, quase todos os artigos estão no arXiv. Em março de 2012, arXiv.org continha mais de 745.000 e-prints, com cerca de seis mil novos e-prints adicionados a cada mês.", "bandcamp":"Bandcamp é um empresa formada em 2007 pelos co-fundadores do Oddpost, Ethan Diamond e Shawn Grunberger, juntamente com os programadores Joe Holt e Neal Tucker mais tarde, em 2008, lançam a plataforma online para artistas independentes conseguirem divulgar e vender a sua música autonomamente. Os utilizadores do Bandcamp podem usufruir de um microsite personalizável onde podem partilhar a sua música. Todas as faixas podem ser reproduzidas gratuitamente via streaming, e compradas independentemente ou em conjunto com o álbum.", - "wikipedia":"A Wikipédia é um projeto de enciclopédia multilíngue de licença livre, baseado na web e escrito de maneira colaborativa. O projeto encontra-se sob administração da Fundação Wikimedia, uma organização sem fins lucrativos cuja missão é \"empoderar e engajar pessoas pelo mundo para coletar e desenvolver conteúdo educacional sob uma licença livre ou no domínio público, e para disseminá-lo efetivamente e globalmente\". Integrando um dos vários projetos mantidos pela Wikimedia, os mais de 58 milhões de artigos hoje encontrados na Wikipédia foram escritos de forma conjunta por diversos voluntários ao redor do mundo. Quase todos os verbetes presentes no sítio eletrônico podem igualmente ser editados por qualquer pessoa com acesso à internet e ao endereço eletrônico. Em abril de 2022, havia edições ativas da Wikipédia em 315 idiomas. A Wikipédia foi lançada em 15 de janeiro de 2001 por Jimmy Wales e Larry Sanger e tornou-se a maior e mais popular obra de referência geral na internet. Em 2010, tinha cerca de 365 milhões de leitores. A Wikipédia é uma ferramenta de pesquisa amplamente utilizada por estudantes e tem influenciado o trabalho de publicitários, pedagogos, sociólogos e jornalistas, que usam seu material, mesmo que nem sempre citem suas fontes.", + "wikipedia":"A Wikipédia é um projeto de enciclopédia multilíngue de licença livre, baseado na web e escrito de maneira colaborativa. Este foi lançado em 2001 por Jimmy Wales e Larry Sanger e é atualmente administrado pela Fundação Wikimedia, integrando vários projetos mantidos pela fundação. É formada por mais de 58 milhões de artigos escritos de forma conjunta por diversos editores voluntários ao redor do mundo. Em abril de 2022, havia edições ativas da Wikipédia em 315 idiomas", "bing":"Microsoft Bing é o motor de pesquisa da Microsoft, designado para competir com os líderes das indústrias Google e Yahoo!. Revelado pelo CEO da Microsoft, Steve Ballmer, em 28 de maio de 2009, na conferência \"All Things D\", em San Diego, Bing é um substituto do Live Search, e disponibilizado totalmente em 1 de junho de 2009.", "bing images":[ "bing:pt", @@ -4145,7 +4332,7 @@ "bing news":"Bing Notícias faz parte do motor de busca Bing, da Microsoft. É um motor de busca e agregador especificamente para artigos de notícias por meio de várias fontes fiáveis da internet, incluindo New York Times, Washington Post e Reuters.", "bing videos":"Bing Vídeos é um serviço de pesquisa de vídeo e faz parte do mecanismo de busca Bing, da Microsoft. O serviço permite aos usuários pesquisar e visualizar vídeos através de várias websites. Bing Vídeos foi oficialmente lançado em 26 de setembro de 2007, batizado de Live Search Video e renomeado como Bing Vídeos em 1 de junho de 2009.", "bitbucket":"Bitbucket é um serviço de hospedagem de projetos controlados através do Mercurial, um sistema de controle de versões distribuído. É similar ao GitHub. Bitbucket têm um serviço grátis e um comercial. O serviço é escrito em Python. Num blog de 2008, de Bruce Eckel comparou Bitbucket favoravelmente ao sítio web Launchpad, que utiliza Bazaar.", - "btdigg":"O BTDigg é o primeiro mecanismo de pesquisa BitTorrent DHT. Ele participou da rede BitTorrent DHT, suportando a rede e fazendo correspondência entre links magnéticos e alguns atributos de torrent que são indexados e inseridos em um banco de dados. Para usuários finais, o BTDigg fornece uma pesquisa de banco de dados em texto completo via interface da web. A web part de seu sistema de pesquisa recuperou informações adequadas por meio de uma consulta de texto do usuário. A pesquisa na Web suportava consultas nos idiomas europeu e asiático. O nome do projeto era um acrônimo de BitTorrent Digger. Ficou offline em junho de 2016, devido a um índice de spam. O site retornou no final de 2016 em um domínio pontocom, ficou offline novamente e agora está online. O site btdig.com tem a fonte de origem do rastreador de torrents listada no Github, dhtcrawler2.Referências", + "btdigg":"O BTDigg é o primeiro mecanismo de pesquisa BitTorrent DHT. Ele participou da rede BitTorrent DHT, suportando a rede e fazendo correspondência entre links magnéticos e alguns atributos de torrent que são indexados e inseridos em um banco de dados. Para usuários finais, o BTDigg fornece uma pesquisa de banco de dados em texto completo via interface da web. A web part de seu sistema de pesquisa recuperou informações adequadas por meio de uma consulta de texto do usuário. A pesquisa na Web suportava consultas nos idiomas europeu e asiático. O nome do projeto era um acrônimo de BitTorrent Digger. Ficou offline em junho de 2016, devido a um índice de spam. O site retornou no final de 2016 em um domínio pontocom, ficou offline novamente e agora está online. O site btdig.com tem a fonte de origem do rastreador de torrents listada no Github, dhtcrawler2.", "currency":"DuckDuckGo é um motor de pesquisa sediado em Paoli, Pensilvânia. Este motor de busca tem a particularidade de utilizar informações de origem Crowdsourcing para melhorar a relevância dos resultados. A filosofia deste motor de pesquisa enfatiza a privacidade e não registra as informações do usuário.", "deezer":"Deezer é um serviço de streaming de áudio lançado em 2007. Disponível para usuários de mais de 180 países, a plataforma possui atualmente mais de 90 milhões de músicas, mais de 100 milhões de playlists e mais de 4 milhões de programas de áudio, como podcasts, em seu acervo. É uma empresa de capital fechado, com sede em Paris, e escritórios em Londres, Berlim, Miami, São Paulo e em outros lugares do mundo. Criada em Paris, França, a Deezer possui 16 milhões de usuários ativos mensais, permitindo que os usuários ouçam conteúdo de música de gravadoras incluindo EMI, Sony, Universal Music Group e Warner Music Group.", "deviantart":"DeviantArt, Inc é uma empresa virtual estadunidense, formando uma rede social que permite aos artistas iniciantes ou mesmo consagrados exporem seus trabalhos artísticos, promovê-los, compartilhá-los, bem como interagir com seus pares ou interessados, através do envio das imagens digitalizadas. Fundada em 2000, tem sua sede na cidade de Hollywood, estado da Califórnia.", @@ -4154,7 +4341,7 @@ "ref" ], "erowid":"Erowid, também chamado de Erowid Center, é uma organização educacional sem fins lucrativos que fornece informações sobre plantas e produtos químicos psicoativos. Também fornece informações sobre atividades e tecnologias que podem produzir estados alterados de consciência, como meditação, sonhos lúcidos, estimulação magnética, estimulação magnética transcraniana e neuroestimulação.", - "wikidata":"O Wikidata é um projeto que visa fornecer uma base de dados editada colaborativamente para oferecer suporte para projetos tais como a Wikipédia. O Wikidata foi lançado em 30 de outubro de 2012. O projeto foi iniciado pela Wikimedia Deutschland e pretender fornecer uma origem comum de certos tipos de dados, como por exemplo, datas de nascimento, uma classe de dados validados, que possa ser utilizada pelos projetos da Wikimedia operando de forma similar ao funcionamento do Wikimedia Commons para imagens e outros tipos de mídia. Este foi o primeiro novo projeto da Wikimedia Foundation desde 2006.", + "wikidata":"O Wikidata é um projeto da Fundação Wikimedia que visa fornecer uma base de dados editada colaborativamente para oferecer suporte para projetos tais como a Wikipédia. O Wikidata foi lançado em 30 de outubro de 2012. O projeto foi iniciado pela Wikimedia Deutschland e pretender fornecer uma origem comum de certos tipos de dados, como por exemplo, datas de nascimento, uma classe de dados validados, que possa ser utilizada pelos projetos da Wikimedia operando de forma similar ao funcionamento do Wikimedia Commons para imagens e outros tipos de mídia. Este foi o primeiro novo projeto da Wikimedia Foundation desde 2006.", "duckduckgo":[ "currency:pt", "ref" @@ -4169,7 +4356,7 @@ ], "apple maps":"Apple Maps é um serviço de pesquisa e visualização de mapas desenvolvido pela Apple Inc. É o aplicativo de mapas padrão dos sistemas macOS, iOS, iPadOS e watchOS que fornece instruções de navegação e rotas. O serviço foi lançado em 19 de setembro de 2012 juntamente com o iOS 6, substituindo o Google Maps, tornando-se assim um serviço padrão nos sistemas da Apple.", "emojipedia":"Emojipedia é um site de referência de emoji que documenta o significado e o uso comum de caracteres emoji no Unicode Standard. Mais comumente descrito como uma enciclopédia emoji ou dicionário emoji, Emojipedia também publica artigos e fornece ferramentas para rastrear novos caracteres emoji, alterações de design e tendências de uso. É propriedade da Zedge desde 2021.", - "tineye":"TinEye é um mecanismo de busca de imagens reversas desenvolvido e oferecido pela Idée, Inc., uma empresa sediada em Toronto, Ontário no Canadá. É o primeiro mecanismo de pesquisa de imagens na Web a usar a tecnologia de identificação de imagens em vez de palavras-chave, metadados ou marcas d'água. TinEye permite aos usuários pesquisar não usando palavras-chave, mas com imagens. Ao enviar uma imagem, o TinEye cria uma \"assinatura digital única e compacta ou impressão digital\" da imagem e a combina com outras imagens indexadas.Referências", + "tineye":"TinEye é um mecanismo de busca de imagens reversas desenvolvido e oferecido pela Idée, Inc., uma empresa sediada em Toronto, Ontário no Canadá. É o primeiro mecanismo de pesquisa de imagens na Web a usar a tecnologia de identificação de imagens em vez de palavras-chave, metadados ou marcas d'água. TinEye permite aos usuários pesquisar não usando palavras-chave, mas com imagens. Ao enviar uma imagem, o TinEye cria uma \"assinatura digital única e compacta ou impressão digital\" da imagem e a combina com outras imagens indexadas.", "fdroid":"F-Droid é um loja de software para Android, tem uma função similar à da Google Play. O repositório principal, hospedado pelo projeto, contém apenas aplicativos gratuitos e de código aberto. Os aplicativos podem ser navegados, baixados e instalados a partir do site ou do F-Droid sem a necessidade de registro. As \"anti-features\" tais como publicidade, rastreamento de usuários ou dependência de software não livre são sinalizados nas descrições dos aplicativos.", "flickr":"O Flickr é um site da web de hospedagem e partilha de imagens como fotografias, desenhos e ilustrações, além de permitir novas maneiras de organizar as fotos e vídeos. Caracterizado como rede social, o site permite aos usuários criar álbuns para armazenar suas fotografias e contatar-se com usuários de diferentes locais do mundo. No início de 2005 o site foi adquirido pela Yahoo! Inc.", "genius":"Genius é uma empresa estadunidense de mídia digital originalmente fundada em agosto de 2009 por Tom Lehman, Ilan Zechory e Mahbod Moghadam. O site permite que os usuários forneçam anotações e interpretações de letras de músicas, explicações de notícias, fontes, poesia e documentos.", @@ -4189,7 +4376,7 @@ ], "hoogle":"Haskell é uma linguagem de programação puramente funcional, de propósito geral, nomeada em homenagem ao lógico Haskell Curry. Como uma linguagem funcional, a estrutura de controle primária é a função; a linguagem é baseada nas observações de Haskell Curry e seus descendentes intelectuais. Seu último padrão semi-oficial é o Haskell 98, destinado a especificar uma versão mínima e portável da linguagem para o ensino e como base para futuras extensões.", "imdb":"IMDb, também conhecida como Internet Movie Database, é uma base de dados online de informação sobre cinema TV, música e games, hoje pertencente à Amazon.", - "ina":"Institut national de l'audiovisuel (Ina) é uma instituição pública francesa, de caráter industrial e comercial, encarregada principalmente do arquivamento de produções audiovisuais. Também é responsável pela produção, edição, cessão de conteúdos audiovisuais e multimídia destinados a todos os públicos, profissionais ou particulares. O Ina é também um centro de formação e pesquisa que visa desenvolver e transmitir conhecimento nas áreas ligadas à produção audiovisual. É associado à Federação Internacional da Indústria Fonográfica - IFPI.Notas e referências", + "ina":"Institut national de l'audiovisuel (Ina) é uma instituição pública francesa, de caráter industrial e comercial, encarregada principalmente do arquivamento de produções audiovisuais. Também é responsável pela produção, edição, cessão de conteúdos audiovisuais e multimídia destinados a todos os públicos, profissionais ou particulares. O Ina é também um centro de formação e pesquisa que visa desenvolver e transmitir conhecimento nas áreas ligadas à produção audiovisual. É associado à Federação Internacional da Indústria Fonográfica - IFPI.", "kickass":"O KickassTorrents é um site fundado em 2008 que fornece arquivos de torrent e links magnéticos para facilitar a partilha de ficheiros peer-to-peer usando o protocolo BitTorrent. Em novembro de 2014, o KAT tornou-se o site torrent mais visitado no mundo, ultrapassando o The Pirate Bay, segundo o ranking Alexa.", "library genesis":"Library Genesis ou LibGen é um motor de busca de artigos científicos e livros que permite o acesso livre a conteúdos que só seriam acessíveis através de pagamentos e, também, a conteúdos que não são facilmente encontrados em formato digital. Entre outros, esse site carrega conteúdos dos portais de informação da Elsevier e ScienceDirect. LibGen é um site de biblioteca de compartilhamento de arquivos não apenas para artigos de periódicos acadêmicos, mas também para livros de interesse geral, imagens, quadrinhos, audiolivros e revistas.", "library of congress":"A Biblioteca do Congresso é a biblioteca de pesquisa do Congresso dos Estados Unidos, sendo de facto a biblioteca nacional dos Estados Unidos e a instituição cultural mais antiga daquele país.", @@ -4222,29 +4409,34 @@ ], "reddit":"O Reddit é um agregador social de notícias ou um social bookmarks. O Reddit é dividido em várias comunidades chamadas de \"subreddits\". São nesses subreddits que reside o conteúdo do site. Há subreddits sobre política americana ou internacional, notícias, religião, ciência, filmes, livros, jogos eletrônicos, entre outros diferentes tópicos. Os usuários podem divulgar conteúdo da Internet como links, postagens, imagens e vídeos, e os usuários votam de forma positiva ou negativa nos conteúdos divulgados. Caso o conteúdo enviado para a comunidade receba muitos votos positivos, esse conteúdo fica no topo da página inicial do subreddit, podendo chegar na página inicial do próprio Reddit.", "soundcloud":"SoundCloud é uma plataforma online de publicação de áudio utilizada por profissionais de música sediada em Berlim, Alemanha, fundada por Alexander Ljung e Eric Wahlforss em Agosto de 2007. Nela os músicos podem colaborar, compartilhar, promover e distribuir suas composições.", - "semantic scholar":"Semantic Scholar é um mecanismo de busca de publicações acadêmicas por inteligência artificial desenvolvido pelo Allen Institute for Artificial Intelligence e lançado publicamente em novembro de 2015. Ele usa avanços recentes no processamento de linguagem natural para fornecer resumos de artigos acadêmicos.Referências", + "semantic scholar":"Semantic Scholar é um mecanismo de busca de publicações acadêmicas por inteligência artificial desenvolvido pelo Allen Institute for Artificial Intelligence e lançado publicamente em novembro de 2015. Ele usa avanços recentes no processamento de linguagem natural para fornecer resumos de artigos acadêmicos.", "startpage":"Startpage.com é um motor de busca baseado em Nova York e na Holanda. Fundado por David Bodnick em 1998, Startpage.com pertence a uma empresa holandesa, Surfboard Holding BV, que adquiriu a mesma no ano 2000.", - "youtube":"YouTube é uma plataforma de compartilhamento de vídeos com sede em San Bruno, Califórnia. O serviço foi criado por três ex-funcionários do PayPal - Chad Hurley, Steve Chen e Jawed Karim - em fevereiro de 2005. A Google comprou o site em novembro de 2006 por US$ 1,65 bilhão; desde então o YouTube funciona como uma das subsidiárias da Google.", + "unsplash":[ + "Imagens e fotos incríveis e gratuitas que você pode baixar e usar em qualquer projeto. Melhor que qualquer foto de stock ou royalty-free.", + "https://unsplash.com" + ], + "youtube":"YouTube é uma plataforma de compartilhamento de vídeos com sede em San Bruno, Califórnia. O serviço foi criado por três ex-funcionários do PayPal - Chad Hurley, Steve Chen e Jawed Karim - em fevereiro de 2005. A Google comprou o site em novembro de 2006 por US$ 1,65 bilhão. Desde então o YouTube funciona como uma das subsidiárias da Google.", "dailymotion":"Dailymotion é uma plataforma de compartilhamento de vídeos fundada em março de 2005 na França. Ela disponibiliza vídeos dos mais variados conteúdos aos seus usuários. É um dos mais acessados do mundo. De acordo com dados fornecidos em novembro de 2006, o serviço recebia cerca de dezesseis milhões de acessos e nove mil vídeos diariamente.", "vimeo":"Vimeo é um site de compartilhamento de vídeo, no qual os usuários podem fazer upload, partilhar e ver vídeos. Foi fundada por Zach Klein e Jakob Lodwick em dezembro de 2004. O nome \"Vimeo\" foi criado pelo co-fundador Jakob Lodwick e é um jogo das palavras \"video\", e \"me\" como uma referência a dedicação exclusiva do site para vídeos feitos por usuários, e também é um anagrama de \"movie\" (filme).", "wikibooks":"Wikilivros é um projeto de código wiki da Wikimedia Foundation, tal como a Wikipédia, dedicado ao desenvolvimento colaborativo de textos didáticos de conteúdo livre.", "wikinews":"Wikinews é um projeto de um repositório de notícias livre. Baseados no sistema \"wiki\", ele é um \"projeto-irmão\" da Wikipédia que visa objetivos similares. Isto é, alcançar a maior número de notícias possível.", "wikiquote":"Wikiquote é um ramo da família de projetos baseados no sistema wiki gerado pela Wikimedia Foundation, em execução no software MediaWiki. Baseado em uma ideia de Daniel Alston e implementada por Brion Vibber, o objetivo principal do projeto é produzir colaborativamente uma vasta referência de citações de pessoas proeminentes, livros, filmes e provérbios, e a dar detalhes a respeito deles. Ainda existem muitas coleções online de citações, porém o Wikiquote se distingue por estar entre poucos que proporcionam uma oportunidade dos visitantes de contribuir. As páginas do Wikiquote são ligadas à páginas da Wikipédia sobre personalidades notáveis.", - "wikisource":"A Wikisource — a biblioteca livre — é um projeto da Wikimedia Foundation que, de forma colaborativa, reúne um conjunto de textos que possuam valor histórico-cultural e que sejam compatíveis com a licença GFDL.", + "wikisource":"A Wikisource é um projeto colaborativo da fundação Wikimedia que reúne um conjunto de textos que possuam valor histórico-cultural e que sejam compatíveis com a Licença GNU de Documentação Livre (GFDL).", "wiktionary":"Wikcionário é um projeto web multílingue pertencente à Fundação Wikimedia com a finalidade de criar um dicionário eletrônico de conteúdo livre, disponível em mais de 172 línguas diferentes. Ao contrário do padrão normal de dicionários, este é escrito colaborativamente por voluntários que usam o software wiki, permitindo que os artigos possam ser alterados e modificados por quase todas as pessoas de acesso ao site.", "wikiversity":"Wikiversidade é um projeto da Wikimedia Foundation independente. Após vários meses de ter estado como proposta, Jimmy Wales, durante a Wikimania de 2006, anunciou a aprovação de tal projeto em fase de desenvolvimento, que tem como meta ser um ambiente livre e aberto para educação em todos os níveis mediada pela web e estudos gerais em uma comunidade de pesquisa.", "wikivoyage":"Wikivoyage é um guia de viagens livre, parte da Wikimedia, s da construção colaborativa feita por voluntários, sob os mesmos princípios da Wikipédia. O nome é uma mistura das palavras wiki e Voyage, a palavra francesa para viagem.", "wolframalpha":"Wolfram|Alpha é um mecanismo de conhecimento computacional(computational knowledge engine, em inglês) desenvolvido pela Wolfram Research. É um serviço on-line que responde às perguntas diretamente, mediante o processamento da resposta extraída de base de dados estruturados, em lugar de proporcionar uma lista dos documentos ou páginas web que poderiam conter a resposta, tal como faziam os mecanismos de busca.", "1337x":"1337x é um site, fundado em 2007, que fornece arquivos torrent e links magnéticos para facilitar o compartilhamento de arquivos ponto-a-ponto usando o protocolo BitTorrent.", - "naver":"Naver é um popular portal de busca da Coreia do Sul, com um market share superior a 70%, comparado com 2% do Google. O Naver foi lançado em junho de 1999 por ex-funcionários da Samsung, e estreou como o primeiro portal da Coreia do Sul a usar seu próprio motor de busca. Entre os recursos do Naver está a \"Comprehensive Search\", lançada em 2000, que fornece resultados de várias categorias em uma única página. Desde então, tem agregado novos serviços, como a \"Knowledge Search\", lançada em 2002. Ele também oferece serviços de Internet, incluindo um serviço de notícias, um serviço de e-mail, um serviço de busca de teses acadêmicas e um portal para crianças. Em 2005, Naver lançou Happybean, o primeiro portal de doações online do mundo, que permite aos usuários encontrar informações e fazer doações para mais de 20.000 organizações da sociedade civil e de assistência social.Referências", - "rubygems":"RubyGems é um gerenciador de pacotes para a linguagem de programação Ruby que provê um formato padrão para a distribuição de programas Ruby e bibliotecas em um formato auto-suficiente chamado de gem, uma ferramenta projetada para gerenciar facilmente a instalação de gems, e um servidor para distribui-los. RubyGems foi criado em volta de novembro de 2003 e agora faz parte da biblioteca padrão do Ruby versão 1.9 a diante.Referências", + "naver":"Naver é um popular portal de busca da Coreia do Sul, com um market share superior a 70%, comparado com 2% do Google. O Naver foi lançado em junho de 1999 por ex-funcionários da Samsung, e estreou como o primeiro portal da Coreia do Sul a usar seu próprio motor de busca. Entre os recursos do Naver está a \"Comprehensive Search\", lançada em 2000, que fornece resultados de várias categorias em uma única página. Desde então, tem agregado novos serviços, como a \"Knowledge Search\", lançada em 2002. Ele também oferece serviços de Internet, incluindo um serviço de notícias, um serviço de e-mail, um serviço de busca de teses acadêmicas e um portal para crianças. Em 2005, Naver lançou Happybean, o primeiro portal de doações online do mundo, que permite aos usuários encontrar informações e fazer doações para mais de 20.000 organizações da sociedade civil e de assistência social.", + "rubygems":"RubyGems é um gerenciador de pacotes para a linguagem de programação Ruby que provê um formato padrão para a distribuição de programas Ruby e bibliotecas em um formato auto-suficiente chamado de gem, uma ferramenta projetada para gerenciar facilmente a instalação de gems, e um servidor para distribui-los. RubyGems foi criado em volta de novembro de 2003 e agora faz parte da biblioteca padrão do Ruby versão 1.9 a diante.", "peertube":"PeerTube é uma plataforma de vídeo livre, descentralizada e federada operada por ActivityPub e WebTorrent que usa tecnologia peer-to-peer para reduzir o estresse em servidores individuais ao assistir vídeos.", "rumble":"Rumble é uma plataforma de compartilhamento de vídeo canadense com sede em Toronto. O serviço foi fundado em 2013 por Chris Pavlovski, um empresário de tecnologia do Canadá. A contagem mensal de usuários do Rumble experimentou um rápido crescimento desde julho de 2020, houve um salto de 1,6 milhões de usuários mensais para 31,9 milhões no final do primeiro trimestre de 2021.", "wttr.in":[ - "Previsão do tempo para: Washington, Virginia, United States", + "Previsão do tempo para: Des Moines, Iowa, United States", "https://wttr.in" ], - "brave":"O Brave Search é um mecanismo de pesquisa desenvolvido pela Brave Software, Inc. Em determinados países, ele é definido como o mecanismo de pesquisa padrão para usuários do navegador Brave." + "brave":"O Brave Search é um mecanismo de pesquisa desenvolvido pela Brave Software, Inc. Em determinados países, ele é definido como o mecanismo de pesquisa padrão para usuários do navegador Brave.", + "goo":"goo é um portal e motor de busca da internet sediado no Japão, que organiza e indexa principalmente sites de língua japonesa. goo é operado pela japonesa NTT Resonant, uma subsidiária da NTT Communications." }, "pt-BR":{ "9gag":[ @@ -4558,6 +4750,10 @@ "brave":[ "brave:pt", "ref" + ], + "goo":[ + "goo:pt", + "ref" ] }, "ro":{ @@ -4575,6 +4771,10 @@ "Știri din surse internaționale, naționale și locale, organizate pentru a vă oferi o acoperire detaliată a subiectelor din sport, divertisment, afaceri, politică, meteo și altele.", "https://www.bing.com/news" ], + "bing videos":[ + "Căutarea inteligentă de la Bing facilitează găsirea rapidă a lucrurilor pe care le căutați și vă premiază.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket este un serviciu de găzduire a unui depozit de control al versiunilor web, deținut de Atlassian, pentru proiecte de cod sursă și dezvoltare care utilizează sisteme de control de revizuire Mercurial sau Git. Bitbucket oferă atât planuri comerciale, cât și conturi gratuite.", "currency":"DuckDuckGo este un motor de căutare pe internet care pune accentul pe protejarea confidențialității utilizatorilor. DuckDuckGo se distinge de alte motoare de căutare prin faptul că nu își profilează utilizatorii și arată tuturor utilizatorilor aceleași rezultate ale căutării pentru un anumit termen de căutare.", "deezer":"Deezer este o platformă de distribuire audio care permite utilizatorilor să asculte conținut muzical pe mai multe tipuri de dispozitive, atât online, cât și offline.", @@ -4623,7 +4823,7 @@ "youtube":"YouTube este un Site Web unde utilizatorii pot încărca și viziona materiale audio-video. YouTube a fost creat în februarie 2005 de Chad Hurley, Steve Chen și Jawed Karim. Serviciul cu sediul în San Bruno, California, folosește tehnologia Adobe Flash Player pentru a expune o gamă largă de clipuri video create chiar de utilizatori, incluzând și fragmente din programe de televiziune sau din filme. YouTube face parte din Web 2.0.", "dailymotion":"Dailymotion este o pagină de internet unde utilizatorii pot încărca și vizualiza videoclipuri. Site-ul a fost înființat în 2005 de către doi francezi, Benjamin Bejbaum și Olivier Poitrey. Principalul concurent al site-ului este YouTube. În anul 2010, site-ul al avut o cifră de afaceri de 18 milioane de euro, comparativ cu cele 300 de milioane de euro înregistrate de YouTube.", "vimeo":"Vimeo este un site web ce oferă servicii de video hosting, unde utilizatorii pot încărca, distribui și viziona clipuri video. El a fost fondat de Jake Lodwick și Zach Klein în noiembrie 2004. Ei au părăsit compania în 2007 și 2008 respectiv. Denumirea Vimeo a fost creată de Lodwick și este un joc de cuvinte între video, inserând cuvântul \"me\", ca referință la faptul că site-ul e dedicat clipurilor video realizate de utilizatori, denumirea de asemenea este o anagramă cuvântului \"movie\" (română:film).", - "wikibooks":"Wikibooks, denumit și Wikimedia Free Textbook Project sau Wikimedia-Textbooks, este un wiki destinat creării de manuale cu conținut liber. Este un proiect al Fundației Wikimedia.", + "wikibooks":"Wikimanuale, este un wiki destinat creării de manuale cu conținut liber. Este un proiect al Fundației Wikimedia.", "wikinews":"Wikiștiri este o sursă liberă de știri. Ediția în limba română a fost lansată în 19 ianuarie 2005 și de atunci sunt aproape 1000 de articole scrise.", "wikiquote":"Wikicitat este o sursă liberă de citate. Ediția în limba română a fost lansată în 2004 și de atunci sunt peste 250 pagini de citate scrise.", "wikisource":"Wikisursa este un depozit de texte originale scrise în orice limbă și aflate fie în domeniul public, fie sub o licență liberă compatibilă cu licența GFDL. Acest sit este un proiect multilingv și face parte din Fundația Wikimedia alături de alte proiecte precum Wikipedia, ce își propune să realizeze o enciclopedie cu un conținut liber.", @@ -4649,6 +4849,10 @@ "Упорядочение каналов новостей мирового масштаба, вашей страны, а также местных каналов для получения детального обзора новостей спорта, шоу-бизнеса, деловых новостей, политики, погоды и много другого.", "https://www.bing.com/news" ], + "bing videos":[ + "Интеллектуальный поиск Bing позволяет быстро найти нужную информацию, получая при этом вознаграждение.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket — веб-сервис для хостинга проектов и их совместной разработки, основанный на системах контроля версий Mercurial и Git. По назначению и основным предлагаемым функциям аналогичен GitHub, от которого отличается с одной стороны меньшей пользовательской базой, а с другой, имеет определённые преимущества в плане размещения непубличных репозиториев — возможностью их бесплатного хостинга с ограничением на размер команды не более пяти человек и меньшей арендной платой при большем размере команды, а также управление правами доступа на уровне отдельных ветвей проекта. Если основные преимущества GitHub лежат в области социализации программирования, Bitbucket больше ориентирован на небольшие закрытые команды разработчиков. Слоган сервиса — «Bitbucket is the Git solution for professional teams».", "crossref":"Crossref — официальное агентство регистрации Цифровых Идентификаторов Объекта (DOI) международного DOI фонда. Оно объединяет издателей академических публикаций и создано в 2000 для создания системы персистентных библиографических ссылок в статьях.", "curlie":[ @@ -4663,7 +4867,7 @@ "ref" ], "erowid":"Erowid — некоммерческая общеобразовательная организация, зарегистрированная в Калифорнии, США, расположенная в Северной Калифорнии, собирающая и предоставляющая информацию о растениях и химических веществах, воздействующих на психику человека, а также действиях, способных вызвать изменённые состояния сознания, такие как медитации и осознанные сновидения. Деятельность организации является воплощением на практике посредством интернета стратегии «снижения вреда».", - "wikidata":"«Викида́нные» — совместно редактируемая база знаний, созданная Фондом Викимедиа. Используется для обеспечения централизованного хранения данных, которые могут содержаться в статьях Википедии — например, интервики-ссылок, значков статусных статей и списков или статистической информации: дат рождения, численности населения и т. п. Содержимое Викиданных распространяется по лицензии Creative Commons CC0.", + "wikidata":"«Викида́нные» — совместно редактируемая база знаний, созданная Фондом Викимедиа. Используется для обеспечения централизованного хранения данных, которые могут использоваться в других проектов, в том числе в статьях Википедии — например, интервики-ссылок, значков статусных статей и списков или статистической информации: дат рождения, численности населения и т. п. Содержимое Викиданных распространяется по лицензии Creative Commons CC0.", "duckduckgo":[ "currency:ru", "ref" @@ -4701,7 +4905,7 @@ "gpodder":"gPodder — кросплатформенная компьютерная программа для управления подкастами, RSS-агрегатор с открытым исходным кодом, написанный на языке программирования Python.", "habrahabr":"Хабр — русскоязычный веб-сайт в формате системы тематических коллективных блогов с элементами новостного сайта, созданный для публикации новостей, аналитических статей, мыслей, связанных с информационными технологиями, бизнесом и интернетом. Основан Денисом Крючковым в июне 2006 года.", "hoogle":"Haskell — стандартизированный чистый функциональный язык программирования общего назначения. Является одним из самых распространённых языков программирования с поддержкой отложенных вычислений. Система типов — полная, сильная, статическая, с автоматическим выводом типов, основанная на системе типов Хиндли — Милнера. Поскольку язык функциональный, то основная управляющая структура — это функция.", - "imdb":"Internet Movie Database — веб-сайт со свободно редактируемой и крупнейшей в мире базой данных о кинематографе. По состоянию на январь 2021 года, в базе собрана информация о более чем 6,5 млн кинофильмов, телесериалов и отдельных их серий, а также о 10,4 млн персоналий, связанных с кино и телевидением, — актёрах, режиссёрах, сценаристах и других.", + "imdb":"Internet Movie Database — веб-сайт с условно свободно редактируемой и крупнейшей в мире базой данных о кинематографе. По состоянию на январь 2021 года, в базе собрана информация о более чем 6,5 млн кинофильмов, телесериалов и отдельных их серий, а также о 10,4 млн персоналий, связанных с кино и телевидением, — актёрах, режиссёрах, сценаристах и других.", "ina":"Национальный институт аудиовизуала — общественное учреждение, имеющее промышленный и коммерческий характер.", "invidious":[ "альтернативный фронтенд для YouTube", @@ -4756,13 +4960,13 @@ "wikivoyage":"«Викиги́д» — открытый многоязычный некоммерческий вики-проект по созданию силами добровольцев свободных туристических путеводителей по всему миру. Один из википроектов, поддерживаемых фондом «Викимедиа» и расположенный на его серверах, братский проект по отношению к «Википедии» и прочим проектам фонда. Сайт проекта — wikivoyage.org.", "wolframalpha":"Wolfram|Alpha — база знаний и набор вычислительных алгоритмов, вопросно-ответная система. Запущена 15 мая 2009 года.", "seznam":"Seznam.cz — чешский интернет-портал. Был основан Иво Лукачовичем в 1996 году, став одной из первых поисковых систем и одним из первых каталогов интернет-сайтов в Чехии.", - "naver":"Naver — крупнейший интернет-портал и самая популярная поисковая система в Южной Корее. На него приходится 70% поисковых запросов в стране. Принадлежит компании Naver Corporation. Был открыт в 1999 году. Тогда Naver первым из корейских интернет-порталов разработал свою собственную поисковую систему.", + "naver":"Naver — крупнейший интернет-портал и самая популярная поисковая система в Южной Корее. На него приходится 70 % поисковых запросов в стране. Принадлежит компании Naver Corporation. Был открыт в 1999 году. Тогда Naver первым из корейских интернет-порталов разработал свою собственную поисковую систему.", "rubygems":"RubyGems (от англ. gem, gems— драгоценный камень) — система управления пакетами для языка программирования Руби, которая предоставляет стандартный формат для программ и библиотек Руби, инструменты, предназначенные для простого управления установкой «gems», и сервер для их распространения.", "peertube":"PeerTube — децентрализованный, федеративный видеохостинг с открытым исходным кодом, основанный на технологиях ActivityPub и WebTorrent. Создан в 2017 году разработчиком с ником Chocobozzz, в дальнейшем поддержку разработки взяла на себя французская некоммерческая организация Framasoft.", "rumble":"Rumble — канадский видеохостинг и облачная система хранения, имеющий штаб-квартиры в канадском Торонто и Лонгбот-Ки. Основан в октябре 2013 года канадским предпринимателем Крисом Павловски.", "wordnik":"Wordnik (wordnik.com) — интернет-сайт, разрабатываемый одноименной некоммерческой организацией, представляющий собой онлайн-словарь английского языка и языковой ресурс для словарей и тезауруса. Часть контента, представленного Wordnik, основывается на известных печатных словарях английского языка, таких как Century Dictionary, American Heritage Dictionary, WordNet и GCIDE. Wordnik собрал корпус из миллиардов слов, которые используются на сайте для отображения примеров предложений, что позволяет ему предоставлять информацию о гораздо большем наборе слов, чем в обычном словаре. Wordnik использует как можно больше реальных примеров при определении слова.", "wttr.in":[ - "Прогноз погоды: Washington, Virginia, United States", + "Прогноз погоды: Des Moines, Iowa, United States", "https://wttr.in" ] }, @@ -4805,6 +5009,10 @@ "Správy zo sveta, z vašej krajiny a miestne správy. Usporiadané sú tak, aby ste získali podrobný prehľad o správach z oblastí športu, zábavy, obchodu, politiky, počasia a ďalších.", "https://www.bing.com/news" ], + "bing videos":[ + "Inteligentné vyhľadávanie v službe Bing umožňuje rýchle nájdenie toho, čo hľadáte, a odmeňuje vás.", + "https://www.bing.com/videos" + ], "deviantart":"DeviantArt je celosvetová internetová komunita, v ktorej jej členovia prezentujú svoje umelecké diela rozličných smerov a štýlov.", "wikidata":"Wikiúdaje je projekt kolektívne upravovanej podpornej databázy pre Wikipédiu. S návrhom projektu prišla nemecká pobočka nadácie Wikimedia, Wikimedia Deutschland. Wikiúdaje majú vytvoriť spoločné úložisko databázových údajov, podobne ako je Wikimedia Commons spoločné úložisko pre fotografie alebo zvukové súbory, ktoré potom môžu byť používané inými projektmi. Je to prvý nový projekt nadácie od roku 2006, kedy bola spustená Wikiverzita.", "flickr":"Flickr je komunitná webová lokalita pre zdieľanie fotografií a videa vytvorená spoločnosťou Ludicorp, ktorú neskôr získala spoločnosť Yahoo!. Bol tiež jedným z prvých serverov Webu 2.0, ktorý umožňoval používať tagy. Používatelia môžu svoje fotografie a videá umiestniť do mapy. V septembri 2010 bolo oznámené, že Flickr zdieľa viac ako 5 miliárd obrázkov. V máji 2013 bolo oznámené, že Flickr zdieľa viac ako 8 miliárd obrázkov.", @@ -4855,14 +5063,14 @@ "apple app store":"App Store je program za naprave iPhone, iPod Touch in iPad razvijalca Apple Inc., namenjen dostopu do spletne trgovine iTunes Store in prenosu aplikacij za operacijski sistem iPhone OS, ki jih uporabnik kupi v tej trgovini.", "arxiv":"arXiv [arhájv] je spletni arhiv elektronskih preprintov znanstvenih člankov s področja matematike, fizike, astronomije, astrofizike, fizikalne kozmologije, računalništva, kvantitativne biologije, statistike in kvantitativnega finančništva. Na mnogih področjih matematike in fizike je skoraj večina znanstvenih člankov arhiviranih v arhivu arXiv. 3. oktobra 2008 je število člankov na arXiv.org preseglo pol milijona. 14. avgusta 2011 je arhiv deloval že dvajset let. Do leta 2014 je stopnja predložitve člankov narasla na več kot 8000 na mesec.", "wikipedia":"Wikipedija [vikipedíja] ali Vikipedija je prosta spletna enciklopedija, ki nastaja s sodelovanjem stotisočev prostovoljcev z vsega sveta. Vsebuje geselske članke v več kot 300 različnih jezikih in njihovih različicah, sponzorira pa jo nepridobitna Fundacija Wikimedia. Zajema tradicionalne enciklopedične teme, obenem pa služi tudi kot almanah in zbornik. Ustanovitelj Jimmy Wales jo opisuje kot »poskus, da bi ustvarili in ponudili prosto enciklopedijo najvišje mogoče kakovosti prav vsakemu posamezniku v njegovem lastnem jeziku.« Wikipedija je eno od največkrat navedenih spletišč in dnevno doživi okoli 50 milijonov obiskov.", - "bing images":[ - "V Bingu si vsak dan oglejte priljubljene slike, slike za ozadje, GIF-e in zamisli.", - "https://www.bing.com/images" - ], "bing news":[ "Svetovne novice ter nacionalni in lokalni viri novic, ki vam omogočajo pregled novic o športu, zabavi, poslovanju, politiki, vremenu in drugem.", "https://www.bing.com/news" ], + "bing videos":[ + "Pametno iskanje v Bingu vam omogoča, da hitro najdete, kar iščete, in vas nagradi.", + "https://www.bing.com/videos" + ], "wikidata":"Wikipodatki so prosta in odprta spletna zbirka znanj, zgrajena z wiki tehnologijo, ki jo upravlja Fundacija Wikimedia. Predstavlja strukturirano zbirko določenih tipov podatkov, ki jih je možno urejati in brati tako ročno, kot strojno.", "flickr":"Flickr je spletno mesto, ki omogoča gostovanje za slike in videoposnetke. Namenjeno je urejanju fotografij in videa ter deljenju vsebine uporabnikov z drugimi uporabniki.", "gentoo":[ @@ -4901,7 +5109,7 @@ "wikiquote":"Wikinavedek je prosta spletna zbirka navedkov v vseh jezikih, ki zajemajo vire, prevode v različne jezike in povezave na Wikipedijo, Wikivir, Wikislovar, Wikiknjige in ostale projekte za več informacij.", "wikisource":"Wikivir je spletna digitalna knjižnica, zgrajena s tehnologijo wiki, ki deluje kot sestrski projekt Wikipedije pod okriljem neprofitne Fundacije Wikimedia.", "wiktionary":"Wikislovar je sorodni projekt Wikipedije. Wikislovar je prosti večjezični slovar z definicijami, izvorom besed, naglaševanjem in navedki.", - "wikiversity":"Wikiverza je prosta spletna univerza in ena izmed projektov Fundacije Wikimedije. Zasnovana je večjezično in je trenutno prevedena v štirinajst jezikov. Uradno se je projekt v angleščini, s polstabilno verzijo, začel 15. avgusta 2006, slovenska različica pa je nastala 27. marca 2012.", + "wikiversity":"Wikiverza je prosta spletna univerza in ena izmed projektov Fundacije Wikimedia. Zasnovana je večjezično in je trenutno prevedena v štirinajst jezikov. Uradno se je projekt v angleščini, s polstabilno verzijo, začel 15. avgusta 2006, slovenska različica pa je nastala 27. marca 2012.", "wikivoyage":"Wikipotovanje je spletni popotniški vodnik, osnovan na sistemu wiki, ki ga ustvarjajo prostovoljni pisci z vsega sveta. Ime je sestavljeno iz besed »Wiki« in »Voyage«, francoske besede za potovanje. Z njim upravlja Fundacija Wikimedia, ki je krovna organizacija za Wikipedijo in sorodne projekte zbiranja in razširjanja prosto dostopnega znanja.", "wolframalpha":"Wolfram Alpha je iskalnik/orakelj, ki ga je razvilo podjetje Wolfram Research. Spletni servis namesto klasičnega seznama spletnih strani skuša odgovoriti na zastavljeno vprašanje." }, @@ -4919,6 +5127,10 @@ "Вести из светских, националних и локалних извора, организоване тако да добијате детаљне вести о спорту, забави, послу, политици, времену и о многим другим областима.", "https://www.bing.com/news" ], + "bing videos":[ + "Паметна претрага услуге Bing помаже вам да брже пронађете оно што тражите и награђује вас.", + "https://www.bing.com/videos" + ], "deezer":"francuski je onlajn muzički striming servis. Omogućava korisnicima da slušaju muzički sadržaj od većine svetskih izdavačkih kuća, uključujući i — na raznim uređajima, onlajn i oflajn. Sadrži i mnogo otpremljenih pesama starih/istorijskih izvođača. Nastao je u Parizu (Francuska), a ima preko 53 miliona licenciranih numera (2019) u svojoj biblioteci, s preko 30.000 radijskih kanala, 14 miliona mesečno aktivnih korisnika i 6 miliona plaćenih pratilaca. Servis je dosputan za veb, i.", "deviantart":"DeviantArt je onlajn zajednica za umetnička dela, videografiju i fotografiju. Sajt je 7. avgusta 2000. pokrenuo Angelo Sotira, Scott Jarkoff, Matthev Stephens i drugi. Radovi su organizovani u strukturu kategorije, uključujući fotografiju, digitalnu umetnost, tradicionalnu umetnost, književnost, Fleš, snimanje filmova, skinove za aplikacije, uslužne programe za prilagođavanje operativnog sistema i druge, zajedno sa resursima za preuzimanje kao što su tutorijali i fotografije. Dodatne funkcije uključuju \"časopise\", \"ankete\", \"grupe\" i \"portfolije\".", "wikidata":"Википодаци је база знања коју колаборативно уређују корисници и коју одржава Фондација Викимедија. Сврха јој је да буде заједнички извор одређених врста података, које користе други Викимедијини пројекти као што је Википедија. У том смислу је слична Викимедијиној остави где се складиште медијске датотеке којима се приступа са других Викимедијиних пројекта.", @@ -4989,6 +5201,10 @@ "Nyheter från globala, nationella och lokala nyhetskällor som ordnats så att du enkelt får detaljerade nyheter om sport, underhållning, affärer, politik, väder och mycket mer.", "https://www.bing.com/news" ], + "bing videos":[ + "Med intelligent sökning från Bing hittar du snabbt och enkelt det du söker, och du får belöningar.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket är en webbaserad lagringstjänst för kodprojekt som använder Mercurial eller Git. Tjänsten startades 2008 av Jesper Nøhr och köptes upp av det australiensiska företaget Atlassian i september 2010.", "currency":"Duckduckgo är en söktjänst som fokuserar på användarnas personliga integritet och anonymitet. Potentiell personidentifierande information sägs varken lagras vid besök på webbplatsen eller associeras med söktermer, vilket även gäller IP-adresser. Inget skickas heller till någon tredje part.", "deezer":"Deezer är en webbaserad musiktjänst som även har mobilappar. Tjänsten lanserades 2007 i Frankrike av Jonathan Benassaya.", @@ -5062,16 +5278,24 @@ "wikiversity":"Wikiversity är en wiki som ägs av Wikimedia Foundation med syftet att låta användare skapa, dela och ta del av öppna läromedel och forskningspublikationer. Denna typ av material är i allmänhet inte tillåtet på Wikipedia, eftersom det inte har encyklopedisk karaktär och kan innehålla originalforskning som inte kan bekräftas med källreferenser.", "wikivoyage":"Wikivoyage är en fri reseguide på flera språk, utvecklad av en användargemenskap. Reseguiden skrivs över Internet med wiki-teknik. Wikivoyage startades i september 2006 som en fork av Wikitravels tyskspråkiga version och fungerar sedan november 2012 som ett av Wikimedia Foundations projekt. Wikivoyage finns 2016 på 18 språk, bland annat svenska. Varje språkversion är självständig vad gäller innehåll och administration.", "wolframalpha":"Wolfram Alpha är ett sökmotorliknande internetverktyg som utvecklats av Wolfram Research.", - "peertube":"Peertube, i marknadsföringssyfte skrivet PeerTube, är en fritt licensierad, decentraliserad, Activitypub-federerad videoplattform som använder WebTorrent- och peer-to-peer-teknik för att minska belastningen på enskilda servrar när videor visas." + "peertube":"Peertube, i marknadsföringssyfte skrivet PeerTube, är en fritt licensierad, decentraliserad, Activitypub-federerad videoplattform som använder WebTorrent- och peer-to-peer-teknik för att minska belastningen på enskilda servrar när videor visas.", + "wttr.in":[ + "Väderleksprognos för: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "ta":{ "artic":"ஆர்ட் இன்ஸ்டியூட் ஆப் சிகாகோ என்பது ஐக்கிய அமெரிக்காவின் சிகாகோ நகரில் அமைந்துள்ள கலைக்களஞ்சிய அருங்காட்சியகம் ஆகும். இவ்வருங்காட்சியகம் மிகப்பிரம்மாண்டமான மூன்று கட்டடங்களில் இயங்குகிறது. இம்மூன்று கட்டடங்களும் முதல் தளத்துடன் இணைக்கப்பட்டுள்ளன.", - "wikipedia":"விக்கிப்பீடியா என்பது, வணிக நோக்கற்ற விக்கிமீடியா நிறுவனத்தின் உதவியுடன் நடத்தப்படும், கூட்டாகத் தொகுக்கப்படும், பன்மொழி, கட்டற்ற இணையக் கலைக்களஞ்சியமாகும். தமிழ் விக்கிப்பீடியாவின் 1,00,000க்கும் மேற்பட்ட கட்டுரைகளுடன் சேர்த்து இதன் மொத்தக் கட்டுரைகளான 24 மில்லியன் கட்டுரைகளும் உலகெங்கிலுமுள்ள தன்னார்வலர்களால் கூட்டாக எழுதப்படுகின்றன. பெரும்பாலும் இதன் எல்லாக் கட்டுரைகளும், இதனைப் பயன்படுத்தும் எவராலும், தொகுக்கப்படக் கூடுவன. மேலும் இது கிட்டத்தட்ட 100,000 முனைப்பான பங்களிப்பாளர்களையும் கொண்டுள்ளது. திசம்பர் 2022 வரையில், விக்கிப்பீடியா 285 மொழிகளில் செயற்படுகிறது. இது இணையத்தளத்தில் இயங்கும் உசாத்துணைப் பகுதிகளிலேயே மிகவும் பெரியதும், அதிகப் புகழ்பெற்றதுமாகும். மேலும், இது அலெக்சா இணையத்தளத்தில் காணப்படும் இணையத்தளங்களின் தரவரிசையில் ஆறாவது இடத்தில் உள்ளதோடு, உலகளவில் அண்ணளவாக 365 மில்லியன் வாசகர்களையும் கொண்டுள்ளது.", + "wikipedia":"விக்கிப்பீடியா என்பது, வணிக நோக்கற்ற விக்கிமீடியா நிறுவனத்தின் உதவியுடன் நடத்தப்படும், கூட்டாகத் தொகுக்கப்படும், பன்மொழி, கட்டற்ற இணையக் கலைக்களஞ்சியமாகும். தமிழ் விக்கிப்பீடியாவின் 1,00,000க்கும் மேற்பட்ட கட்டுரைகளுடன் சேர்த்து இதன் மொத்தக் கட்டுரைகளான 24 மில்லியன் கட்டுரைகளும் உலகெங்கிலுமுள்ள தன்னார்வலர்களால் கூட்டாக எழுதப்படுகின்றன. பெரும்பாலும் இதன் எல்லாக் கட்டுரைகளும், இதனைப் பயன்படுத்தும் எவராலும், தொகுக்கப்படக் கூடுவன. மேலும் இது கிட்டத்தட்ட 100,000 முனைப்பான பங்களிப்பாளர்களையும் கொண்டுள்ளது. பெப்ரவரி 2023 வரையில், விக்கிப்பீடியா 285 மொழிகளில் செயற்படுகிறது. இது இணையத்தளத்தில் இயங்கும் உசாத்துணைப் பகுதிகளிலேயே மிகவும் பெரியதும், அதிகப் புகழ்பெற்றதுமாகும். மேலும், இது அலெக்சா இணையத்தளத்தில் காணப்படும் இணையத்தளங்களின் தரவரிசையில் ஆறாவது இடத்தில் உள்ளதோடு, உலகளவில் அண்ணளவாக 365 மில்லியன் வாசகர்களையும் கொண்டுள்ளது.", "bing":"பிங் (Bing) என்பது மைக்ரோசாப்ட் நிறுவத்திற்குச் சொந்தமான வலைத் தேடல் பொறி ஆகும். இத்தேடல் பொறியானது முன்னர் லைவ் சேர்ச், வின்டோசு லைவ் சேர்ச், எம்எஸ்என் சேர்ச் ஆகிய பெயர்களைக் கொண்டு அமைந்திருந்தது. இத்தேடல் பொறி மைக்ரோசாப்ட் நிறுவனத்தினால் முடிவெடுக்கும் பொறியாக விளம்பரப்படுத்தப்பட்டது. 2009 ஆம் ஆண்டு மே மாதம் 28 ஆம் திகதியன்று சான் டியேகோ நகரில் இடம்பெற்ற ஆல் திங்ஸ் டிஜிட்டல் (All Things Digital) மாநாட்டின் போது மைக்ரோசாப்ட் நிறுவனத்தின் முன்னாள் தலைமை நிர்வாக அதிகாரி இசுட்டீவ் பால்மரால் இத்தேடல் பொறி அறிமுகப்படுத்தப்பட்டு சூன் 1 இல் வெளியிடப்படும் எனவும் அறிவிக்கப்பட்டது.. 2009 ஆம் ஆண்டு சூன், 29 ஆம் திகதியன்று யாகூ! தேடல் பொறியினை பிங் தேடல் பொறி நிர்வகிக்கும் என அறிவிக்கப்பட்டது.", "bing images":[ "bing:ta", "ref" ], + "bing videos":[ + "Bing-இன் அறிவார்ந்த தேடலானது, நீங்கள் தேடுவதை விரைவாக கண்டறிவதை எளிதாக்கி உங்களுக்கு வெகுமதிகளையும் வழங்குகிறது.", + "https://www.bing.com/videos" + ], "currency":"டக்டக்கோ என்பது இணையத்தில் உள்ள ஒரு தேடுபொறியாகும். இந்த தேடுபொறி ஆனது ஒருவர் இணையத்தில் என்ன தேடுகிறார் என்பதை பற்றி எந்த விதமான பின்குறிப்பும் எடுத்து வைக்காது ஒருவரது அந்தரங்க தகவல்களை குறித்த தடங்களை பின் தொடராது. மேலும் வினவுகளுக்கு மிக சிறந்த பதில்களை தரவல்லது. இந்த தேடுபொறியை கப்ரியல் வேயன்பெர்க் என்பவர் நிறுவினார், இவரே இதன் தலைமை நிர்வாக அதிகாரியும் ஆவார். இந்த தேடுபொறி நிறுவனம் 2008 ஆம் ஆண்டு பிப்ரவரி மாதம் அமெரிக்காவின், பென்சில்வேனியா மாகாணத்தில் உள்ள வேலிஃபோர்ஜில் (valleyforge) நிறுவப்பட்டது", "ddg definitions":[ "currency:ta", @@ -5129,14 +5353,22 @@ "wikiversity":"விக்கிப்பல்கலைக்கழகம் (Wikiversity) என்பது கற்கும் கூட்டத்தினருக்கும் அவர்கள் கற்பதற்குத் தேவையான குறிப்புகளுக்கும் உதவி வழங்கும் விக்கிமீடியாத் திட்டமாகும். இத்திட்டமானது விக்கிப்பீடியா போன்ற கலைக்களஞ்சியத் திட்டங்களிலிருந்து பெரிதும் வேறுபடுகின்றது.", "wikivoyage":"விக்கிப்பயணம் (Wikivoyage) என்பது சுற்றலா செல்வோருக்கு ஒரு ந்ல்ல வழிகாட்டியானதும் பயண இலக்குகளுக்கு வழிகாட்டுவதுமான இணையத்தில் உள்ள ஒரு இலவசப் பயண வழிகாட்டி ஆகும். இங்குள்ள பயணத்தலைப்புக்கள் தன்னார்வ ஆசிரியர்களால் எழுதப்பட்டது ஆகும்.", "wolframalpha":"வொல்பிராம் அல்பா (Wolfram|Alpha) என்பது ஒரு கேள்விகளுக்குப் பதிலளிக்கும் இயந்திரம். இது மதமட்டிக்கா மென்பொருளை உருவாக்கிய வொல்பிராம் ஆய்வு நிறுவனத்தால் உருவாக்கப்பட்டது. கேள்விகள் இலக்கணப் பகுப்பாய்வு செய்யப்பட்டு, கணிக்கூடியவாறு ஒழுங்கமைக்கப்பட்ட தரவுகளைக் கொண்டு விடைகள் தருவிக்கப்படுகின்றன. துறைசார் கேள்விகளுக்கு இது துல்லியமான பதில்களைத் தரக்கூடியது.", - "rubygems":"ரூபி செம்சு (RubyGems) என்பது ரூபி நிரலாக்க மொழிக்கான ஒரு பொது மேலாண்மைக் கருவி ஆகும். ரூபி நிரல்களையும் காப்பகங்களையும் விநியோகிப்பதற்கான தரப்படுத்தப்பட்ட முறை இதுவாகும். இதனைப் பயன்படுத்தி இவற்றை இலகுவாக நிறுவி மேலாண்மை செய்ய முடியும். ரூபி 1.9 மற்றும் அதன் பின்னர் வெளியிடப்பட்ட அனைத்து பதிவுகளிலும் ரூபி செம்சு ஒரு பகுதியாக உள்ளடக்கப்பட்டுள்ளது." + "rubygems":"ரூபி செம்சு (RubyGems) என்பது ரூபி நிரலாக்க மொழிக்கான ஒரு பொது மேலாண்மைக் கருவி ஆகும். ரூபி நிரல்களையும் காப்பகங்களையும் விநியோகிப்பதற்கான தரப்படுத்தப்பட்ட முறை இதுவாகும். இதனைப் பயன்படுத்தி இவற்றை இலகுவாக நிறுவி மேலாண்மை செய்ய முடியும். ரூபி 1.9 மற்றும் அதன் பின்னர் வெளியிடப்பட்ட அனைத்து பதிவுகளிலும் ரூபி செம்சு ஒரு பகுதியாக உள்ளடக்கப்பட்டுள்ளது.", + "wttr.in":[ + "வானிலை அறிக்கை Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "te":{ "wikipedia":"వికీపీడియా, వివిధ భాషల్లో లభించే ఒక స్వేచ్ఛా విజ్ఞాన సర్వస్వం. దీన్ని లాభాపేక్ష రహిత సంస్థ వికీమీడియా ఫౌండేషన్ నిర్వహిస్తుంది. వికీ అనగా అనేక మంది సభ్యుల సమష్టి కృషితో సులభంగా వెబ్ సైటును సృష్టించగల ఒక సాంకేతిక పరిజ్ఞానం. ఎన్‌సైక్లోపీడియా అనగా సర్వ విజ్ఞాన సర్వస్వం. వికీపీడియా అనేపదం ఈ రెండు పదాల నుంచి ఉద్భవించింది. ఇది 2001లో జిమ్మీ వేల్స్, లారీ సాంగర్లచే ప్రారంభించబడింది. అప్పటి నుంచి అత్యంత వేగంగా ఎదుగుతూ, ఇంటర్నెట్లో అతి పెద్ద వెబ్ సైట్లలో ఒకటిగా ప్రాచుర్యం పొందింది.నేను మీ వ్యాపార వెబ్‌సైట్ ఇండియాను ఆశీర్వదిస్తున్నాను మరియు ప్రపంచ ప్రసిద్ధి చెందిన మీ సంతోషకరమైన ధన్యవాదాలు", "bing images":[ - "Bingలో ప్రతిరోజూ జనాదరణ పొందుతున్న చిత్రాలు, వాల్పేపర్లు, GIF, బహుమతులు, ఆలోచనలను చూడండి.", + "మీ ఆసక్తులకు అనుగుణంగా ఫీడ్ చూడండి", "https://www.bing.com/images" ], + "bing videos":[ + "Bingలోని మేధావి శోధన ద్వారా మీరు వెతుకుతున్నది క్షణాల్లో కనుగొనగలరు మరియు రివార్డ్‌లను పొందగలరు.", + "https://www.bing.com/videos" + ], "wikidata":"వికీడేటా అనేది వికీమీడియా ఫౌండేషన్ అందచేస్తున్న సహకారంతో సవరించగల జ్ఞాన భాండారము. ఇది ఒక సాధారణ స్వేచ్ఛా డేటా మూలం. దీనిని వికీపీడియా లాంటి వికీమీడియా ప్రాజెక్టులలో వాడతారు, ఇది ప్రజోపయోగ పరిధి షరతులతో అందుబాటులో ఉంది. మీడియా ఫైళ్ళకు నిల్వ ప్రాజెక్టు వికీమీడియా కామన్స్లాగా, ఇది అన్ని వికీమీడియా ప్రాజెక్టుల కోసం జ్ఞాన భాండాగారం. వికీడేటా సాఫ్ట్‌వేర్ ను వికీబేస్(Wikibase) గా వ్యవహరిస్తారు.", "gentoo":[ "gentoo:ru", @@ -5162,7 +5394,11 @@ "wikibooks":"వికీబుక్స్ స్వేచ్ఛానకలుహక్కులతో సమష్టిగా తయారు చేయగల పుస్తకాల జాల స్థలి. ఇది 2004 ఆగస్టు 13న ప్రారంభమైంది. వికీ ప్రాజెక్టులన్నిటిలోఅతితక్కువ వ్యాసపేజీలు ఉన్నాయి. దీనిలో ఉబుంటు వాడుకరి మార్గదర్శిని పూర్తికాబడిన పుస్తకం. దీనిలో ఉబుంటుతో తెలుగులో టైపు చేయడం దగ్గరనుండి, ఉత్తరములు వ్రాయుట, ప్రదర్శన పత్రములు చేయుట, వివిధ రకాల ధ్వని, దృశ్య శ్రవణ మాధ్యమములను నడుపుట, వాడబడే విహరిణులు లాంటివన్నీ ఎలా చేయవచ్చో వివరించటమైనది. ఇంకా వంట పుస్తకం ప్రారంభించబడింది. వికీసోర్స్ లో ఉండవలసిన కొన్ని వ్యాసాలు పొరపాటున వికీబుక్స్ లో సృష్టించబడినవి. ఈ ప్రాజెక్టు ప్రధాన ఉద్దేశం పాఠ్యపుస్తకాలు సమష్టిగా వృద్ధిచేయటం. ఏప్రిల్ 2010 అలెక్సా లెక్కల ప్రకారం ప్రపంచంలోని జాలస్థలులన్నిటిలో 2,462వ స్థానములోఉన్నది.", "wikiquote":"వికీకోట్ అనగా వికీవ్యాఖ్య .వికీమీడియా ఫౌండేషను ఆధ్వర్యములో మీడియావికీ సాఫ్టువేరుతో నడిచే వికీ ఆధారిత ప్రాజెక్టు కుటుంబములో ఒక ప్రాజెక్టు. డేనియల్ ఆల్స్టన్ యొక్క ఆలోచనను బ్రయన్ విబ్బర్ కార్యాచరణలో పెట్టగా రూపొందిన ఈ ప్రాజెక్టు యొక్క లక్ష్యం సమిష్టి సమన్వయ కృషితో వివిధ ప్రముఖ వ్యక్తులు, పుస్తకాలు, సామెతలనుండి సేకరించిన వ్యాఖ్యల యొక్క విస్తృత వనరును తయారుచేసి వాటికి సంబంధించిన వివరాలు పొందుపరచడం. అనేక అన్లైన్ వ్యాఖ్యల సేకరణలు ఉన్నప్పటికీ సందర్శకులను సేకరణ ప్రక్రియలో పాలుపంచుకొనే అవకాశము ఇస్తున్న అతికొద్ది వాటిల్లో వికీవ్యాఖ్య ఒకటిగా విశిష్ఠత సంపాదించుకొన్నది.", "wikisource":"వికీసోర్స్ స్వేచ్ఛా నకలు హక్కుల రచనలను ప్రచురించుటకు సముదాయసభ్యులు సేకరించి, నిర్వహించుచున్న ఒక స్వేచ్ఛాయుత గ్రంథాలయము. దీనిని 2005 ఆగస్టు 19 న ప్రారంభమైంది. ప్రారంభంలో విశేషంగా కృషిచేసినవాడుకరులు అన్వేషి, రాజ్, రాజశేఖర్ (Rajasekhar1961), మల్లిన నరసింహారావు, తాడేపల్లి (Tadepally), వైఙాసత్య, రాకేశ్వర, సురేష్ (Sureshkvolam), సుజాత. అన్వేషి ఏప్రిల్ నుండి డిసెంబరు 2007 మధ్య శతకాలు, భగవద్గీత, వాల్మీకి రామాయణం మొదలగునవి వికీసోర్స్ లో చేర్చాడు. తరువాత వికీసోర్స్ కి కావలసిన మూసలు తెలుగుసేత, డాక్యుమెంటేషన్ పేజీలు తయారుచేయడం, రచనలు చేర్చడం మొదలగు మెరుగులుచేశాడు. ఫ్రూఫ్ రీడ్ ఎక్స్టెన్షన్ వాడుటకు చేసిన ప్రయత్నం మధ్యలో ఆగిపోయింది. 2012లో అది పూర్తి కావించబడింది. వైఙాసత్య దీనిలో తెలుగు నేరుగా టైపు చేసేసౌకర్యం కలిగించాడు, మొల్ల రామాయణం చేర్చటానికి కృషి చేసాడు.", - "wiktionary":"విక్షనరీ, వికీపీడియా యొక్క సోదర వెబ్ సైట్. ఈ పదం వికి, డిక్షనరి పదాలను కలుపగా తయారయ్యినది. ఇది తెలుగు పదాలను వివిధమైన వ్యాకరణ, వాడుక, నానార్ధ, వ్యతిరేఖార్థ లాంటి వివరణలతో నిక్షిప్తం చేసే మాధ్యమము (నిఘంటువు). అయితే పుస్తక రూపంలో వుండే నిఘంటువులు మహా అయితే మూడు భాషలలో వుంటాయి. దీనిలో తెలుగు-తెలుగు, ఇంగ్లీషు-తెలుగుతో పాటు ఇతర విక్షనరీలోని సమాన అర్థం గల పదాలకు లింకులుండటంవలన, మీకు ప్రపంచంలోని వికీ భాషలన్నిటిలో సమాన అర్థంగల పదాలను తెలుసుకునే వీలుండటంతో, దీనిని బహుభాష నిఘంటువుగా పేర్కొనవచ్చు. తెలుగు వికీపీడియాలో లాగా, ఇందులో ఎవరైనా తెలుగు పదాలకు పేజీలను సృష్టించవచ్చు లేక మార్పులు చేయవచ్చు." + "wiktionary":"విక్షనరీ, వికీపీడియా యొక్క సోదర వెబ్ సైట్. ఈ పదం వికి, డిక్షనరి పదాలను కలుపగా తయారయ్యినది. ఇది తెలుగు పదాలను వివిధమైన వ్యాకరణ, వాడుక, నానార్ధ, వ్యతిరేఖార్థ లాంటి వివరణలతో నిక్షిప్తం చేసే మాధ్యమము (నిఘంటువు). అయితే పుస్తక రూపంలో వుండే నిఘంటువులు మహా అయితే మూడు భాషలలో వుంటాయి. దీనిలో తెలుగు-తెలుగు, ఇంగ్లీషు-తెలుగుతో పాటు ఇతర విక్షనరీలోని సమాన అర్థం గల పదాలకు లింకులుండటంవలన, మీకు ప్రపంచంలోని వికీ భాషలన్నిటిలో సమాన అర్థంగల పదాలను తెలుసుకునే వీలుండటంతో, దీనిని బహుభాష నిఘంటువుగా పేర్కొనవచ్చు. తెలుగు వికీపీడియాలో లాగా, ఇందులో ఎవరైనా తెలుగు పదాలకు పేజీలను సృష్టించవచ్చు లేక మార్పులు చేయవచ్చు.", + "wttr.in":[ + "వాతావరణ సమాచారము: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "th":{ "9gag":"9แก๊ก เป็นเว็บไซต์ขำขันภาษาอังกฤษซึ่งดำเนินการโดยกลุ่ม Rollin' Egg โดยเป็นที่รู้จักเนื่องจากเว็บไซต์นี้มักนำอินเทอร์เน็ตมีมมาใช้บ่อยครั้งเพื่อสร้างความบันเทิง", @@ -5178,6 +5414,10 @@ "ข่าวสารจากแหล่งข่าวทั่วโลก ในประเทศและท้องถิ่น เพื่อนำข่าวเชิงลึกที่ครอบคลุมทั้งข่าวกีฬา บันเทิง ธุรกิจ การเมือง การพยากรณ์อากาศ และอื่นๆ อีกมากมายมาให้คุณ", "https://www.bing.com/news" ], + "bing videos":[ + "การค้นหาอัจฉริยะของ Bing ช่วยให้การค้นหาสิ่งที่คุณต้องการอย่างรวดเร็วทำได้ง่ายขึ้น และคุณยังได้รับรางวัลอีกด้วย", + "https://www.bing.com/videos" + ], "currency":"ดักดักโก เป็นบริษัทที่ให้บริการเสิร์ชเอนจินที่มุ่งเน้นเรื่องความเป็นส่วนตัวและมีตัวกรองไม่ให้มีผลการค้นหาเฉพาะบุคคล โดยทางดักดักโกใช้ API ร่วมกับเว็บไซต์อื่น ๆ เพื่อแสดงผลการสืบค้นข้อมูลอย่างรวดเร็ว นอจากนั้น ดึงผลการสืบค้นจากแหล่งอื่น ๆ เพิ่มเติม และใช้โปรแกรมรวบรวมข้อมูลของตัวเอง นอกจากนั้น ดักดักโกถือเป็นหนึ่งในบริการที่ถูกรัฐบาลจีนปิดกั้นการใช้งานจากประเทศจีน", "deviantart":"ดีเวียนต์อาร์ต เป็นชุมชนออนไลน์สัญชาติอเมริกันที่นำเสนองานศิลปะ, ภาพเคลื่อนไหว และภาพถ่าย ได้รับการเปิดตัวในวันที่ 7 สิงหาคม ค.ศ. 2000 โดยแอนเจโล โซติรา, สก็อตต์ จาร์กออฟ, แมทธิว สตีเฟนส์ และคนอื่น ๆ ผลงานต่าง ๆ จะได้รับการจัดเรียงในหมวดหมู่ ได้แก่ การถ่ายภาพ, ศิลปะดิจิทัล, ศิลปะแบบดั้งเดิม, วรรณกรรม, แฟลช, การผลิตภาพยนตร์, สกินสำหรับแอปพลิเคชัน, โปรแกรมอรรถประโยชน์สำหรับปรับแต่งระบบปฏิบัติการ และอื่น ๆ พร้อมกับทรัพยากรที่สามารถดาวน์โหลดได้ เช่น บทเรียนและคลังภาพถ่าย คุณสมบัติเพิ่มเติมได้แก่ วารสาร, การหยั่งเสียง, กลุ่ม และแฟ้มสะสมผลงาน", "ddg definitions":[ @@ -5237,7 +5477,11 @@ "wikisource":"วิกิซอร์ซ เป็นหนึ่งในโครงการของมูลนิธิวิกิมีเดีย และเป็นโครงการพี่น้องกับ วิกิพีเดีย และเปิดเสรี เป็นห้องสมุดดิจิทัลออนไลน์ที่รวบรวมเอกสารต้นทาง ในทุกๆ ภาษา ที่เป็นสาธารณสมบัติ หรืออนุญาตให้ใช้ได้ ภายใต้สัญญาอนุญาตเสรี", "wiktionary":"วิกิพจนานุกรม เป็นโครงการหนึ่งของมูลนิธิวิกิมีเดียที่มีเป้าหมายรวบรวมคำศัพท์ วลี หรือประโยค พร้อมคำอ่าน ความหมาย คำที่เกี่ยวข้อง และคำแปลในภาษาอื่น เปรียบเสมือนพจนานุกรมทุกภาษาในที่เดียวกัน โดยมีให้ใช้งานถึง 182 ภาษา การทำงานของเว็บไซต์คล้ายกับวิกิพีเดียที่เปิดให้ใครก็ได้สามารถเพิ่มและแก้ไขเนื้อหา โดยรับรองตัวอักษรของทุกภาษาที่รหัสยูนิโคดรองรับ วิกิพจนานุกรมใช้ซอฟต์แวร์มีเดียวิกิเช่นเดียวกับวิกิพีเดีย", "wikiversity":"วิกิวิทยาลัย เป็นโครงการหนึ่งของมูลนิธิวิกิมีเดีย โดยมีเป้าหมายรวบรวมความรู้ต่าง ๆ คล้ายมหาวิทยาลัย โดยวิกิวิทยาลัยยังไม่มีแบบภาษาไทย วิกิวิทยาลัยใช้ซอฟต์แวร์มีเดียวิกิซึ่งเป็นซอฟต์แวร์เดียวกันกับวิกิพีเดีย และเผยแพร่ภายใต้ GFDL และ CC-BY-SA", - "wikivoyage":"วิกิท่องเที่ยว เป็นคู่มือท่องเที่ยวออนไลน์สำหรับแหล่งท่องเที่ยวและหัวข้อท่องเที่ยวที่เขียนโดยอาสาสมัคร ชื่อของโครงการนี้ในภาษาอังกฤษประกอบด้วย \"Wiki\" และ \"Voyage\" คำภาษาฝรังเศสที่หมายถึงการท่องเที่ยว การเดินทาง" + "wikivoyage":"วิกิท่องเที่ยว เป็นคู่มือท่องเที่ยวออนไลน์สำหรับแหล่งท่องเที่ยวและหัวข้อท่องเที่ยวที่เขียนโดยอาสาสมัคร ชื่อของโครงการนี้ในภาษาอังกฤษประกอบด้วย \"Wiki\" และ \"Voyage\" คำภาษาฝรังเศสที่หมายถึงการท่องเที่ยว การเดินทาง", + "wttr.in":[ + "รายงานสภาพอากาศ: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "tr":{ "9gag":"9GAG, Inc. kendi platformunu yöneten online bir sosyal medya sitesidir. Kullanıcılar kendi yaptıkları içeriği veya başka sitelerden buldukları içerikleri paylaşırlar. 9GAG'in ana merkezi Mountain View, Kaliforniya'da kurulmuştur. 23 Nisan 2008'deki kuruluşundan beri popülaritesi bir hayli yükselmiştir. Facebook'ta 26 milyon kez \"like\" edilmiştir ve Twitter'da eylül 2015 raporlarına göre 5 milyon takipçisi vardır.", @@ -5255,7 +5499,7 @@ "bing news":"Bing Haberler Microsoft'un Microsoft'un Bing arama motoru bir parçasıdır. Bu, New York Times, Washington Post, MSNBC ve Reuters de dahil olmak üzere, güvenilir ve inandırıcı internet haber kaynaklarının çeşitli aracılığıyla haber makaleleri için bir arama motoru ve toplayıcısıdır.", "bing videos":"Bing Videos Microsoft'un Bing arama motorunun bir parçası ve video arama hizmetidir. Hizmet, kullanıcılara çeşitli web sitelerindeki videoları aramasına ve görüntülemesine olanak tanır. Bing Videos resmi olarak 26 Eylül 2007'de Live Search Video olarak yayınlandı ve 1 Haziran 2009'da Bing Videos olarak yeniden markalandı.", "bitbucket":"Bitbucket, Git sürüm kontrol sistemi kullanan projeler için bir ağ depolama servisi olup Django kullanılarak Python programlama dili ile yazılmıştır.", - "currency":"DuckDuckGo kişisel gizliliğe önem veren açık kaynaklı bir web arama motoru ve mobil web tarayıcısıdır. Kullanıcıların IP adreslerini ve kişiler bilgilerini kaydetmemektedir. Arama motoru Gabriel Weinberg tarafından ABD'de kurulmuştur. DuckDuckGo Perl dilinde programlanmıştır ve FreeBSD üzerinde çalışmaktadır.", + "currency":"DuckDuckGo kişisel gizliliğe önem veren açık kaynaklı bir web arama motoru ve mobil web tarayıcısıdır. Kullanıcıların IP adreslerini ve kişisel bilgilerini kaydetmemektedir. Arama motoru Gabriel Weinberg tarafından ABD'de kurulmuştur. DuckDuckGo Perl dilinde programlanmıştır ve FreeBSD üzerinde çalışmaktadır.", "deezer":"Deezer web tabanlı bir müzik yayını servisidir. Kullanıcıların çevrimiçi veya çevrimdışı olarak çeşitli cihazlarda müzik dinlemelerini sağlar. Paris, Fransa'da oluşturulmuştur. Deezer 56 milyondan fazla lisanslı müzik parçası, 30.000'den fazla radyo kanalı ve 12 milyon aylık aktif kullanıcıya sahiptir.", "deviantart":"DeviantART,, İsrailli Wix.com şirketinin sanat eseri, videografi ve fotoğraf yan kuruluşu olan Amerikan çevrimiçi sanat topluluğudur. Ağustos 2000'de Scott Jarkoff ve Matthew Stephens tarafından kurulmuştur. DeviantART'ın şimdiki CEO'su Angelo Sotira'dır. 23 Şubat 2017'de şirket, Wix.com tarafından 36 milyon dolarlık bir anlaşmayla satın alındığını duyurdu.", "ddg definitions":[ @@ -5282,7 +5526,7 @@ "Açık kaynak Kodlu Dijital Dağıtım Servisi", "wikidata" ], - "flickr":"Flickr, Şubat 2004 yılında Ludicorp tarafından kurulan ve 20 Mart 2005 tarihinde Yahoo tarafından 35 milyon dolara satın alınan bir web sitesidir. Fotoğraf, video paylaşım ve barındırma hizmeti sunmaktadır.", + "flickr":"Flickr, Şubat 2004'te Ludicorp tarafından kurulan ve 20 Mart 2005 tarihinde Yahoo tarafından 35 milyon dolara satın alınan bir internet sitesidir. Fotoğraf, video paylaşım ve barındırma hizmeti sunmaktadır.", "genius":"Genius, Kuzey Amerika merkezli dijital medya şirketi. Ağustos 2009'da Tom Lehman, Ilan Zechory ve Mahbod Moghadam tarafından kurulan site, kullanıcıların şarkı sözleri, haber metinleri, şiirler ve çeşitli dokümanlara açıklama ve yorum eklemesine olanak tanımaktadır.", "gentoo":[ "gentoo:ru", @@ -5306,7 +5550,7 @@ "library genesis":"Library Genesis (Libgen), bilimsel dergi makaleleri, akademik ve genel ilgi kitapları, resimler, çizgi romanlar ve dergiler için bir dosya paylaşım web sitesidir. Kısmen, site başka türlü ödeme duvarı olan veya başka bir yerde dijitalleştirilmeyen içeriğe ücretsiz erişim sağlar. Libgen kendisini \"kamuya açık internet kaynaklarından toplanan\" ve kullanıcılar tarafından yüklenen araştırılabilir makale, kitap ve resim veri tabanı sağlayan bir \"link toplayıcı\" olarak tanımlamaktadır.", "library of congress":"Amerika Birleşik Devletleri Kongre Kütüphanesi, ABD'nin ulusal kütüphanesidir. Dünyanın en büyük ve en önemli kütüphanelerinden olan kongre kütüphanesi Washington'da bulunmaktadır. Ayrıca ABD’de yer alan en eski federal kültür yapısıdır.", "npm":"npm javascript betik dili için geliştirilmiş olan ve Node.js'in standart olarak kabul ettiği bir paket yönetim sistemidir. npm komut satırından çalıştırılır ve uygulamalar için bağımlılık yönetimi sağlar. Ayrıca geliştiricilerin merkezi bir npm kaynağından var olan paketleri kurmasına imkân verir. npm tamamen javascript dili kullanılarak Isaac Z. Schuleter tarafından, PHP'nin PEAR ve Perl'in CPAN sistemlerinden esinlenilerek geliştirilmiştir.", - "openstreetmap":"OpenStreetMap özgür yazılım şartları altında oluşturulan özgür ve açık kaynaklı bir dünya çapında harita oluşturma projesidir. GPS alıcılarıyla ve diğer kamu malı kaynaklardan toplanan bilgiler ile oluşturulur.", + "openstreetmap":"OpenStreetMap, özgür yazılım şartları altında oluşturulan özgür ve açık kaynaklı bir dünya çapında harita oluşturma projesidir. GPS alıcılarıyla ve diğer kamu malı kaynaklardan toplanan bilgiler ile oluşturulur.", "piratebay":"The Pirate Bay, dünyanın en büyük Bittorrent izleyicisidir ve 2008'in en çok ziyaret edilen torrent sitesi seçilmiştir. Pirate bay, korsan koyu anlamına gelir. İsveç'teki merkezine yapılan polis baskınıyla kapatılmıştır.", "pubmed":"MEDLINE, 1950 yılına kadar uzanan gazete ve dergi makalelerine yapılmış atıflara ait bir bibliyografik veri tabanıdır. Veritabanı, klinik tıp ve biyomedikal araştırmalarına ait 4,600’den fazla uluslararası yayını içermekte olup, aynı zamanda diş hekimliği, hemşirelik, kimya, farmakoloji, biyoloji, fizik, beslenme, sağlık teslimat, psikiyatri, psikoloji, çevre sağlığı, sosyal bilimler ve eğitim konularını da kapsar. Medline veritabanı, kayıtlardan oluşan koleksiyonu tarama özelliğine sahip olmanın yanı sıra, 13 milyon’dan daha fazla atıfı içerdiği için de etkili bir biçimde tarama yapmak önemlidir.", "pypi":"Python Paket Dizini veya kısaca PyPI, Python programla dili için üçüncül yazılımcılar tarafından yazılıp, resmi olarak Python tarafından yayınlanan yazılım deposudur. Peynir Mağazası olarak da bilinmektedir. Bu dizin aracılığı ile yaklaşık olarak 235.000'den fazla Python paketine erişilebilir ve bedava olarak kullanılabilir.", @@ -5334,6 +5578,7 @@ "stackoverflow:tr", "ref" ], + "semantic scholar":"Semantic Scholar, Allen Yapay Zeka Enstitüsü'nde geliştirilen ve Kasım 2015'te halka açık olarak yayınlanan bilimsel literatür için yapay zekâ destekli bir araştırma aracıdır. Bilimsel makaleler için özetler sağlamak üzere doğal dil işlemedeki gelişmeleri kullanır. Semantic Scholar ekibi, yapay zekanın doğal dil işleme, makine öğrenimi, İnsan-bilgisayar etkileşimi ve bilgi çekme alanlarında kullanımını aktif olarak araştırmaktadır.", "startpage":"Startpage, Hollanda merkezli, gizlilik odaklı bir arama motoru şirketidir. Web sitesi, kullanıcıların verilerinin depolanmadan ve izleyiciler tarafından takip edilmeden Google Arama sonuçlarına erişmesine olanak sağlar. Startpage.com ayrıca, kullanıcıların daha fazla anonimlik için proxy aracılığıyla arama sonuçlarını açmasına olanak tanıyan bir Anonim Görünüm tarama özelliği içerir. Şirketin merkezi Hollanda'da olduğundan, Hollanda ve Avrupa Birliği gizlilik yasaları tarafından korunmaktadır ve bu nedenle PRISM gibi Amerika Birleşik Devletleri gözetim programlarına tabi değildir.", "yahoo news":"Yahoo! News, Yahoo!'ya bağlı olarak İnternet tabanlı bir RSS okuyucu olarak faaliyet gösteren bir web sitesidir. Ağustos 1996'da kurulan sitedeki haberler Associated Press, Reuters, Fox News, Al Jazeera, ABC News, USA Today, CNN ve BBC News gibi haber kaynaklarından gelir. 19 Aralık 2006'ya kadar haberlerde yorum yapılmasına izin veren site, 2 Mart 2010'da bu özelliği geri getirmiştir.", "youtube":"YouTube, Google'a ait bir Amerikan çevrim içi video paylaşım ve sosyal medya platformudur. Merkezi San Bruno, Kaliforniya'da olan platform; 15 Şubat 2005'te üç eski PayPal çalışanı tarafından kurulmuştur. Platform; kullanıcılarına video yükleme, izleme ve paylaşma imkânı sunmakta olup medya şirketleri ve kullanıcı üretimi videoların gösterimi için WebM, H.264 ve Adobe Flash Video teknolojilerini kullanır. Genel olarak video klipler, televizyon klipleri, müzik videoları, video bloglar, kısa özgün videolar ve eğitim videoları gibi içerikler yayınlanmaktadır.", @@ -5354,10 +5599,6 @@ "petalsearch images":[ "petalsearch:tr", "ref" - ], - "petalsearch news":[ - "petalsearch:tr", - "ref" ] }, "uk":{ @@ -5379,6 +5620,10 @@ "Канали новин світового масштабу, національні, а також місцеві канали впорядковано, щоб забезпечити детальний огляд новин спорту, шоу-бізнесу, ділових новин, політики, погоди тощо.", "https://www.bing.com/news" ], + "bing videos":[ + "Інтелектуальний пошук у Bing дає змогу швидко знаходити потрібне й отримувати винагороди.", + "https://www.bing.com/videos" + ], "bitbucket":"Bitbucket — вебсервіс для хостингу проєктів на базі систем керування версіями: Mercurial та Git. Bitbucket надає як безкоштовні так і платні послуги. Є аналогом GitHub, однак, на відміну від GitHub, який до січня 2019 року зберігав файли безкоштовних профілів лише у відкритому доступі, Bitbucket від самого початку дозволяв безкоштовно створювати приватні репозиторії з можливістю спільної роботи з файлами до 5-ти користувачів. Bitbucket інтегрований з іншими програмними продуктами Atlassian, такими як, JIRA, Confluence, Bamboo та HipChat.", "btdigg":"BTDigg (укр.:БТДиґ)— це перша BitTorrent DHT пошукова система. Ця DHT пошукова система бере участь в BitTorrent DHT мережі, підтримує мережі і робить відповідності між magnet-посиланнями і кількома торент-атрибутами, які проіндексовані і вставляються в базу даних. BTDigg забезпечує повнотекстовий пошук по базі даних через вебінтерфейс. Вебчастина пошукової системи отримує необхідну інформацію від тексту запиту користувача. Вебпошук підтримує запити європейських і азійських мов. Назва проекту є абревіатурою від BitTorrent Digger.", "crossref":"Crossref — це об'єднання видавців наукових публікацій, створене з метою розробки та підтримки всесвітньої високотехнологічної інфраструктури наукових комунікацій. Головним завданням CrossRef є сприяння широкому використанню інноваційних технологій для прискорення і полегшення наукових досліджень.", @@ -5428,7 +5673,7 @@ ], "habrahabr":"Хабрахабр (Хабр) — вебсайт, який поєднує ознаки соціальної мережі і колективного блогу, створений для публікації новин, аналітичних статей, думок, пов'язаних із інформаційними технологіями, бізнесом та Інтернетом.", "hoogle":"Haskell — стандартизована, винятково функційна мова програмування з нестрогою семантикою. Названа на честь американського математика Гаскелла Каррі, роботи якого в галузі математичної логіки є базовими для функційного програмування. Гаскель базується на лямбда численні. Найважливішими реалізаціями є компілятор Glasgow Haskell Compiler (GHC) та оснований на ньому компілятор GHCJS, що компілює Гаскель-код у скрипт мовою JavaScript. Історично важливим також є інтерпретатор Hugs, але на сьогодні він не підтримується.", - "imdb":"База даних фільмів в Інтернеті — найбільша база даних та вебсайт про кінематограф. База даних значною мірою заповнюється добровольцями, це чимось нагадує концепцію вікі. У базі зараз зібрана інформація про 10.1 млн фільмів і телесеріалів, є інформація майже про 11,5 млн акторів, режисерів та інших професіоналів кіно зі всього світу.", + "imdb":"База даних фільмів в Інтернеті — найбільша база даних та вебсайт про кінематограф. База даних значною мірою заповнюється добровольцями, це чимось нагадує концепцію вікі. У базі зараз зібрана інформація про 10,1 млн фільмів і телесеріалів, є інформація майже про 11,5 млн акторів, режисерів та інших професіоналів кіно зі всього світу.", "kickass":"KickassTorrents — у минулому одна з найбільших Bittorent-толок світу що проіснувала з 2008 по липень 2016 року. Сайт трекеру працював як пошуковий індекс для .torrent файлів та magnet-посилань). Станом на липень 2016 року сайт займав 68 місце за відвідуваністю у світі згідно з глобальним рейтингом Alexa. Один з серверів ресурсу було розміщено в США.", "library genesis":"Library Genesis або LibGen — вебсайт та онлайн-сховище, що нелегально надає безкоштовний доступ до наукових статей, книг, та наукових праць захищених авторським правом. Окрім іншого, на сайті розміщено PDF-файли з сайту ScienceDirect.", "library of congress":"Бібліотека Конгресу — національна бібліотека Сполучених Штатів Америки та дослідницький підрозділ Конгресу США. Є найбільшим за площею книгосховищем та однією з найважливіших бібліотек світу. Розташована у Вашингтоні, має три основні будівлі.", @@ -5450,7 +5695,8 @@ "stackoverflow:uk", "ref" ], - "startpage":"Startpage — нідерландська пошукова система, що позиціонує себе як конфіденційний засіб пошуку в інтернеті. Сайт надає результати запитів Google, захищаючи право конфіденційності користувача, відмовляючись зберігати особисті дані й дані результату пошуку. Також пошукова система має функцію анонімного перегляду, що надає результати через проксі-сервер для більшої анонімності. Особливою перевагою Startpage є базування у Нідерландах, що свідчить про захист законами ЄС конфіденційності, запобігаючи стеження з боку державних програм, як приміром PRISM.", + "semantic scholar":"Семантичне вчення[джерело?], англ. Semantic Scholar — це дослідницький інструмент для наукової літератури на основі штучного інтелекту, розроблений в Інституті ШІ ім. Аллена та оприлюднений у листопаді 2015 року. Він використовує досягнення в обробці природної мови для створення резюме для наукових робіт. Команда Semantic Scholar активно досліджує використання штучного інтелекту в оброблянні природної мови, машинному навчанні, взаємодії людини з комп'ютером і пошуку інформації.", + "startpage":"Startpage — нідерландська пошукова система, що позиціонує себе як конфіденційний засіб пошуку в інтернеті. Сайт надає результати запитів Google, захищаючи право конфіденційності користувача, не зберігаючи особисті або пошукові дані. Також пошукова система має функцію анонімного перегляду, що надає результати через проксі-сервер для підвищення рівня анонімності. Особливою перевагою Startpage є базування у Нідерландах, що свідчить про захист законами ЄС конфіденційності, запобігаючи стеження з боку державних програм, як, приміром, PRISM.", "yahoo news":"Yahoo! News — це новинний сайт, який виник як агрегатор новин від Yahoo! Сайт було створено програмістом Бредом Клоузі в серпні 1996 року. Спочатку статті надходили з таких служб новин, як Associated Press, Reuters, Fox News, Al Jazeera, ABC News, USA Today, CNN і BBC News.", "youtube":"YouTube — популярний відеохостинг, що надає послуги розміщення відеоматеріалів. Заснований 14 лютого 2005 року трьома працівниками PayPal: Чадом Герлі, Стівеном Чені та Джаведом Карімом. Зараз є підрозділом компанії Google. Станом на серпень 2019 року YouTube є другим за відвідуваністю сайтом в Інтернеті.", "dailymotion":"Dailymotion — французький відеохостинг. Головний офіс компанії знаходиться у 17-му окрузі Парижа. Dailymotion є третім за відвідуваністю відео обмінником, після YouTube і Vimeo.", @@ -5489,6 +5735,10 @@ "Tin tức từ nguồn tin tức thế giới, quốc gia và địa phương, được tổ chức để cung cấp cho bạn tin tức chuyên sâu về thể thao, giải trí, kinh doanh, chính trị, thời tiết và nhiều nội dung khác.", "https://www.bing.com/news" ], + "bing videos":[ + "Tìm kiếm thông minh từ Bing giúp bạn dễ dàng tìm thấy những gì bạn đang tìm kiếm hơn và trao thưởng cho bạn.", + "https://www.bing.com/videos" + ], "currency":"DuckDuckGo là một công cụ truy vấn dữ liệu Internet đặt trọng tâm vào việc bảo vệ sự riêng tư người tìm kiếm và không cung cấp thông tin người dùng. DuckDuckGo cũng phân biệt nó với các công cụ tìm kiếm khác bằng cách không lập hồ sơ kết quả tìm kiếm. DuckDuckGo nhấn mạnh lấy thông tin từ các nguồn tốt nhất chứ không phải từ đa số các nguồn, tạo ra kết quả tìm kiếm của mình từ chính các trang web được quần chúng đóng góp như Wikipedia và từ quan hệ đối tác với các công cụ tìm kiếm khác như Yandex, Yahoo, Bing, và Yummly.", "deezer":"Deezer là một dịch vụ nghe nhạc trực tuyến trên Internet. Nó cho phép người dùng có thể nghe các bản nhạc từ các hãng thu như Sony, Universal Music, và Warner Music Group trên nhiều thiết bị kể cả khi đang trực tuyến hay ngoại tuyến. Deezer được sáng lập tại Paris, Pháp và hiện đang có 53 triệu bài hát được cấp phép trong kho nhạc, cùng với hơn 30.000 kênh radio, 14 triệu người dùng hằng tháng, và 6 triệu thuê bao trả phí tính đến ngày 3 tháng 4 năm 2018. Deezer khả dụng cho Web, Android, iOS, Windows Phone, BlackBerry và Windows.", "ddg definitions":[ @@ -5525,7 +5775,7 @@ "google play apps:vi", "ref" ], - "hoogle":"Haskell là ngôn ngữ lập trình thuần hàm, đặt theo tên của Haskell Curry. Vì là ngôn ngữ lập trình hàm, trong Haskell, hàm là \"cư dân hạng nhất\", với hầu hết các cấu trúc điều khiển là hàm.", + "hoogle":"Haskell là một ngôn ngữ lập trình thuần hàm, đặt theo tên của Haskell Curry. Vì là ngôn ngữ lập trình hàm, trong Haskell, hàm là \"cư dân hạng nhất\", với hầu hết các cấu trúc điều khiển là hàm.", "imdb":"Internet Movie Database là một trang cơ sở dữ liệu trực tuyến về điện ảnh thế giới. Nó cung cấp thông tin về phim, diễn viên, đạo diễn, nhà làm phim... và tất cả những người, công ty trong lĩnh vực sản xuất phim, phim truyền hình và cả trò chơi video.", "library of congress":"Thư viện Quốc hội, trên thực tế là thư viện quốc gia của Hoa Kỳ, là đơn vị nghiên cứu của Quốc hội Hoa Kỳ. Với trụ sở gồm 3 tòa nhà đóng tại Washington, D.C., đây là thư viện lớn nhất theo diện tích để sách và một trong những thư viện quan trọng nhất trên thế giới. Kho tư liệu của nó bao gồm hơn 30 triệu cuốn sách được phân loại và các tài liệu in ấn khác được viết bằng 470 thứ tiếng; hơn 61 triệu bản thảo viết tay; bộ sưu tập các cuốn sách hiếm lớn nhất Bắc Mỹ, bao gồm bản sơ thảo Tuyên ngôn Độc lập Hoa Kỳ, Kinh Thánh Gutenberg ; hơn 1 triệu ấn bản các văn kiện của Chính phủ Hoa Kỳ; 1 triệu ấn bản báo chí thế giới trong suốt 3 thế kỷ qua; 33.000 bộ nhật báo đóng tập; 500.000 cuộn microfilm; hơn 6.000 tựa truyện tranh; cơ sở dữ liệu luật lớn nhất thế giới; các bộ phim; hơn 4,8 triệu bản đồ, bản nhạc; 2,7 triệu bản ghi âm; hơn 13,7 triệu hình in và chụp bao gồm các tác phẩm nghệ thuật chuyên nghiệp và nghệ thuật quần chúng, các bản vẽ kiến trúc; cây vĩ cầm cổ Betts Stradivarius; và cây viola Cassavetti Stradivarius;", "npm":"NPM là chương trình quản lý thư viện ngầm định trong môi trường Node.js. Nó bao gồm một trình gọi dòng lệnh từ máy khách Client với tên gọi là npm, và cơ sở dữ liệu trực tuyến chứa các gói public và private còn được gọi là npm registry. Npm registry được gọi từ npm client và trên web browser. Tất cả được quản lý trực tiếp từ NPM, inc.", @@ -5555,7 +5805,11 @@ "wikivoyage":"Wikivoyage một dự án xây dựng cẩm nang du lịch trực tuyến có nội dung tự do. Là một dự án \"chị em\" với Wikipedia, nó trực thuộc tổ chức Wikimedia Foundation và cho phép mọi người tham gia biên tập. Dự án tách ra khỏi Wikitravel tiếng Đức ngày 10 tháng 12 năm 2006 sau khi công ty Internet Brands mua Wikitravel. Họ thành lập tổ chức Wikivoyage e.V. tại Đức để quản lý dự án. Vào giữa năm 2012, đa số thành viên Wikitravel tiếng Anh, bao gồm phần nhiều bảo quản viên, quyết định hợp nhất các cộng đồng Wikitravel và Wikivoyage vào một dự án phi lợi nhuận mới. Wikivoyage yêu cầu gia nhập vào Wikimedia Foundation và Wikimedia phê chuẩn vào tháng 10 năm 2012.", "wolframalpha":"WolframAlpha là một máy trả lời do Wolfram Research phát triển. Đây là một dịch vụ trực tuyến có nhiệm vụ trả lời các câu hỏi nhập vào trực tiếp bằng cách tính toán câu trả lời từ các dữ liệu có cấu trúc, chứ không chỉ cung cấp một danh sách các tài liệu hoặc trang có web có thể chứa câu trả lời như cách máy tìm kiếm thường làm. Website này được Stephen Wolfram công bố vào tháng 3 năm 2009, và được phát hành cho công chúng ngày 15 tháng 5 năm 2009.", "naver":"Naver là một nền tảng trực tuyến của Hàn Quốc được điều hành bởi Naver Corporation. Được ra mắt lần đầu năm 1999, Naver vốn là cổng thông tin điện tử đầu tiên tại Hàn Quốc, sau đó được phát triển thành một công cụ tìm kiếm riêng. Đây cũng là nhà điều hành đầu tiên trên thế giới ra mắt tính năng tìm kiếm toàn diện, tính toán các kết quả tìm kiếm từ nhiều danh mục tìm kiếm khác nhau và trình bày chúng trong một trang duy nhất. Từ đó, Naver cũng đã xây dựng thêm vô số các dịch vụ từ cơ bản như e-mail, tin tức đến nền tảng trực tuyến Q&A đầu tiên trên thế giới Knowledge iN.", - "peertube":"PeerTube là một nền tảng chia sẻ video liên hợp, tự do và nguồn mở hoạt động với hình thức tự lưu trữ (self-hosting). Nền tảng này sử dụng giao thức ActivityPub và WebTorrent, một công nghệ P2P tiết kiệm tài nguyên cho các máy chủ cá nhân." + "peertube":"PeerTube là một nền tảng chia sẻ video liên hợp, tự do và nguồn mở hoạt động với hình thức tự lưu trữ (self-hosting). Nền tảng này sử dụng giao thức ActivityPub và WebTorrent, một công nghệ P2P tiết kiệm tài nguyên cho các máy chủ cá nhân.", + "wttr.in":[ + "Báo cáo thời tiết: Des Moines, Iowa, United States", + "https://wttr.in" + ] }, "zh-Hans-CN":{ "archive is":[ @@ -5586,6 +5840,10 @@ "bing:zh-HK", "ref" ], + "bing videos":[ + "Bing 的智慧型搜尋可讓您更輕而易舉找到想找的資訊,同時還因此獲得獎勵。", + "https://www.bing.com/videos" + ], "crossref":[ "crossref:zh-HK", "ref" @@ -5749,6 +6007,14 @@ "rumble":[ "rumble:zh-HK", "ref" + ], + "wttr.in":[ + "天气预报: Des Moines, Iowa, United States", + "https://wttr.in" + ], + "goo":[ + "goo:zh-HK", + "ref" ] }, "zh-Hant-TW":{ @@ -5931,6 +6197,10 @@ "rumble":[ "rumble:zh-HK", "ref" + ], + "goo":[ + "goo:zh-HK", + "ref" ] }, "nb_NO":{ diff --git a/searx/data/useragents.json b/searx/data/useragents.json index 8f831ce6a..3f23cdc16 100644 --- a/searx/data/useragents.json +++ b/searx/data/useragents.json @@ -1,7 +1,7 @@ { "versions": [ - "108.0", - "107.0" + "110.0", + "109.0" ], "os": [ "Windows NT 10.0; Win64; x64", diff --git a/searx/data/wikidata_units.json b/searx/data/wikidata_units.json index d4d7dfb31..5c74aaf0f 100644 --- a/searx/data/wikidata_units.json +++ b/searx/data/wikidata_units.json @@ -216,18 +216,11 @@ "Q1137675": "cr", "Q114002440": "𒄀", "Q114002534": "𒃻", - "Q114002568": "𒂠", "Q114002639": "𒈨𒊑", - "Q114002688": "𒋗𒋛", - "Q114002734": "𒊺", "Q114002796": "𒂆", - "Q114002897": "𒊬", "Q114002930": "𒀺", "Q114002955": "𒀹𒃷", "Q114002974": "𒃷", - "Q114002998": "𒁓", - "Q114018694": "𒄥", - "Q114018781": "𒁀𒌷𒂵", "Q1140444": "Zb", "Q1140577": "Yb", "Q114589269": "A", @@ -243,6 +236,9 @@ "Q115533751": "rm", "Q115533764": "qm", "Q115533776": "Qm", + "Q116432446": "ᵐ", + "Q116432563": "ˢ", + "Q116443090": "ʰ", "Q1165799": "mil", "Q11776930": "Mg", "Q11830636": "psf", diff --git a/searx/engines/crossref.py b/searx/engines/crossref.py index fbe2f0c2a..e12a0da5b 100644 --- a/searx/engines/crossref.py +++ b/searx/engines/crossref.py @@ -2,6 +2,7 @@ # lint: pylint """Semantic Scholar (Science) """ +# pylint: disable=use-dict-literal from urllib.parse import urlencode from searx.utils import html_to_text diff --git a/searx/engines/docker_hub.py b/searx/engines/docker_hub.py index 1e492b196..cde96d016 100644 --- a/searx/engines/docker_hub.py +++ b/searx/engines/docker_hub.py @@ -3,6 +3,7 @@ """Docker Hub (IT) """ +# pylint: disable=use-dict-literal from json import loads from urllib.parse import urlencode diff --git a/searx/engines/duckduckgo.py b/searx/engines/duckduckgo.py index 84198afc5..2a7956ca8 100644 --- a/searx/engines/duckduckgo.py +++ b/searx/engines/duckduckgo.py @@ -73,7 +73,7 @@ def request(query, params): # link again and again .. params['headers']['Content-Type'] = 'application/x-www-form-urlencoded' - params['headers']['Referer'] = 'https://lite.duckduckgo.com/' + params['headers']['Referer'] = 'https://google.com/' # initial page does not have an offset if params['pageno'] == 2: diff --git a/searx/engines/gigablast.py b/searx/engines/gigablast.py index 1c40ff331..382711b10 100644 --- a/searx/engines/gigablast.py +++ b/searx/engines/gigablast.py @@ -3,7 +3,7 @@ """ Gigablast (Web) """ -# pylint: disable=invalid-name +# pylint: disable=invalid-name, use-dict-literal import re from time import time diff --git a/searx/engines/peertube.py b/searx/engines/peertube.py index 089775694..345c2f991 100644 --- a/searx/engines/peertube.py +++ b/searx/engines/peertube.py @@ -22,9 +22,7 @@ about = { categories = ["videos"] paging = True base_url = "https://peer.tube" -supported_languages_url = ( - 'https://framagit.org/framasoft/peertube/search-index/-/raw/master/client/src/views/Search.vue' -) +supported_languages_url = 'https://peer.tube/api/v1/videos/languages' # do search-request @@ -84,9 +82,6 @@ def response(resp): def _fetch_supported_languages(resp): - import re - - # https://docs.python.org/3/howto/regex.html#greedy-versus-non-greedy - videolanguages = re.search(r"videoLanguages \(\)[^\n]+(.*?)\]", resp.text, re.DOTALL) - peertube_languages = [m.group(1) for m in re.finditer(r"\{ id: '([a-z]+)', label:", videolanguages.group(1))] + videolanguages = resp.json() + peertube_languages = list(videolanguages.keys()) return peertube_languages diff --git a/searx/engines/startpage.py b/searx/engines/startpage.py index 24aa59d03..f857f7b6d 100644 --- a/searx/engines/startpage.py +++ b/searx/engines/startpage.py @@ -62,8 +62,7 @@ sc_code = '' def raise_captcha(resp): if str(resp.url).startswith('https://www.startpage.com/sp/captcha'): - # suspend CAPTCHA for 7 days - raise SearxEngineCaptchaException(suspended_time=7 * 24 * 3600) + raise SearxEngineCaptchaException() def get_sc_code(headers): diff --git a/searx/engines/wikidata.py b/searx/engines/wikidata.py index e0ad2e6c9..8d3b0839a 100644 --- a/searx/engines/wikidata.py +++ b/searx/engines/wikidata.py @@ -260,7 +260,7 @@ def get_results(attribute_result, attributes, language): infobox_urls.append({'title': attribute.get_label(language), 'url': url, **attribute.kwargs}) # "normal" results (not infobox) include official website and Wikipedia links. if attribute.kwargs.get('official') or attribute_type == WDArticle: - results.append({'title': infobox_title, 'url': url}) + results.append({'title': infobox_title, 'url': url, "content": infobox_content}) # update the infobox_id with the wikipedia URL # first the local wikipedia URL, and as fallback the english wikipedia URL if attribute_type == WDArticle and ( diff --git a/searx/engines/wikipedia.py b/searx/engines/wikipedia.py index 52b1053ed..ca841e8b3 100644 --- a/searx/engines/wikipedia.py +++ b/searx/engines/wikipedia.py @@ -106,9 +106,9 @@ def _fetch_supported_languages(resp): for tr in trs: td = tr.xpath('./td') code = td[3].xpath('./a')[0].text - name = td[2].xpath('./a')[0].text + name = td[1].xpath('./a')[0].text english_name = td[1].xpath('./a')[0].text - articles = int(td[4].xpath('./a/b')[0].text.replace(',', '')) + articles = int(td[4].xpath('./a')[0].text.replace(',', '')) # exclude languages with too few articles if articles >= 100: supported_languages[code] = {"name": name, "english_name": english_name} diff --git a/searx/exceptions.py b/searx/exceptions.py index 43c8bab40..069be9057 100644 --- a/searx/exceptions.py +++ b/searx/exceptions.py @@ -1,29 +1,19 @@ -''' -searx is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -searx is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. - -You should have received a copy of the GNU Affero General Public License -along with searx. If not, see < http://www.gnu.org/licenses/ >. - -(C) 2017- by Alexandre Flament, -''' - +# -*- coding: utf-8 -*- +# SPDX-License-Identifier: AGPL-3.0-or-later +# lint: pylint +"""Exception types raised by SearXNG modules. +""" from typing import Optional, Union class SearxException(Exception): - pass + """Base SearXNG exception.""" class SearxParameterException(SearxException): + """Raised when query miss a required paramater""" + def __init__(self, name, value): if value == '' or value is None: message = 'Empty ' + name + ' parameter' @@ -69,19 +59,38 @@ class SearxEngineAPIException(SearxEngineResponseException): class SearxEngineAccessDeniedException(SearxEngineResponseException): """The website is blocking the access""" - def __init__(self, suspended_time=24 * 3600, message='Access denied'): + SUSPEND_TIME_SETTING = "search.suspended_times.SearxEngineAccessDenied" + """This settings contains the default suspended time (default 86400 sec / 1 + day).""" + + def __init__(self, suspended_time: int = None, message: str = 'Access denied'): + """Generic exception to raise when an engine denies access to the results. + + :param suspended_time: How long the engine is going to be suspended in + second. Defaults to None. + :type suspended_time: int, None + :param message: Internal message. Defaults to ``Access denied`` + :type message: str + """ + suspended_time = suspended_time or self._get_default_suspended_time() super().__init__(message + ', suspended_time=' + str(suspended_time)) self.suspended_time = suspended_time self.message = message + def _get_default_suspended_time(self): + from searx import get_setting # pylint: disable=C0415 + + return get_setting(self.SUSPEND_TIME_SETTING) + class SearxEngineCaptchaException(SearxEngineAccessDeniedException): - """The website has returned a CAPTCHA + """The website has returned a CAPTCHA.""" - By default, searx stops sending requests to this engine for 1 day. - """ + SUSPEND_TIME_SETTING = "search.suspended_times.SearxEngineCaptcha" + """This settings contains the default suspended time (default 86400 sec / 1 + day).""" - def __init__(self, suspended_time=24 * 3600, message='CAPTCHA'): + def __init__(self, suspended_time=None, message='CAPTCHA'): super().__init__(message=message, suspended_time=suspended_time) @@ -91,7 +100,11 @@ class SearxEngineTooManyRequestsException(SearxEngineAccessDeniedException): By default, searx stops sending requests to this engine for 1 hour. """ - def __init__(self, suspended_time=3600, message='Too many request'): + SUSPEND_TIME_SETTING = "search.suspended_times.SearxEngineTooManyRequests" + """This settings contains the default suspended time (default 3660 sec / 1 + hour).""" + + def __init__(self, suspended_time=None, message='Too many request'): super().__init__(message=message, suspended_time=suspended_time) diff --git a/searx/infopage/de/about.md b/searx/infopage/de/about.md index f6c0f7cfe..aaf3bffda 100644 --- a/searx/infopage/de/about.md +++ b/searx/infopage/de/about.md @@ -79,7 +79,7 @@ machen. Je dezentraler das Internet ist, desto mehr Freiheit haben wir! [SearXNG Dokumentation]: {{get_setting('brand.docs_url')}} [searx]: https://github.com/searx/searx [Metasuchmaschine]: https://de.wikipedia.org/wiki/Metasuchmaschine -[Weblate]: https://weblate.bubu1.eu/projects/searxng/ +[Weblate]: https://translate.codeberg.org/projects/searxng/ [Seeks-Projekt]: https://beniz.github.io/seeks/ [OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md [Firefox]: https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox diff --git a/searx/infopage/en/about.md b/searx/infopage/en/about.md index e10f54d53..b868813a3 100644 --- a/searx/infopage/en/about.md +++ b/searx/infopage/en/about.md @@ -71,7 +71,7 @@ internet is, the more freedom we have! [SearXNG docs]: {{get_setting('brand.docs_url')}} [searx]: https://github.com/searx/searx [metasearch engine]: https://en.wikipedia.org/wiki/Metasearch_engine -[Weblate]: https://weblate.bubu1.eu/projects/searxng/ +[Weblate]: https://translate.codeberg.org/projects/searxng/ [Seeks project]: https://beniz.github.io/seeks/ [OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md [Firefox]: https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox diff --git a/searx/infopage/id/about.md b/searx/infopage/id/about.md index 956b5240e..1cb8d5ad3 100644 --- a/searx/infopage/id/about.md +++ b/searx/infopage/id/about.md @@ -74,7 +74,7 @@ terdesentralisasinya internet, lebih banyak kebebasan yang kita punya! [dokumentasi SearXNG]: {{get_setting('brand.docs_url')}} [searx]: https://github.com/searx/searx [mesin pencari meta]: https://id.wikipedia.org/wiki/Mesin_pencari_web#Mesin_Pencari_dan_Mesin_Pencari-meta -[Weblate]: https://weblate.bubu1.eu/projects/searxng/ +[Weblate]: https://translate.codeberg.org/projects/searxng/ [proyek Seeks]: https://beniz.github.io/seeks/ [OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md [Firefox]: https://support.mozilla.org/id/kb/add-or-remove-search-engine-firefox diff --git a/searx/locales.py b/searx/locales.py index 8547e7fa7..9e06bf39d 100644 --- a/searx/locales.py +++ b/searx/locales.py @@ -86,7 +86,7 @@ def get_translations(): use_translation = flask.request.form.get('use-translation') if use_translation in ADDITIONAL_TRANSLATIONS: babel_ext = flask_babel.current_app.extensions['babel'] - return Translations.load(next(babel_ext.translation_directories), use_translation) + return Translations.load(babel_ext.translation_directories[0], use_translation) return _flask_babel_get_translations() diff --git a/searx/network/client.py b/searx/network/client.py index f25aaf9ab..ffee3f096 100644 --- a/searx/network/client.py +++ b/searx/network/client.py @@ -4,6 +4,7 @@ import asyncio import logging +import random from ssl import SSLContext import threading from typing import Any, Dict @@ -28,10 +29,34 @@ LOOP = None SSLCONTEXTS: Dict[Any, SSLContext] = {} +def shuffle_ciphers(ssl_context): + """Shuffle httpx's default ciphers of a SSL context randomly. + + From `What Is TLS Fingerprint and How to Bypass It`_ + + > When implementing TLS fingerprinting, servers can't operate based on a + > locked-in whitelist database of fingerprints. New fingerprints appear + > when web clients or TLS libraries release new versions. So, they have to + > live off a blocklist database instead. + > ... + > It's safe to leave the first three as is but shuffle the remaining ciphers + > and you can bypass the TLS fingerprint check. + + .. _What Is TLS Fingerprint and How to Bypass It: + https://www.zenrows.com/blog/what-is-tls-fingerprint#how-to-bypass-tls-fingerprinting + + """ + c_list = httpx._config.DEFAULT_CIPHERS.split(':') # pylint: disable=protected-access + sc_list, c_list = c_list[:3], c_list[3:] + random.shuffle(c_list) + ssl_context.set_ciphers(":".join(sc_list + c_list)) + + def get_sslcontexts(proxy_url=None, cert=None, verify=True, trust_env=True, http2=False): key = (proxy_url, cert, verify, trust_env, http2) if key not in SSLCONTEXTS: SSLCONTEXTS[key] = httpx.create_ssl_context(cert, verify, trust_env, http2) + shuffle_ciphers(SSLCONTEXTS[key]) return SSLCONTEXTS[key] diff --git a/searx/network/raise_for_httperror.py b/searx/network/raise_for_httperror.py index 414074977..9f847d436 100644 --- a/searx/network/raise_for_httperror.py +++ b/searx/network/raise_for_httperror.py @@ -9,6 +9,7 @@ from searx.exceptions import ( SearxEngineTooManyRequestsException, SearxEngineAccessDeniedException, ) +from searx import get_setting def is_cloudflare_challenge(resp): @@ -33,15 +34,22 @@ def raise_for_cloudflare_captcha(resp): if is_cloudflare_challenge(resp): # https://support.cloudflare.com/hc/en-us/articles/200170136-Understanding-Cloudflare-Challenge-Passage-Captcha- # suspend for 2 weeks - raise SearxEngineCaptchaException(message='Cloudflare CAPTCHA', suspended_time=3600 * 24 * 15) + raise SearxEngineCaptchaException( + message='Cloudflare CAPTCHA', suspended_time=get_setting('search.suspended_times.cf_SearxEngineCaptcha') + ) if is_cloudflare_firewall(resp): - raise SearxEngineAccessDeniedException(message='Cloudflare Firewall', suspended_time=3600 * 24) + raise SearxEngineAccessDeniedException( + message='Cloudflare Firewall', + suspended_time=get_setting('search.suspended_times.cf_SearxEngineAccessDenied'), + ) def raise_for_recaptcha(resp): if resp.status_code == 503 and '"https://www.google.com/recaptcha/' in resp.text: - raise SearxEngineCaptchaException(message='ReCAPTCHA', suspended_time=3600 * 24 * 7) + raise SearxEngineCaptchaException( + message='ReCAPTCHA', suspended_time=get_setting('search.suspended_times.recaptcha_SearxEngineCaptcha') + ) def raise_for_captcha(resp): @@ -64,9 +72,7 @@ def raise_for_httperror(resp): if resp.status_code and resp.status_code >= 400: raise_for_captcha(resp) if resp.status_code in (402, 403): - raise SearxEngineAccessDeniedException( - message='HTTP error ' + str(resp.status_code), suspended_time=3600 * 24 - ) + raise SearxEngineAccessDeniedException(message='HTTP error ' + str(resp.status_code)) if resp.status_code == 429: raise SearxEngineTooManyRequestsException() resp.raise_for_status() diff --git a/searx/plugins/autodetect_search_language.py b/searx/plugins/autodetect_search_language.py deleted file mode 100644 index 026ca9b6f..000000000 --- a/searx/plugins/autodetect_search_language.py +++ /dev/null @@ -1,97 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later -# lint: pylint -"""Plugin to detect the search language from the search query. - -The language detection is done by using the fastText_ library (`python -fasttext`_). fastText_ distributes the `language identification model`_, for -reference: - -- `FastText.zip: Compressing text classification models`_ -- `Bag of Tricks for Efficient Text Classification`_ - -The `language identification model`_ support the language codes (ISO-639-3):: - - af als am an ar arz as ast av az azb ba bar bcl be bg bh bn bo bpy br bs bxr - ca cbk ce ceb ckb co cs cv cy da de diq dsb dty dv el eml en eo es et eu fa - fi fr frr fy ga gd gl gn gom gu gv he hi hif hr hsb ht hu hy ia id ie ilo io - is it ja jbo jv ka kk km kn ko krc ku kv kw ky la lb lez li lmo lo lrc lt lv - mai mg mhr min mk ml mn mr mrj ms mt mwl my myv mzn nah nap nds ne new nl nn - no oc or os pa pam pfl pl pms pnb ps pt qu rm ro ru rue sa sah sc scn sco sd - sh si sk sl so sq sr su sv sw ta te tg th tk tl tr tt tyv ug uk ur uz vec vep - vi vls vo wa war wuu xal xmf yi yo yue zh - -The `language identification model`_ is harmonized with the SearXNG's language -(locale) model. General conditions of SearXNG's locale model are: - -a. SearXNG's locale of a query is passed to the - :py:obj:`searx.locales.get_engine_locale` to get a language and/or region - code that is used by an engine. - -b. SearXNG and most of the engines do not support all the languages from - language model and there might be also a discrepancy in the ISO-639-3 and - ISO-639-2 handling (:py:obj:`searx.locales.get_engine_locale`). Further - more, in SearXNG the locales like ``zh-TH`` (``zh-CN``) are mapped to - ``zh_Hant`` (``zh_Hans``). - -Conclusion: This plugin does only auto-detect the languages a user can select in -the language menu (:py:obj:`supported_langs`). - -SearXNG's locale of a query comes from (*highest wins*): - -1. The ``Accept-Language`` header from user's HTTP client. -2. The user select a locale in the preferences. -3. The user select a locale from the menu in the query form (e.g. ``:zh-TW``) -4. This plugin is activated in the preferences and the locale (only the language - code / none region code) comes from the fastText's language detection. - -Conclusion: There is a conflict between the language selected by the user and -the language from language detection of this plugin. For example, the user -explicitly selects the German locale via the search syntax to search for a term -that is identified as an English term (try ``:de-DE thermomix``, for example). - -.. hint:: - - To SearXNG maintainers; please take into account: under some circumstances - the auto-detection of the language of this plugin could be detrimental to - users expectations. Its not recommended to activate this plugin by - default. It should always be the user's decision whether to activate this - plugin or not. - -.. _fastText: https://fasttext.cc/ -.. _python fasttext: https://pypi.org/project/fasttext/ -.. _language identification model: https://fasttext.cc/docs/en/language-identification.html -.. _Bag of Tricks for Efficient Text Classification: https://arxiv.org/abs/1607.01759 -.. _`FastText.zip: Compressing text classification models`: https://arxiv.org/abs/1612.03651 - -""" - -from flask_babel import gettext -import babel - -from searx.utils import detect_language -from searx.languages import language_codes - -name = gettext('Autodetect search language') -description = gettext('Automatically detect the query search language and switch to it.') -preference_section = 'general' -default_on = False - -supported_langs = set() -"""Languages supported by most searxng engines (:py:obj:`searx.languages.language_codes`).""" - - -def pre_search(request, search): # pylint: disable=unused-argument - lang = detect_language(search.search_query.query, min_probability=0) - if lang in supported_langs: - search.search_query.lang = lang - try: - search.search_query.locale = babel.Locale.parse(lang) - except babel.core.UnknownLocaleError: - pass - return True - - -def init(app, settings): # pylint: disable=unused-argument - for searxng_locale in language_codes: - supported_langs.add(searxng_locale[0].split('-')[0]) - return True diff --git a/searx/plugins/tor_check.py b/searx/plugins/tor_check.py index 7d50bbcb5..831c90ce5 100644 --- a/searx/plugins/tor_check.py +++ b/searx/plugins/tor_check.py @@ -1,6 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later # lint: pylint -"""A plugin to check if the ip address of the request is a TOR exit node if the +"""A plugin to check if the ip address of the request is a Tor exit-node if the user searches for ``tor-check``. It fetches the tor exit node list from https://check.torproject.org/exit-addresses and parses all the IPs into a list, then checks if the user's IP address is in it. @@ -26,8 +26,8 @@ name = gettext("Tor check plugin") '''Translated name of the plugin''' description = gettext( - "This plugin checks if the address of the request is a TOR exit node, and" - " informs the user if it is, like check.torproject.org but from searxng." + "This plugin checks if the address of the request is a Tor exit-node, and" + " informs the user if it is; like check.torproject.org, but from SearXNG." ) '''Translated description of the plugin.''' @@ -60,7 +60,7 @@ def post_search(request, search): # No answer, return error search.result_container.answers["tor"] = { "answer": gettext( - "The TOR exit node list (https://check.torproject.org/exit-addresses) is unreachable." + "Could not download the list of Tor exit-nodes from: https://check.torproject.org/exit-addresses" ) } return True @@ -75,13 +75,17 @@ def post_search(request, search): if ip_address in node_list: search.result_container.answers["tor"] = { "answer": gettext( - "You are using TOR. Your IP address seems to be: {ip_address}.".format(ip_address=ip_address) + "You are using Tor and it looks like you have this external IP address: {ip_address}".format( + ip_address=ip_address + ) ) } else: search.result_container.answers["tor"] = { "answer": gettext( - "You are not using TOR. Your IP address seems to be: {ip_address}.".format(ip_address=ip_address) + "You are not using Tor and you have this external IP address: {ip_address}".format( + ip_address=ip_address + ) ) } diff --git a/searx/preferences.py b/searx/preferences.py index 3d23c9331..0eac8441c 100644 --- a/searx/preferences.py +++ b/searx/preferences.py @@ -154,7 +154,7 @@ class SearchLanguageSetting(EnumStringSetting): """Available choices may change, so user's value may not be in choices anymore""" def _validate_selection(self, selection): - if selection != '' and not VALID_LANGUAGE_CODE.match(selection): + if selection != '' and selection != 'auto' and not VALID_LANGUAGE_CODE.match(selection): raise ValidationException('Invalid language code: "{0}"'.format(selection)) def parse(self, data: str): diff --git a/searx/query.py b/searx/query.py index b8e1c1275..dbc52ec75 100644 --- a/searx/query.py +++ b/searx/query.py @@ -104,7 +104,7 @@ class LanguageParser(QueryPartParser): break # user may set a valid, yet not selectable language - if VALID_LANGUAGE_CODE.match(value): + if VALID_LANGUAGE_CODE.match(value) or value == 'auto': lang_parts = value.split('-') if len(lang_parts) > 1: value = lang_parts[0].lower() + '-' + lang_parts[1].upper() diff --git a/searx/search/__init__.py b/searx/search/__init__.py index 9d337916c..e5465880c 100644 --- a/searx/search/__init__.py +++ b/searx/search/__init__.py @@ -3,10 +3,12 @@ # pylint: disable=missing-module-docstring, too-few-public-methods import threading +from copy import copy from timeit import default_timer from uuid import uuid4 import flask +import babel from searx import settings from searx.answerers import ask @@ -20,6 +22,7 @@ from searx.network import initialize as initialize_network, check_network_config from searx.metrics import initialize as initialize_metrics, counter_inc, histogram_observe_time from searx.search.processors import PROCESSORS, initialize as initialize_processors from searx.search.checker import initialize as initialize_checker +from searx.utils import detect_language logger = logger.getChild('search') @@ -37,18 +40,57 @@ def initialize(settings_engines=None, enable_checker=False, check_network=False, initialize_checker() +def replace_auto_language(search_query: SearchQuery): + """ + Do nothing except if `search_query.lang` is "auto". + In this case: + * the value "auto" is replaced by the detected language of the query. + The default value is "all" when no language is detected. + * `search_query.locale` is updated accordingly + + Use :py:obj:`searx.utils.detect_language` with `only_search_languages=True` to keep + only languages supported by the engines. + """ + if search_query.lang != 'auto': + return + + detected_lang = detect_language(search_query.query, threshold=0.3, only_search_languages=True) + if detected_lang is None: + # fallback to 'all' if no language has been detected + search_query.lang = 'all' + search_query.locale = None + return + search_query.lang = detected_lang + try: + search_query.locale = babel.Locale.parse(search_query.lang) + except babel.core.UnknownLocaleError: + search_query.locale = None + + class Search: """Search information container""" __slots__ = "search_query", "result_container", "start_time", "actual_timeout" def __init__(self, search_query: SearchQuery): + """Initialize the Search + + search_query is copied + """ # init vars super().__init__() - self.search_query = search_query self.result_container = ResultContainer() self.start_time = None self.actual_timeout = None + self.search_query = copy(search_query) + self.update_search_query(self.search_query) + + def update_search_query(self, search_query: SearchQuery): + """Update search_query. + + call replace_auto_language to replace the "auto" language + """ + replace_auto_language(search_query) def search_external_bang(self): """ diff --git a/searx/search/models.py b/searx/search/models.py index bbca1cd1d..91e5d5982 100644 --- a/searx/search/models.py +++ b/searx/search/models.py @@ -109,3 +109,16 @@ class SearchQuery: self.external_bang, ) ) + + def __copy__(self): + return SearchQuery( + self.query, + self.engineref_list, + self.lang, + self.safesearch, + self.pageno, + self.time_range, + self.timeout_limit, + self.external_bang, + self.engine_data, + ) diff --git a/searx/search/processors/online.py b/searx/search/processors/online.py index dd5d1e36b..242718416 100644 --- a/searx/search/processors/online.py +++ b/searx/search/processors/online.py @@ -4,6 +4,7 @@ """Processores for engine-type: ``online`` """ +# pylint: disable=use-dict-literal from timeit import default_timer import asyncio diff --git a/searx/settings.yml b/searx/settings.yml index f199c29ea..dfbff4bef 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1,5 +1,5 @@ general: - # Debug mode, only for development + # Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG} debug: false # displayed name instance_name: "SpicerHome" @@ -45,6 +45,20 @@ search: ban_time_on_fail: 5 # max ban time in seconds after engine errors max_ban_time_on_fail: 120 + suspended_times: + # Engine suspension time after error (in seconds; set to 0 to disable) + # For error "Access denied" and "HTTP error [402, 403]" + SearxEngineAccessDenied: 86400 + # For error "CAPTCHA" + SearxEngineCaptcha: 86400 + # For error "Too many request" and "HTTP error 429" + SearxEngineTooManyRequests: 3600 + # Cloudflare CAPTCHA + cf_SearxEngineCaptcha: 1296000 + cf_SearxEngineAccessDenied: 86400 + # ReCAPTCHA + recaptcha_SearxEngineCaptcha: 604800 + # remove format to deny access, use lower case. # formats: [html, csv, json, rss] formats: @@ -52,16 +66,19 @@ search: server: # If you change port, bind_address or base_url don't forget to rebuild - # instance's environment (make buildenv) + # instance's environment (make buildenv). Is overwritten by ${SEARXNG_PORT} + # and ${SEARXNG_BIND_ADDRESS} port: 8888 bind_address: "127.0.0.1" - base_url: false # Possible values: false or "https://example.org/location". + # public URL of the instance, to ensure correct inbound links. Is overwritten + # by ${SEARXNG_URL}. + base_url: false # "http://example.com/location" limiter: false # rate limit the number of request on the instance, block some bots # If your instance owns a /etc/searxng/settings.yml file, then set the following # values there. - secret_key: "ultrasecretkey" # change this! + secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET} # Proxying image results through searx image_proxy: false # 1.0 and 1.1 are supported @@ -77,6 +94,7 @@ server: Referrer-Policy: no-referrer redis: + # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}. # https://redis-py.readthedocs.io/en/stable/connections.html#redis.client.Redis.from_url url: false @@ -569,6 +587,7 @@ engines: engine: tineye shortcut: tin timeout: 9.0 + disabled: true - name: etymonline engine: xpath @@ -662,6 +681,7 @@ engines: - name: gentoo engine: gentoo shortcut: ge + timeout: 10.0 - name: gitlab engine: json_engine @@ -988,38 +1008,6 @@ engines: # collection: 'reviews' # name of the db collection # key: 'name' # key in the collection to search for - - name: neeva - engine: xpath - shortcut: nv - time_range_support: true - time_range_url: '&alf%5Bfreshness%5D={time_range_val}' - time_range_map: - day: 'Day' - week: 'Week' - month: 'Month' - year: 'Year' - search_url: https://neeva.com/search?q={query}&c=All&src=Pagination&page={pageno}{time_range} - results_xpath: //div[@class="web-index__component-2rKiM"] | //li[@class="web-rich-deep-links__deepLink-SIbD4"] - url_xpath: .//a[@class="lib-doc-title__link-1b9rC"]/@href | ./h2/a/@href - title_xpath: .//a[@class="lib-doc-title__link-1b9rC"] | ./h2/a - content_xpath: > - .//div[@class="lib-doc-snippet__component-3ewW6"]/text() | - .//div[@class="lib-doc-snippet__component-3ewW6"]/*[not(self::a)] | - ./p - content_html_to_text: true - suggestion_xpath: //span[@class="result-related-searches__link-2ho_u"] - paging: true - disabled: true - categories: [general, web] - timeout: 5.0 - soft_max_redirects: 2 - about: - website: https://neeva.com - official_api_documentation: - use_official_api: false - require_api_key: false - results: HTML - - name: npm engine: json_engine paging: true @@ -1507,7 +1495,8 @@ engines: - name: wiby engine: json_engine - search_url: https://wiby.me/json/?q={query} + paging: true + search_url: https://wiby.me/json/?q={query}&p={pageno} url_query: URL title_query: Title content_query: Snippet @@ -1892,13 +1881,15 @@ engines: engine: xpath paging: true search_url: https://petalsearch.com/search?query={query}&pn={pageno} - results_xpath: //div[@class="webpage-content"]/div[@class="title-cont"]/a - url_xpath: ./@href - title_xpath: . - content_xpath: ../../div[@class="webpage-text"] - suggestion_xpath: //div[@class="related-search-items"]/a + url_xpath: //div[@class='card-source'] + title_xpath: //div[@class='title-name'] + content_xpath: //div[@class='webpage-text'] first_page_num: 1 disabled: true + headers: + User-Agent: Mozilla/5.0 (Linux; Android 7.0;) \ + AppleWebKit/537.36 (KHTML, like Gecko) \ + Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot) about: website: https://petalsearch.com/ wikidata_id: Q104399280 @@ -1912,26 +1903,6 @@ engines: disabled: true timeout: 3.0 - - name: petalsearch news - shortcut: ptsn - categories: news - engine: xpath - paging: true - search_url: https://petalsearch.com/search?channel=news&query={query}&pn={pageno} - results_xpath: //div[@class="news-container"]/div/div/div/a - url_xpath: ./@href - title_xpath: ./div - content_xpath: ../div[@class="news-text"] - thumbnail_xpath: ../../../../img/@src - first_page_num: 1 - disabled: true - about: - website: https://petalsearch.com/ - wikidata_id: Q104399280 - use_official_api: false - require_api_key: false - results: HTML - - name: lib.rs shortcut: lrs engine: xpath @@ -1969,6 +1940,26 @@ engines: require_api_key: false results: HTML + - name: goo + shortcut: goo + engine: xpath + paging: true + search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0 + url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href + title_xpath: //div[@class="result"]/p[@class='title fsL1']/a + content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p + first_page_num: 0 + categories: [general, web] + disabled: true + timeout: 4.0 + about: + website: https://search.goo.ne.jp + wikidata_id: Q249044 + use_official_api: false + require_api_key: false + results: HTML + language: ja + # Doku engine lets you access to any Doku wiki instance: # A public one or a privete/corporate one. # - name: ubuntuwiki diff --git a/searx/settings_defaults.py b/searx/settings_defaults.py index cfa1bb47c..6e98076ff 100644 --- a/searx/settings_defaults.py +++ b/searx/settings_defaults.py @@ -18,7 +18,7 @@ searx_dir = abspath(dirname(__file__)) logger = logging.getLogger('searx') OUTPUT_FORMATS = ['html', 'csv', 'json', 'rss'] -LANGUAGE_CODES = ['all'] + list(l[0] for l in languages) +LANGUAGE_CODES = ['all', 'auto'] + list(l[0] for l in languages) SIMPLE_STYLE = ('auto', 'light', 'dark') CATEGORIES_AS_TABS = { 'general': {}, @@ -160,6 +160,14 @@ SCHEMA = { 'languages': SettingSublistValue(LANGUAGE_CODES, LANGUAGE_CODES), 'ban_time_on_fail': SettingsValue(numbers.Real, 5), 'max_ban_time_on_fail': SettingsValue(numbers.Real, 120), + 'suspended_times': { + 'SearxEngineAccessDenied': SettingsValue(numbers.Real, 86400), + 'SearxEngineCaptcha': SettingsValue(numbers.Real, 86400), + 'SearxEngineTooManyRequests': SettingsValue(numbers.Real, 3600), + 'cf_SearxEngineCaptcha': SettingsValue(numbers.Real, 1296000), + 'cf_SearxEngineAccessDenied': SettingsValue(numbers.Real, 86400), + 'recaptcha_SearxEngineCaptcha': SettingsValue(numbers.Real, 604800), + }, 'formats': SettingsValue(list, OUTPUT_FORMATS), }, 'server': { diff --git a/searx/static/themes/simple/.eslintrc.json b/searx/static/themes/simple/.eslintrc.json index 57d227f3d..df53fcce8 100644 --- a/searx/static/themes/simple/.eslintrc.json +++ b/searx/static/themes/simple/.eslintrc.json @@ -18,7 +18,6 @@ "brace-style": ["error", "1tbs", { "allowSingleLine": true }], "curly": ["error", "multi-line"], "block-spacing": ["error", "always"], - "comma-spacing": ["error", { "before": false, "after": true }], "dot-location": ["error", "property"], "key-spacing": ["error", { "beforeColon": false, "afterColon": true }], "spaced-comment": ["error", "always", { diff --git a/searx/static/themes/simple/css/leaflet.css b/searx/static/themes/simple/css/leaflet.css index 981874b5c..5292e63a1 100644 --- a/searx/static/themes/simple/css/leaflet.css +++ b/searx/static/themes/simple/css/leaflet.css @@ -423,11 +423,8 @@ svg.leaflet-image-layer.leaflet-interactive path { .leaflet-control-attribution a:focus { text-decoration: underline; } -.leaflet-attribution-flag { +.leaflet-control-attribution svg { display: inline !important; - vertical-align: baseline !important; - width: 1em; - height: 0.6669em; } .leaflet-left .leaflet-control-scale { margin-left: 5px; @@ -441,10 +438,12 @@ svg.leaflet-image-layer.leaflet-interactive path { line-height: 1.1; padding: 2px 5px 1px; white-space: nowrap; + overflow: hidden; -moz-box-sizing: border-box; box-sizing: border-box; - background: rgba(255, 255, 255, 0.8); - text-shadow: 1px 1px #fff; + + background: #fff; + background: rgba(255, 255, 255, 0.5); } .leaflet-control-scale-line:not(:first-child) { border-top: 2px solid #777; @@ -538,6 +537,8 @@ svg.leaflet-image-layer.leaflet-interactive path { } .leaflet-popup-scrolled { overflow: auto; + border-bottom: 1px solid #ddd; + border-top: 1px solid #ddd; } .leaflet-oldie .leaflet-popup-content-wrapper { @@ -651,6 +652,6 @@ svg.leaflet-image-layer.leaflet-interactive path { /* Prevent printers from removing background-images of controls. */ .leaflet-control { -webkit-print-color-adjust: exact; - print-color-adjust: exact; + color-adjust: exact; } } diff --git a/searx/static/themes/simple/css/searxng-rtl.min.css b/searx/static/themes/simple/css/searxng-rtl.min.css index da518dccb..b44e64070 100644 --- a/searx/static/themes/simple/css/searxng-rtl.min.css +++ b/searx/static/themes/simple/css/searxng-rtl.min.css @@ -1 +1 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--color-base-font:#444;--color-base-font-rgb:68,68,68;--color-base-background:#fff;--color-base-background-mobile:#f2f5f8;--color-url-font:#334999;--color-url-visited-font:#9822c3;--color-header-background:#fdfbff;--color-header-border:#ddd;--color-footer-background:#fdfbff;--color-footer-border:#ddd;--color-sidebar-border:#ddd;--color-sidebar-font:#000;--color-sidebar-background:#fff;--color-backtotop-font:#444;--color-backtotop-border:#ddd;--color-backtotop-background:#fff;--color-btn-background:#3050ff;--color-btn-font:#fff;--color-show-btn-background:#bbb;--color-show-btn-font:#000;--color-search-border:#bbb;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#fff;--color-search-font:#222;--color-search-background-hover:#3050ff;--color-error:#db3434;--color-error-background:#fae1e1;--color-warning:#dbba34;--color-warning-background:#faf5e1;--color-success:#42db34;--color-success-background:#e3fae1;--color-categories-item-selected-font:#3050ff;--color-categories-item-border-selected:#3050ff;--color-autocomplete-font:#000;--color-autocomplete-border:#bbb;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#fff;--color-autocomplete-background-hover:#e3e3e3;--color-answer-font:#444;--color-answer-background:#fff;--color-result-background:#fff;--color-result-border:#ddd;--color-result-url-font:#000;--color-result-vim-selected:#f7f7f7;--color-result-vim-arrow:#000bbb;--color-result-description-highlight-font:#000;--color-result-link-font:#000bbb;--color-result-link-font-highlight:#000bbb;--color-result-link-visited-font:#9822c3;--color-result-publishdate-font:#777;--color-result-engines-font:#545454;--color-result-search-url-border:#ddd;--color-result-search-url-font:#000;--color-result-image-span-font:#444;--color-result-image-span-font-selected:#fff;--color-result-image-background:#fff;--color-settings-tr-hover:#ebebeb;--color-settings-engine-description-font:#545454;--color-settings-engine-group-background:#0001;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#242424;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#545454;--color-toolkit-kbd-font:#fff;--color-toolkit-kbd-background:#000;--color-toolkit-dialog-border:#ddd;--color-toolkit-dialog-background:#fff;--color-toolkit-tabs-label-border:#fff;--color-toolkit-tabs-section-border:#ddd;--color-toolkit-select-background:#e1e1e1;--color-toolkit-select-border:#ddd;--color-toolkit-select-background-hover:#bbb;--color-toolkit-input-text-font:#222;--color-toolkit-checkbox-onoff-off-background:#ddd;--color-toolkit-checkbox-onoff-on-background:#ddd;--color-toolkit-checkbox-onoff-on-mark-background:#3050ff;--color-toolkit-checkbox-onoff-on-mark-color:#fff;--color-toolkit-checkbox-onoff-off-mark-background:#aaa;--color-toolkit-checkbox-onoff-off-mark-color:#fff;--color-toolkit-checkbox-label-background:#ddd;--color-toolkit-checkbox-label-border:#ddd;--color-toolkit-checkbox-input-border:#3050ff;--color-toolkit-engine-tooltip-border:#ddd;--color-toolkit-engine-tooltip-background:#fff;--color-toolkit-loader-border:rgba(0, 0, 0, 0.2);--color-toolkit-loader-borderleft:rgba(255, 255, 255, 0);--color-doc-code:#300;--color-doc-code-background:#fdd}@media (prefers-color-scheme:dark){:root.theme-auto{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}}:root.theme-dark{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}.code-highlight pre{overflow:auto;background-color:inherit;color:inherit;border:inherit}.code-highlight .linenos{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;margin-right:8px;text-align:right}.code-highlight .linenos::selection{background:0 0}.code-highlight .linenos::-moz-selection{background:0 0}.code-highlight pre{line-height:125%}.code-highlight td.linenos .normal{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight span.linenos{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight td.linenos .special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight span.linenos.special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight .hll{background-color:#ffc}.code-highlight{background:#f8f8f8}.code-highlight .c{color:#3D7B7B;font-style:italic}.code-highlight .err{border:1px solid red}.code-highlight .k{color:green;font-weight:700}.code-highlight .o{color:#666}.code-highlight .ch{color:#3D7B7B;font-style:italic}.code-highlight .cm{color:#3D7B7B;font-style:italic}.code-highlight .cp{color:#9C6500}.code-highlight .cpf{color:#3D7B7B;font-style:italic}.code-highlight .c1{color:#3D7B7B;font-style:italic}.code-highlight .cs{color:#3D7B7B;font-style:italic}.code-highlight .gd{color:#A00000}.code-highlight .ge{font-style:italic}.code-highlight .gr{color:#E40000}.code-highlight .gh{color:navy;font-weight:700}.code-highlight .gi{color:#008400}.code-highlight .go{color:#717171}.code-highlight .gp{color:navy;font-weight:700}.code-highlight .gs{font-weight:700}.code-highlight .gu{color:purple;font-weight:700}.code-highlight .gt{color:#04D}.code-highlight .kc{color:green;font-weight:700}.code-highlight .kd{color:green;font-weight:700}.code-highlight .kn{color:green;font-weight:700}.code-highlight .kp{color:green}.code-highlight .kr{color:green;font-weight:700}.code-highlight .kt{color:#B00040}.code-highlight .m{color:#666}.code-highlight .s{color:#BA2121}.code-highlight .na{color:#687822}.code-highlight .nb{color:green}.code-highlight .nc{color:#00F;font-weight:700}.code-highlight .no{color:#800}.code-highlight .nd{color:#A2F}.code-highlight .ni{color:#717171;font-weight:700}.code-highlight .ne{color:#CB3F38;font-weight:700}.code-highlight .nf{color:#00F}.code-highlight .nl{color:#767600}.code-highlight .nn{color:#00F;font-weight:700}.code-highlight .nt{color:green;font-weight:700}.code-highlight .nv{color:#19177C}.code-highlight .ow{color:#A2F;font-weight:700}.code-highlight .w{color:#bbb}.code-highlight .mb{color:#666}.code-highlight .mf{color:#666}.code-highlight .mh{color:#666}.code-highlight .mi{color:#666}.code-highlight .mo{color:#666}.code-highlight .sa{color:#BA2121}.code-highlight .sb{color:#BA2121}.code-highlight .sc{color:#BA2121}.code-highlight .dl{color:#BA2121}.code-highlight .sd{color:#BA2121;font-style:italic}.code-highlight .s2{color:#BA2121}.code-highlight .se{color:#AA5D1F;font-weight:700}.code-highlight .sh{color:#BA2121}.code-highlight .si{color:#A45A77;font-weight:700}.code-highlight .sx{color:green}.code-highlight .sr{color:#A45A77}.code-highlight .s1{color:#BA2121}.code-highlight .ss{color:#19177C}.code-highlight .bp{color:green}.code-highlight .fm{color:#00F}.code-highlight .vc{color:#19177C}.code-highlight .vg{color:#19177C}.code-highlight .vi{color:#19177C}.code-highlight .vm{color:#19177C}.code-highlight .il{color:#666}html.no-js .hide_if_nojs{display:none}html.js .show_if_nojs{display:none}.center{text-align:center}.right{float:right}.left{float:left}.invisible{display:none!important}.list-unstyled{list-style-type:none}.list-unstyled li{margin-top:4px;margin-bottom:4px}.danger{background-color:var(--color-error-background)}.warning{background:var(--color-warning-background)}.success{background:var(--color-success-background)}.badge{display:inline-block;color:var(--color-toolkit-badge-font);background-color:var(--color-toolkit-badge-background);text-align:center;white-space:nowrap;vertical-align:baseline;min-width:10px;padding:1px 5px;border-radius:5px}kbd{padding:2px 4px;margin:1px;font-size:90%;color:var(--color-toolkit-kbd-font);background:var(--color-toolkit-kbd-background)}table{width:100%}table.striped tr{border-bottom:1px solid var(--color-settings-tr-hover)}th{padding:.4em}td{padding:0 4px}tr:hover{background:var(--color-settings-tr-hover)!important}div.selectable_url{display:block;border:1px solid var(--color-result-search-url-border);padding:4px;color:var(--color-result-search-url-font);margin:.1em;overflow:hidden;height:1.2em;line-height:1.2em;border-radius:5px}div.selectable_url pre{display:block;font-size:.8em;word-break:break-all;margin:.1em;user-select:all}.dialog-error{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:right;border-radius:10px;color:var(--color-error);background:var(--color-error-background);border-color:var(--color-error)}.dialog-error .close{float:left;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-error ol,.dialog-error p,.dialog-error ul{margin:1px 0 0 0}.dialog-error table{width:auto}.dialog-error tr{vertical-align:text-top}.dialog-error tr:hover{background:0 0!important}.dialog-error td{padding:0 1em 0 0;padding-top:0;padding-left:1rem;padding-bottom:0;padding-right:0}.dialog-error h4{margin-top:.3em;margin-bottom:.3em}.dialog-warning{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:right;border-radius:10px;color:var(--color-warning);background:var(--color-warning-background);border-color:var(--color-warning)}.dialog-warning .close{float:left;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-warning ol,.dialog-warning p,.dialog-warning ul{margin:1px 0 0 0}.dialog-warning table{width:auto}.dialog-warning tr{vertical-align:text-top}.dialog-warning tr:hover{background:0 0!important}.dialog-warning td{padding:0 1em 0 0;padding-top:0;padding-left:1rem;padding-bottom:0;padding-right:0}.dialog-warning h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:right;border-radius:10px;display:block;background:var(--color-toolkit-dialog-background);position:fixed;top:50%;left:50%;margin:0 auto;transform:translate(-50%,-50%);z-index:10000000}.dialog-modal .close{float:left;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-modal ol,.dialog-modal p,.dialog-modal ul{margin:1px 0 0 0}.dialog-modal table{width:auto}.dialog-modal tr{vertical-align:text-top}.dialog-modal tr:hover{background:0 0!important}.dialog-modal td{padding:0 1em 0 0;padding-top:0;padding-left:1rem;padding-bottom:0;padding-right:0}.dialog-modal h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal h3{margin-top:0}.btn-collapse{cursor:pointer}.scrollx{overflow-x:auto;overflow-y:hidden;display:block;padding:0;margin:0;border:none}.tabs .tabs>label{font-size:90%}ul.tabs{border-bottom:1px solid var(--color-toolkit-tabs-section-border);list-style:none;padding-left:0}ul.tabs li{display:flex}.tabs{display:flex;flex-wrap:wrap;width:100%;min-width:100%}.tabs>*{order:2}.tabs>input[type=radio]{display:none}.tabs>label,.tabs>li>a{order:1;padding:.7em;margin:0 .7em;letter-spacing:.5px;text-transform:uppercase;border:solid var(--color-toolkit-tabs-label-border);border-width:0 0 2px 0;color:unset;-webkit-touch-callout:none;user-select:none;cursor:pointer}.tabs>label.active,.tabs>li>a.active{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}.tabs>label:hover,.tabs>li>a:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}.tabs>section{min-width:100%;padding:.7rem 0;box-sizing:border-box;border-top:1px solid var(--color-toolkit-tabs-section-border);display:none}.tabs>label:last-of-type{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font);letter-spacing:-.1px}.tabs>section:last-of-type{display:block}html body .tabs>input:checked~section{display:none}html body .tabs>input:checked~label{position:inherited;background:inherit;border-bottom:2px solid transparent;font-weight:400;color:inherit}html body .tabs>input:checked~label:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}html body .tabs>input:checked+label{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}html body .tabs>input:checked+label+section{display:block}select{height:2.4rem;margin-top:0;margin-left:1rem;margin-bottom:0;margin-right:0;padding:.2rem!important;color:var(--color-search-font);font-size:.9rem;z-index:2}select:focus,select:hover{cursor:pointer}@supports ((background-position-x:100%) and ((appearance:none) or (-webkit-appearance:none) or (-moz-appearance:none))){select{appearance:none;-webkit-appearance:none;-moz-appearance:none;border-width:0 2rem 0 0;border-color:transparent;background:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat;background-position-x:calc(100% + 2rem);background-size:2rem;background-origin:content-box;background-color:var(--color-toolkit-select-background);outline:medium none;text-overflow:ellipsis;border-radius:5px}select:focus,select:hover{background-color:var(--color-toolkit-select-background-hover)}select option{background-color:var(--color-base-background)}@media (prefers-color-scheme:dark){html.theme-auto select,html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}input.checkbox-onoff[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;display:inline-block;width:2.5em;height:.7em;box-shadow:none!important;margin:0 16px;border-radius:10px;position:relative}input.checkbox-onoff[type=checkbox]:focus,input.checkbox-onoff[type=checkbox]:hover{outline:0}input.checkbox-onoff[type=checkbox]:focus::after{content:"";position:absolute;width:3.5em;height:1.65em;border:1px solid var(--color-btn-background);border-radius:12px;box-shadow:var(--color-btn-background) 0 0 3px;z-index:10000;top:-.55em;left:-.6em}input.checkbox-onoff[type=checkbox]::before{position:absolute;top:-.5em;display:flex;justify-content:center;align-items:center;font-size:.75em;width:1.875em;height:1.875em;border-radius:50%}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked,input.checkbox-onoff[type=checkbox]{background:var(--color-toolkit-checkbox-onoff-off-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked::before,input.checkbox-onoff[type=checkbox]::before{left:-.5em;content:"\2715";color:var(--color-toolkit-checkbox-onoff-off-mark-color);background:var(--color-toolkit-checkbox-onoff-off-mark-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox],input.checkbox-onoff[type=checkbox]:checked{background:var(--color-toolkit-checkbox-onoff-on-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]::before,input.checkbox-onoff[type=checkbox]:checked::before{left:calc(100% - 1.5em);content:"\2713";color:var(--color-toolkit-checkbox-onoff-on-mark-color);background:var(--color-toolkit-checkbox-onoff-on-mark-background)}@supports (transform:rotate(-45deg)){input[type=checkbox]:not(.checkbox-onoff){-webkit-appearance:none;-moz-appearance:none;appearance:none;width:20px;height:20px;cursor:pointer;position:relative;top:0;left:0;border:2px solid var(--color-toolkit-checkbox-input-border);border-radius:.3em}input[type=checkbox]:not(.checkbox-onoff)::after{content:'';width:9px;height:5px;position:absolute;top:3px;left:2px;border:3px solid var(--color-toolkit-checkbox-label-border);border-top:none;border-right:none;background:0 0;opacity:0;transform:rotate(-45deg)}input[type=checkbox]:not(.checkbox-onoff):checked::after{border-color:var(--color-toolkit-checkbox-input-border);opacity:1}input[type=checkbox][disabled]:not(.checkbox-onoff){border:inherit;background-color:transparent!important;cursor:inherit}input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after{opacity:.5}}@media screen and (max-width:50em){.tabs>label{width:100%}}.loader,.loader::after{border-radius:50%;width:2em;height:2em}.loader{margin:1em auto;font-size:10px;position:relative;text-indent:-9999em;border-top:.5em solid var(--color-toolkit-loader-border);border-right:.5em solid var(--color-toolkit-loader-border);border-bottom:.5em solid var(--color-toolkit-loader-border);border-left:.5em solid var(--color-toolkit-loader-borderleft);-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:load8 1.2s infinite linear;animation:load8 1.2s infinite linear}@-webkit-keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.engine-tooltip{display:none;position:absolute;padding:.5rem 1rem;margin:0 0 0 2rem;border:1px solid var(--color-toolkit-engine-tooltip-border);background:var(--color-toolkit-engine-tooltip-background);font-size:14px;font-weight:400;z-index:1000000;text-align:left;border-radius:10px}.engine-tooltip:hover,td:hover .engine-tooltip,th:hover .engine-tooltip{display:inline-block}.stacked-bar-chart{margin:0;padding:0 .125rem 0 4rem;width:100%;width:-moz-available;width:-webkit-fill-available;width:fill;flex-direction:row;flex-wrap:nowrap;align-items:center;display:inline-flex}.stacked-bar-chart-value{width:3rem;display:inline-block;position:absolute;padding:0 .5rem;text-align:right}.stacked-bar-chart-base{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset}.stacked-bar-chart-median{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:var(--color-base-font);border:1px solid rgba(var(--color-base-font-rgb),.9);padding:.3rem 0}.stacked-bar-chart-rate80{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border:1px solid rgba(var(--color-base-font-rgb),.3);padding:.3rem 0}.stacked-bar-chart-rate95{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-bottom:1px dotted rgba(var(--color-base-font-rgb),.5);padding:0}.stacked-bar-chart-rate100{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-left:1px solid rgba(var(--color-base-font-rgb),.9);padding:.4rem 0;width:1px}/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */.autocomplete{position:absolute;width:44rem;max-height:0;overflow-y:hidden;text-align:right;border-radius:10px}.autocomplete:active,.autocomplete:focus,.autocomplete:hover{background-color:var(--color-autocomplete-background)}.autocomplete:empty{display:none}.autocomplete>ul{list-style-type:none;margin:0;padding:0}.autocomplete>ul>li{cursor:pointer;padding:.5rem 1rem}.autocomplete>ul>li.active,.autocomplete>ul>li:active,.autocomplete>ul>li:focus,.autocomplete>ul>li:hover{background-color:var(--color-autocomplete-background-hover)}.autocomplete>ul>li.active a:active,.autocomplete>ul>li.active a:focus,.autocomplete>ul>li.active a:hover,.autocomplete>ul>li:active a:active,.autocomplete>ul>li:active a:focus,.autocomplete>ul>li:active a:hover,.autocomplete>ul>li:focus a:active,.autocomplete>ul>li:focus a:focus,.autocomplete>ul>li:focus a:hover,.autocomplete>ul>li:hover a:active,.autocomplete>ul>li:hover a:focus,.autocomplete>ul>li:hover a:hover{text-decoration:none}.autocomplete>ul>li.locked{cursor:inherit}.autocomplete.open{display:block;background-color:var(--color-autocomplete-background);color:var(--color-autocomplete-font);max-height:32rem;overflow-y:auto;z-index:100;margin-top:3.5rem;border-radius:.8rem;box-shadow:0 2px 8px rgba(34,38,46,.25)}.autocomplete.open:empty{display:none}@media screen and (max-width:50em){.autocomplete{width:100%}.autocomplete>ul>li{padding:1rem}}#main_results #results.image-detail-open.only_template_images{width:min(98%,59.25rem)!important}#main_results #results.only_template_images.image-detail-open #backToTop{right:56.75rem!important;left:inherit}article.result-images .detail{display:none}#results.image-detail-open article.result-images[data-vim-selected] .detail{display:flex;flex-direction:column;position:fixed;right:60rem;left:0;top:7.6rem;transition:top 64ms ease-in 0s;bottom:0;background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-background);z-index:10000;padding:4rem 3rem 3rem 3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:block;flex:1;text-align:left;width:100%;border:none;text-decoration:none}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{padding:0;margin:0;border:none;object-fit:contain;width:inherit;height:inherit;max-width:100%;min-height:inherit;max-height:calc(100vh - 25rem - 7rem);background:inherit}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels{color:var(--color-result-detail-font);max-height:16rem;min-height:16rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels hr{border-top:1px solid var(--color-result-detail-hr);border-bottom:none}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4{height:2rem;overflow:hidden;text-overflow:ellipsis;font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{color:var(--color-result-detail-label-font);font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{display:inline-block;width:12rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{text-align:right}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content{height:2rem;overflow:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url:hover{position:relative;overflow:inherit!important;background:var(--color-result-detail-background);text-overflow:inherit!important}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:active,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:visited{color:var(--color-result-detail-link)}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover{text-decoration:underline}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close{top:1rem;right:1rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{top:1rem;left:6rem;padding-top:.4rem;padding-left:.5rem;padding-bottom:.4rem;padding-right:.3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{top:1rem;left:2rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{border-radius:50%;display:block;width:1.5rem;height:1.5rem;position:absolute;filter:opacity(40%);z-index:2000002}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span{display:block;width:1.5rem;height:1.5rem;text-align:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span::before,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span::before{vertical-align:sub}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:visited{color:var(--color-result-detail-font);background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-font)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover{filter:opacity(80%)}#results.image-detail-open article.result-images[data-vim-selected] .detail .loader{position:absolute;top:1rem;left:50%;border-top:.5em solid var(--color-result-detail-loader-border);border-right:.5em solid var(--color-result-detail-loader-border);border-bottom:.5em solid var(--color-result-detail-loader-border);border-left:.5em solid var(--color-result-detail-loader-borderleft)}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail{top:0}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail a.result-images-source img{max-height:calc(100vh - 25rem)}@media screen and (max-width:79.75em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;right:0}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:flex;flex-direction:column;justify-content:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 24rem)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{left:1rem}}@media screen and (max-width:50em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;right:0;padding:1rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 20rem);margin:0}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{width:inherit;margin-left:1rem}}.dialog-modal{animation-name:dialogmodal;animation-duration:.13s}@keyframes dialogmodal{0%{opacity:0}50%{opacity:.5;transform:translate(-50%,-50%) scale(1.05)}}input.checkbox-onoff[type=checkbox]::before{transition:left .25s}iframe[src^="https://w.soundcloud.com"]{height:120px}iframe[src^="https://www.deezer.com"]{height:94px}iframe[src^="https://www.mixcloud.com"]{height:250px}iframe[src^="https://bandcamp.com/EmbeddedPlayer"]{height:350px}iframe[src^="https://bandcamp.com/EmbeddedPlayer/track"]{height:120px}iframe[src^="https://genius.com/songs"]{height:65px}.info-page code{font-family:monospace;color:var(--color-doc-code);background-color:var(--color-doc-code-background);padding:2px 5px;border-radius:5px}.stats_endpoint .github-issue-button{display:block;padding:8px 16px;font-family:sans-serif;font-size:16px;color:#fff;background-color:#238636;border:#2ea043;border-radius:10px!important;box-shadow:transparent 0 0 0 0}.stats_endpoint .github-issue-button:hover{background-color:#2ea043}.stats_endpoint .issue-hide{display:none}.stats_endpoint input[type=checked]{position:absolute}.stats_endpoint label{margin:1rem 1rem 1rem 0}.stats_endpoint .step_content{margin:1rem 1rem 1rem 2rem}.stats_endpoint .step1,.stats_endpoint .step2{visibility:hidden}.stats_endpoint .step1_delay{transition:visibility 0s linear 4s}.stats_endpoint #step1:checked~.step1,.stats_endpoint #step2:checked~.step2{visibility:visible}.engine-stats{border-spacing:0;border-collapse:collapse}.engine-stats tr td,.engine-stats tr th{border-bottom:1px solid var(--color-result-border);padding:.25rem}.engine-stats table.engine-tooltip{border-spacing:0;border-collapse:collapse}.engine-stats table.engine-tooltip td,.engine-stats table.engine-tooltip th{border:none}.engine-stats .engine-name{width:20rem}.engine-stats .engine-score{width:7rem;text-align:right}.engine-stats .engine-reliability{text-align:right}failed-test,table.engine-error td.engine-error-type,table.engine-error th.engine-error-type{width:10rem}.engine-errors{margin-top:3rem}.engine-errors table.engine-error{max-width:1280px;margin:1rem 0 3rem 0;border:1px solid var(--color-result-border);text-align:right}.engine-errors table.engine-error tr td,.engine-errors table.engine-error tr th{padding:.5rem}.engine-errors table.engine-error span.log_parameters{border-right:1px solid solid var(--color-result-border);padding:0 1rem 0 0;margin:0 0 0 .5rem}.bar-chart-value{width:3em;display:inline-block;text-align:right;padding-right:.5rem}.bar-chart-graph{width:calc(100% - 5rem);display:inline-block}.bar-chart-bar{border:3px solid #5bc0de;margin:1px 0}.bar-chart-serie1{border:3px solid #5bc0de;margin:1px 0;float:left}.bar-chart-serie2{border:3px solid #deb15b;margin:1px 0;float:left}.bar0{width:0;border:0}.bar1{width:1%}.bar2{width:2%}.bar3{width:3%}.bar4{width:4%}.bar5{width:5%}.bar6{width:6%}.bar7{width:7%}.bar8{width:8%}.bar9{width:9%}.bar10{width:10%}.bar11{width:11%}.bar12{width:12%}.bar13{width:13%}.bar14{width:14%}.bar15{width:15%}.bar16{width:16%}.bar17{width:17%}.bar18{width:18%}.bar19{width:19%}.bar20{width:20%}.bar21{width:21%}.bar22{width:22%}.bar23{width:23%}.bar24{width:24%}.bar25{width:25%}.bar26{width:26%}.bar27{width:27%}.bar28{width:28%}.bar29{width:29%}.bar30{width:30%}.bar31{width:31%}.bar32{width:32%}.bar33{width:33%}.bar34{width:34%}.bar35{width:35%}.bar36{width:36%}.bar37{width:37%}.bar38{width:38%}.bar39{width:39%}.bar40{width:40%}.bar41{width:41%}.bar42{width:42%}.bar43{width:43%}.bar44{width:44%}.bar45{width:45%}.bar46{width:46%}.bar47{width:47%}.bar48{width:48%}.bar49{width:49%}.bar50{width:50%}.bar51{width:51%}.bar52{width:52%}.bar53{width:53%}.bar54{width:54%}.bar55{width:55%}.bar56{width:56%}.bar57{width:57%}.bar58{width:58%}.bar59{width:59%}.bar60{width:60%}.bar61{width:61%}.bar62{width:62%}.bar63{width:63%}.bar64{width:64%}.bar65{width:65%}.bar66{width:66%}.bar67{width:67%}.bar68{width:68%}.bar69{width:69%}.bar70{width:70%}.bar71{width:71%}.bar72{width:72%}.bar73{width:73%}.bar74{width:74%}.bar75{width:75%}.bar76{width:76%}.bar77{width:77%}.bar78{width:78%}.bar79{width:79%}.bar80{width:80%}.bar81{width:81%}.bar82{width:82%}.bar83{width:83%}.bar84{width:84%}.bar85{width:85%}.bar86{width:86%}.bar87{width:87%}.bar88{width:88%}.bar89{width:89%}.bar90{width:90%}.bar91{width:91%}.bar92{width:92%}.bar93{width:93%}.bar94{width:94%}.bar95{width:95%}.bar96{width:96%}.bar97{width:97%}.bar98{width:98%}.bar99{width:99%}.bar100{width:100%}.osm-map-box{height:300px;width:100%;margin:10px 0}#main_index{margin-top:26vh}.index{text-align:center}.index .title{background:url(../img/searxng.png) no-repeat;min-height:4rem;margin:4rem auto;background-position:center;background-size:contain}.index h1{font-size:4em;visibility:hidden}.index #search,.index #search_header{margin:0 auto;background:inherit;border:inherit;padding:0;display:block}.index .search_filters{display:block;margin:1em 0}.index .category label{padding:6px 10px;border-bottom:initial!important}@media screen and (max-width:79.75em){div.title h1{font-size:1em}#main_index{margin-top:6em}}#tab-content-query table td,#tab-content-query table th{text-align:left!important;height:3rem}#main_preferences form{width:100%}#main_preferences fieldset{margin:8px;border:none}#main_preferences legend{margin:0;padding:5px 0 0 0;display:block;float:right;width:300px}#main_preferences .value{margin:0;padding:0;float:right;width:15em}#main_preferences .value input[type=text],#main_preferences .value select{font-size:inherit!important;margin-top:0;margin-left:1rem;margin-bottom:0;margin-right:0}#main_preferences .value select{width:14rem}#main_preferences .value input[type=text]{width:13.25rem;color:var(--color-toolkit-input-text-font);border:none;background:none repeat scroll 0 0 var(--color-toolkit-select-background);padding:.2rem .4rem;height:2rem;border-radius:5px}#main_preferences .value input[type=text]:focus,#main_preferences .value input[type=text]:hover{background-color:var(--color-toolkit-select-background-hover)}#main_preferences .value input:focus,#main_preferences .value select:focus{outline:0;box-shadow:0 0 1px 1px var(--color-btn-background)}#main_preferences .description{margin:0;padding:5px 0 0 0;float:left;width:50%;color:var(--color-settings-engine-description-font);font-size:90%}#main_preferences table{border-collapse:collapse}#main_preferences table td{text-align:center}#main_preferences .category{margin-left:.5rem}#main_preferences .category label{border:2px solid transparent;padding:.2rem .4rem;border-radius:5px}#main_preferences .category input[type=checkbox]:checked+label{border:2px solid var(--color-categories-item-border-selected)}#main_preferences table.table_engines td{height:3.75rem}#main_preferences table.table_engines th.name label{cursor:pointer}#main_preferences table.table_engines th.name .engine-tooltip{margin-top:1.8rem;right:calc((100% - 85em)/ 2 + 10em);max-width:40rem}#main_preferences table.table_engines th.name .engine-tooltip .engine-description{margin-top:.5rem}#main_preferences table.table_engines .engine-group{text-align:right;font-weight:400;background:var(--color-settings-engine-group-background)}#main_preferences table.table_engines .name,#main_preferences table.table_engines .shortcut{text-align:right}#main_preferences table.cookies{width:100%;direction:ltr}#main_preferences table.cookies td,#main_preferences table.cookies th{text-align:left;font-family:monospace;font-size:1rem;padding:.5em;vertical-align:top}#main_preferences table.cookies td:first-child{word-break:keep-all;width:14rem;padding-right:1rem}#main_preferences table.cookies td:last-child{word-break:break-all}#main_preferences table.cookies>tbody>tr:nth-child(even)>td,#main_preferences table.cookies>tbody>tr:nth-child(even)>th{background-color:var(--color-settings-tr-hover)}#main_preferences .preferences_back{background:none repeat scroll 0 0 var(--color-btn-background);color:var(--color-btn-font);border:0 none;border-radius:10px;cursor:pointer;display:inline-block;margin:2px 4px;padding:.7em}#main_preferences .preferences_back a{color:var(--color-settings-return-font)}#main_preferences .preferences_back a::first-letter{text-transform:uppercase}#main_preferences div.selectable_url pre{width:100%}@media screen and (max-width:79.75em){.preferences_back{clear:both}.engine-tooltip{right:10em!important}}#search{padding:0;margin:0}#search_header{padding-top:1.5em;padding-left:2em;padding-right:7rem;margin:0;background:var(--color-header-background);border-bottom:1px solid var(--color-header-border);display:grid;column-gap:1.2rem;row-gap:1rem;grid-template-columns:3rem 1fr;grid-template-areas:"logo search" "spacer categories"}.category{display:inline-block;position:relative;margin-left:1rem;padding:0}.category input{display:none}.category label{cursor:pointer;padding:.2rem 0;display:inline-flex;text-transform:capitalize;font-size:.9em;border-bottom:2px solid transparent;-webkit-touch-callout:none;user-select:none}.category label svg{padding-right:.2rem}.category label div.category_name{margin:auto 0}.category input[type=checkbox]:checked+label{color:var(--color-categories-item-selected-font);border-bottom:2px solid var(--color-categories-item-border-selected)}#search_logo{grid-area:logo;display:flex;align-items:center;justify-content:center}#search_logo svg{flex:1;width:30px;height:30px;margin:.5rem 0 auto 0}.search_categories{grid-area:categories}.search_categories .help{display:none}.search_categories:hover .help{display:block;position:absolute;background:var(--color-base-background);padding:1rem .6rem .6rem 0;z-index:1000;width:100%;left:-.1rem}#search_view{grid-area:search}.search_box{border-radius:.8rem;width:44rem;display:inline-flex;flex-direction:row;white-space:nowrap;box-shadow:var(--color-search-shadow)}#clear_search{display:block;border-collapse:separate;box-sizing:border-box;width:1.8rem;margin:0;padding:.8rem .2rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:10000}#clear_search:hover{color:var(--color-search-background-hover)}#clear_search.empty *{display:none}html.no-js #clear_search.hide_if_nojs{display:none}#q,#send_search{display:block;margin:0;padding:.8rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:2}#q{width:100%;padding-right:1rem;padding-left:0!important;border-radius:0 .8rem .8rem 0}#q::-ms-clear,#q::-webkit-search-cancel-button{display:none}#send_search{border-radius:.8rem 0 0 .8rem}#send_search:hover{cursor:pointer;background-color:var(--color-search-background-hover);color:var(--color-search-background)}.no-js #clear_search,.no-js #send_search{width:auto!important;border-right:1px solid var(--color-search-border)}.search_filters{margin-top:.6rem;margin-left:0;margin-bottom:0;margin-right:10.6rem;display:flex;overflow-x:auto;overscroll-behavior-inline:contain}.search_filters select{background-color:inherit}.search_filters select:focus,.search_filters select:hover{color:var(--color-base-font)}@media screen and (max-width:79.75em){#search_header{padding:1.5em .5rem 0 .5rem;column-gap:.5rem}.search_filters{margin-top:.6rem;margin-left:0;margin-bottom:0;margin-right:3.5rem}#categories{font-size:90%;clear:both}#categories .checkbox_container{margin:auto;margin-top:2px}}@media screen and (max-width:79.75em) and (hover:none){#main_index #categories_container,#main_results #categories_container{width:max-content}#main_index #categories_container .category,#main_results #categories_container .category{display:inline-block;width:auto}#main_index #categories,#main_results #categories{width:100%;text-align:right;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch}}@media screen and (max-width:50em){#search_header{width:100%;margin:0;padding:.1rem 0 0 0;column-gap:0;row-gap:0;grid-template-areas:"logo search" "categories categories"}.search_logo{padding:0}.search_box{width:98%;display:flex;margin:0 auto}#q{width:100%;flex:1}.search_filters{margin:0}.category{display:inline-block;width:auto;margin:0}.category label{padding:1rem!important;margin:0!important}.category label svg{display:none}#search_view:focus-within{display:block;background-color:var(--color-search-background);position:absolute;top:0;height:100%;width:100%;z-index:10000}#search_view:focus-within .search_box{border-bottom:1px solid var(--color-search-border);width:100%;border-radius:0;box-shadow:none}#search_view:focus-within .search_box #send_search{margin-left:0!important}#search_view:focus-within .search_box *{border:none;border-radius:0;box-shadow:none}#main_results #q:placeholder-shown~#send_search{margin-left:2.6rem;transition:margin .1s}}@media screen and (max-width:20rem){#search_header{grid-template-areas:"search search" "categories categories"}#search_logo{display:none}}#categories{-webkit-touch-callout:none;user-select:none}#categories::-webkit-scrollbar{width:0;height:0}#categories_container{position:relative}@media screen and (min-width:50em){.center-aligment-yes #main_results{--center-page-width:48rem}}@media screen and (min-width:62rem){.center-aligment-yes #main_results{--center-page-width:60rem}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{--center-page-width:73rem}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-yes #main_results #results{grid-template-columns:60% calc(40% - 5rem);margin-left:0;margin-right:0}.center-aligment-yes #main_results #urls{margin-right:3rem}.center-aligment-yes #main_results #sidebar{margin-left:1rem}.center-aligment-yes #main_results #backToTop{right:calc(60% + 1rem)}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search{width:100%;display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search_header{grid-template-columns:calc(50% - 4.5rem - var(--center-page-width)/ 2) 3rem var(--center-page-width);grid-template-areas:"na logo search" "na spacer categories";column-gap:1.2rem;width:100%;padding-left:0;padding-right:0}.center-aligment-yes #main_results .search_filters{margin-right:.5rem;width:var(--center-page-width)}.center-aligment-yes #main_results #results{margin-left:2rem;margin-right:10rem}.center-aligment-yes #main_results #results.image-detail-open,.center-aligment-yes #main_results #results.only_template_images{align-self:flex-start}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open){margin-right:1.5rem;grid-template-columns:calc(var(--center-page-width) - 5rem - 25rem) 25rem}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open) #backToTop{right:calc(50% - 25rem - 5rem + 1rem + var(--center-page-width)/ 2)}.center-aligment-yes #main_results #results .result .content{max-width:inherit}.center-aligment-yes #main_results #urls{margin-right:0}.center-aligment-yes #main_results #sidebar{margin-left:0}}.ion-icon{display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(-1,1)}.ion-icon-small{width:1rem;height:1rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(-1,1)}.ion-icon-big{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(-1,1)}html{font-family:sans-serif;font-size:.9em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;color:var(--color-base-font);background-color:var(--color-base-background);padding:0;margin:0}body,main{padding:0;margin:0}body{display:flex;flex-direction:column;height:100vh;margin:0}main{width:100%;margin-bottom:2rem;flex:1}.page_with_header{margin:2em auto;width:85em}footer{clear:both;min-height:4rem;padding:1rem 0;width:100%;text-align:center;background-color:var(--color-footer-background);border-top:1px solid var(--color-footer-border);overflow:hidden}footer p{font-size:.9em}.page_with_header .logo{height:40px}#results button[type=submit],input[type=submit]{padding:.7rem;display:inline-block;background:var(--color-btn-background);color:var(--color-btn-font);border-radius:10px;border:0;cursor:pointer}a{text-decoration:none;color:var(--color-url-font)}a:visited{color:var(--color-url-visited-font)}a:visited .highlight{color:var(--color-url-visited-font)}article[data-vim-selected]{background:var(--color-result-vim-selected);border-right:.2rem solid var(--color-result-vim-arrow);border-radius:10px 0 0 10px}article.result-images[data-vim-selected]{background:var(--color-result-vim-arrow);border:none;border-radius:10px}article.result-images[data-vim-selected] .image_thumbnail{filter:opacity(60%)}article.result-images[data-vim-selected] span.source,article.result-images[data-vim-selected] span.title{color:var(--color-result-image-span-font-selected)}article[data-vim-selected].category-files,article[data-vim-selected].category-map,article[data-vim-selected].category-music,article[data-vim-selected].category-news,article[data-vim-selected].category-social,article[data-vim-selected].category-videos{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{margin:.125rem 0;padding:1rem;border-right:.2rem solid transparent}.result h3{font-size:1.2rem;word-wrap:break-word;margin:.4rem 0 .4rem 0;padding:0}.result h3 a{color:var(--color-result-link-font);font-weight:400;font-size:1.1em}.result h3 a:visited{color:var(--color-result-link-visited-font)}.result h3 a:focus,.result h3 a:hover{text-decoration:underline;border:none;outline:0}.result .cache_link,.result .proxyfied_link{font-size:.9em!important}.result .content,.result .stat{font-size:.9em;margin:0;padding:0;max-width:54em;word-wrap:break-word;line-height:1.24}.result .content .highlight,.result .stat .highlight{color:var(--color-result-description-highlight-font);background:inherit;font-weight:700}.result .altlink a{font-size:.9em;margin:0 10px 0 0;padding:5px 10px;border-radius:5px;background:var(--color-show-btn-background);color:var(--color-show-btn-font);cursor:pointer}.result .altlink a:hover{background:var(--color-btn-background);color:var(--color-btn-font)}.result .codelines .highlight{color:inherit;background:inherit;font-weight:400}.result .url_wrapper{display:flex;font-size:1rem;color:var(--color-result-url-font);flex-wrap:nowrap;overflow:hidden;flex-direction:row;margin:0;padding:0}.result .url_wrapper .url_o1{white-space:nowrap;flex-shrink:1}.result .url_wrapper .url_o1::after{content:" ";width:1ch;display:inline-block}.result .url_wrapper .url_o2{overflow:hidden;white-space:nowrap;flex-basis:content;flex-grow:0;flex-shrink:1;text-align:right}.result .url_wrapper .url_o2 .url_i2{float:right}.result .published_date,.result .result_author,.result .result_length,.result .result_shipping,.result .result_source_country{font-size:.8em;color:var(--color-result-publishdate-font)}.result .result_price{font-size:1.2em;color:var(--color-result-description-highlight-font)}.result img.thumbnail{float:right;padding-top:.6rem;padding-left:1rem;width:20rem;height:unset}.result img.image{float:right;padding-top:.6rem;padding-left:1rem;width:7rem;max-height:7rem;object-fit:scale-down;object-position:right top}.result .break{clear:both}.result-paper .attributes{display:table;border-spacing:.125rem}.result-paper .attributes div{display:table-row}.result-paper .attributes div span{font-size:.9rem;margin-top:.25rem;display:table-cell}.result-paper .attributes div span time{font-size:.9rem}.result-paper .attributes div span:first-child{color:var(--color-base-font);min-width:10rem}.result-paper .attributes div span:nth-child(2){color:var(--color-result-publishdate-font)}.result-paper .content{margin-top:.25rem}.result-paper .comments{font-size:.9rem;margin:.25rem 0 0 0;padding:0;word-wrap:break-word;line-height:1.24;font-style:italic}.template_group_images{display:flex;flex-wrap:wrap}.template_group_images::after{flex-grow:10;content:""}.category-files,.category-map,.category-music,.category-news,.category-social,.category-videos{border:1px solid var(--color-result-border);margin:1rem .5rem 0 .5rem!important;border-radius:10px}.category-social .image{width:auto!important;min-width:48px;min-height:48px;padding:0 5px 25px 0!important}.audio-control audio{width:100%;padding:10px 0 0 0}.embedded-content iframe{width:100%;padding:10px 0 0 0}.result-videos .content{overflow:hidden}.result-videos .embedded-video iframe{width:100%;aspect-ratio:16/9;padding:10px 0 0 0}@supports not (aspect-ratio:1 / 1){.result-videos .embedded-video iframe{height:calc(45rem * 9 / 16)}}.engines{float:left;display:flex;flex-wrap:wrap;justify-content:flex-end;color:var(--color-result-engines-font)}.engines span{font-size:smaller;margin-top:0;margin-bottom:0;margin-left:.5rem;margin-right:0}.small_font{font-size:.8em}.highlight{color:var(--color-result-link-font-highlight);background:inherit}.empty_element{font-style:italic}.result-images{flex-grow:1;padding:.5rem .5rem 3rem .5rem;margin:.25rem;border:none!important;height:12rem}.result-images>a{position:relative}.result-images img{margin:0;padding:0;border:none;height:100%;width:100%;object-fit:cover;vertical-align:bottom;background:var(--color-result-image-background)}.result-images span.source,.result-images span.title{display:block;position:absolute;width:100%;font-size:.9rem;color:var(--color-result-image-span-font);padding:.5rem 0 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.result-images span.source{padding:1.8rem 0 0 0;font-size:.7rem}.result-map img.image{float:left!important;height:100px!important;width:auto!important}.result-map table{font-size:.9em;width:auto;border-collapse:separate;border-spacing:0 .35rem}.result-map table th{font-weight:inherit;width:17rem;vertical-align:top;text-align:right}.result-map table td{vertical-align:top;text-align:right}.hidden{display:none!important}#results{margin-top:1rem;margin-left:2rem;margin-bottom:0;margin-right:10rem;display:grid;grid-template-columns:45rem 25rem;grid-template-rows:min-content min-content 1fr min-content;gap:0 5rem;grid-template-areas:"corrections sidebar" "answers sidebar" "urls sidebar" "pagination sidebar"}#results #sidebar :first-child,#results #urls :first-child{margin-top:0}#urls{padding:0;grid-area:urls}#suggestions .wrapper{display:flex;flex-flow:column;justify-content:flex-end}#suggestions .wrapper form{display:inline-block;flex:1 1 50%}#infoboxes input,#suggestions input{padding:0;margin:3px;font-size:.9em;display:inline-block;background:0 0;color:var(--color-result-search-url-font);cursor:pointer;width:calc(100%);text-overflow:ellipsis;overflow:hidden;text-align:left}#infoboxes .infobox .url a,#infoboxes input[type=submit],#suggestions .infobox .url a,#suggestions input[type=submit]{color:var(--color-result-link-font);text-decoration:none;font-size:.9rem}#infoboxes .infobox .url a:hover,#infoboxes input[type=submit]:hover,#suggestions .infobox .url a:hover,#suggestions input[type=submit]:hover{text-decoration:underline}#corrections{grid-area:corrections;display:flex;flex-flow:row wrap;margin:0 0 1em 0}#corrections h4,#corrections input[type=submit]{display:inline-block;padding:.5rem;margin:.5rem}#corrections input[type=submit]{font-size:.8rem;border-radius:5px}#apis .title,#search_url .title,#suggestions .title{margin:2em 0 .5em 0;color:var(--color-base-font)}#answers{grid-area:answers;background:var(--color-answer-background);padding:1rem;margin:1rem 0;margin-top:0;color:var(--color-answer-font);border-radius:10px}#answers h4{display:none}#answers span{overflow-wrap:anywhere}#infoboxes form{min-width:210px}#sidebar{grid-area:sidebar;word-wrap:break-word;color:var(--color-sidebar-font)}#sidebar .infobox{margin:10px 0 10px;border:1px solid var(--color-sidebar-border);padding:1rem;font-size:.9em;border-radius:10px}#sidebar .infobox h2{margin:0 0 .5em 0}#sidebar .infobox img{max-width:100%;max-height:12em;display:block;margin:0 auto;padding:0}#sidebar .infobox dt{font-weight:700}#sidebar .infobox .attributes dl{margin:.5em 0}#sidebar .infobox .attributes dt{display:inline;margin-top:.5em;margin-left:.25em;margin-bottom:.5em;margin-right:0;padding:0}#sidebar .infobox .attributes dd{display:inline;margin:.5em 0;padding:0}#sidebar .infobox input{font-size:1em}#sidebar .infobox br{clear:both}#sidebar .infobox .attributes,#sidebar .infobox .urls{clear:both}#search_url{margin-top:8px}#search_url div.selectable_url pre{width:200em}#links_on_top{position:absolute;left:1.8rem;text-align:left;top:2.2rem;padding:0;border:0;display:flex;align-items:center;font-size:1em;color:var(--color-search-font)}#links_on_top a{display:flex;align-items:center;margin-left:1em}#links_on_top a svg{font-size:1.2em;margin-left:.125em}#links_on_top a,#links_on_top a:active *,#links_on_top a:hover *,#links_on_top a:link *,#links_on_top a:visited *{color:var(--color-search-font)}#pagination{grid-area:pagination}#pagination br{clear:both}#apis{margin-top:8px;clear:both}#backToTop{border:1px solid var(--color-backtotop-border);margin:0;padding:0;font-size:1em;background:var(--color-backtotop-background);position:fixed;bottom:8rem;right:56.3rem;transition:opacity .5s;opacity:0;border-radius:10px}#backToTop a{display:block;margin:0;padding:.7em}#backToTop a,#backToTop a:active,#backToTop a:hover,#backToTop a:visited{color:var(--color-backtotop-font)}#results.scrolling #backToTop{opacity:1}@media screen and (max-width:calc(79.75em - 0.5px)){#links_on_top span{display:none}}@media screen and (max-width:52rem){body.results_endpoint #links_on_top .link_on_top_about,body.results_endpoint #links_on_top .link_on_top_donate{display:none}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-no #links_on_top span{display:none}.center-aligment-no .page_with_header{margin:2rem .5rem;width:auto}.center-aligment-no #infoboxes{position:inherit;max-width:inherit}.center-aligment-no #infoboxes .infobox{clear:both}.center-aligment-no #infoboxes .infobox img{float:right;max-width:10em;margin-top:.5em;margin-left:.5em;margin-bottom:.5em;margin-right:0}.center-aligment-no #sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}.center-aligment-no #sidebar input{border:0}.center-aligment-no #apis{display:none}.center-aligment-no #search_url{display:none}.center-aligment-no .result .thumbnail{max-width:98%}.center-aligment-no .result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.center-aligment-no .result .engines{float:left;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.center-aligment-no .result-images{border-bottom:none!important}.center-aligment-no .image_result{max-width:98%}.center-aligment-no .image_result img{max-width:98%}.center-aligment-no #backToTop{display:none}.center-aligment-no #pagination{margin:2rem 0 0 0!important}.center-aligment-no #main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}}#main_results div#results.only_template_images{margin:1rem .5rem 0 .5rem;display:grid;grid-template-columns:100%;grid-template-rows:min-content min-content min-content 1fr min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}#main_results div#results.only_template_images #sidebar{display:none}#main_results div#results.only_template_images #urls{margin:0;display:flex;flex-wrap:wrap}#main_results div#results.only_template_images #urls::after{flex-grow:10;content:""}#main_results div#results.only_template_images #backToTop{right:auto;left:1rem}#main_results div#results.only_template_images #pagination{margin-left:4rem}@media screen and (max-width:50em){#links_on_top span{display:none}.page_with_header{margin:2rem .5rem;width:auto}#infoboxes{position:inherit;max-width:inherit}#infoboxes .infobox{clear:both}#infoboxes .infobox img{float:right;max-width:10em;margin-top:.5em;margin-left:.5em;margin-bottom:.5em;margin-right:0}#sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}#sidebar input{border:0}#apis{display:none}#search_url{display:none}.result .thumbnail{max-width:98%}.result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.result .engines{float:left;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.result-images{border-bottom:none!important}.image_result{max-width:98%}.image_result img{max-width:98%}#backToTop{display:none}#pagination{margin:2rem 0 0 0!important}#main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}html{background-color:var(--color-base-background-mobile)}#main_results div#results{grid-template-columns:100%;margin:1rem 0 0 0}#links_on_top{top:.8rem;left:.7rem}#main_index #links_on_top{top:.5rem;left:.5rem}#results{margin:0;padding:0}#pagination{margin:2rem 1rem 0 1rem!important}article[data-vim-selected]{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{background:var(--color-result-background);margin:1rem 0}.result-images{margin:0;height:6rem;background:var(--color-base-background-mobile)}.infobox{border:none!important;background-color:var(--color-sidebar-background)}.result-paper .attributes{display:block}.result-paper .attributes div{display:block}.result-paper .attributes div span{display:inline}.result-paper .attributes div span:first-child{font-weight:700}.result-paper .attributes div span:nth-child(2){margin-right:.5rem}}@media screen and (max-width:35em){.result-videos img.thumbnail{float:none!important}.result-videos .content{overflow:inherit}}pre code{white-space:pre-wrap}#q,#sidebar .infobox dt bdi{direction:rtl}#urls{direction:initial;text-align:right}#urls .result .url_wrapper{justify-content:end}#main_results div#results.only_template_images #urls{direction:rtl}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{direction:rtl}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url{direction:ltr}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url span{direction:rtl;float:right}@supports ((background-position-x:100%) and ((appearance:none) or (-webkit-appearance:none) or (-moz-appearance:none))){select{border-width:0 0 0 2rem;background-position-x:-2rem}}#vim-hotkeys-help table{direction:ltr;text-align:left}#main_preferences h1,#main_stats h1{background-position-x:100%}.bar-chart-serie1,.bar-chart-serie2{float:right}.engine-stats .engine-name,.engine-stats .engine-reliability,.engine-stats .engine-score,.engine-stats .response-time,.engine-stats .result-count{text-align:right}/*# sourceMappingURL=searxng-rtl.min.css.map */ \ No newline at end of file +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--color-base-font:#444;--color-base-font-rgb:68,68,68;--color-base-background:#fff;--color-base-background-mobile:#f2f5f8;--color-url-font:#334999;--color-url-visited-font:#9822c3;--color-header-background:#fdfbff;--color-header-border:#ddd;--color-footer-background:#fdfbff;--color-footer-border:#ddd;--color-sidebar-border:#ddd;--color-sidebar-font:#000;--color-sidebar-background:#fff;--color-backtotop-font:#444;--color-backtotop-border:#ddd;--color-backtotop-background:#fff;--color-btn-background:#3050ff;--color-btn-font:#fff;--color-show-btn-background:#bbb;--color-show-btn-font:#000;--color-search-border:#bbb;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#fff;--color-search-font:#222;--color-search-background-hover:#3050ff;--color-error:#db3434;--color-error-background:#fae1e1;--color-warning:#dbba34;--color-warning-background:#faf5e1;--color-success:#42db34;--color-success-background:#e3fae1;--color-categories-item-selected-font:#3050ff;--color-categories-item-border-selected:#3050ff;--color-autocomplete-font:#000;--color-autocomplete-border:#bbb;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#fff;--color-autocomplete-background-hover:#e3e3e3;--color-answer-font:#444;--color-answer-background:#fff;--color-result-background:#fff;--color-result-border:#ddd;--color-result-url-font:#000;--color-result-vim-selected:#f7f7f7;--color-result-vim-arrow:#000bbb;--color-result-description-highlight-font:#000;--color-result-link-font:#000bbb;--color-result-link-font-highlight:#000bbb;--color-result-link-visited-font:#9822c3;--color-result-publishdate-font:#777;--color-result-engines-font:#545454;--color-result-search-url-border:#ddd;--color-result-search-url-font:#000;--color-result-image-span-font:#444;--color-result-image-span-font-selected:#fff;--color-result-image-background:#fff;--color-settings-tr-hover:#ebebeb;--color-settings-engine-description-font:#545454;--color-settings-engine-group-background:#0001;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#242424;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#545454;--color-toolkit-kbd-font:#fff;--color-toolkit-kbd-background:#000;--color-toolkit-dialog-border:#ddd;--color-toolkit-dialog-background:#fff;--color-toolkit-tabs-label-border:#fff;--color-toolkit-tabs-section-border:#ddd;--color-toolkit-select-background:#e1e1e1;--color-toolkit-select-border:#ddd;--color-toolkit-select-background-hover:#bbb;--color-toolkit-input-text-font:#222;--color-toolkit-checkbox-onoff-off-background:#ddd;--color-toolkit-checkbox-onoff-on-background:#ddd;--color-toolkit-checkbox-onoff-on-mark-background:#3050ff;--color-toolkit-checkbox-onoff-on-mark-color:#fff;--color-toolkit-checkbox-onoff-off-mark-background:#aaa;--color-toolkit-checkbox-onoff-off-mark-color:#fff;--color-toolkit-checkbox-label-background:#ddd;--color-toolkit-checkbox-label-border:#ddd;--color-toolkit-checkbox-input-border:#3050ff;--color-toolkit-engine-tooltip-border:#ddd;--color-toolkit-engine-tooltip-background:#fff;--color-toolkit-loader-border:rgba(0, 0, 0, 0.2);--color-toolkit-loader-borderleft:rgba(255, 255, 255, 0);--color-doc-code:#300;--color-doc-code-background:#fdd}@media (prefers-color-scheme:dark){:root.theme-auto{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}}:root.theme-dark{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}.code-highlight pre{overflow:auto;background-color:inherit;color:inherit;border:inherit}.code-highlight .linenos{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;margin-right:8px;text-align:right}.code-highlight .linenos::selection{background:0 0}.code-highlight .linenos::-moz-selection{background:0 0}.code-highlight pre{line-height:125%}.code-highlight td.linenos .normal{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight span.linenos{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight td.linenos .special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight span.linenos.special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight .hll{background-color:#ffc}.code-highlight{background:#f8f8f8}.code-highlight .c{color:#3D7B7B;font-style:italic}.code-highlight .err{border:1px solid red}.code-highlight .k{color:green;font-weight:700}.code-highlight .o{color:#666}.code-highlight .ch{color:#3D7B7B;font-style:italic}.code-highlight .cm{color:#3D7B7B;font-style:italic}.code-highlight .cp{color:#9C6500}.code-highlight .cpf{color:#3D7B7B;font-style:italic}.code-highlight .c1{color:#3D7B7B;font-style:italic}.code-highlight .cs{color:#3D7B7B;font-style:italic}.code-highlight .gd{color:#A00000}.code-highlight .ge{font-style:italic}.code-highlight .gr{color:#E40000}.code-highlight .gh{color:navy;font-weight:700}.code-highlight .gi{color:#008400}.code-highlight .go{color:#717171}.code-highlight .gp{color:navy;font-weight:700}.code-highlight .gs{font-weight:700}.code-highlight .gu{color:purple;font-weight:700}.code-highlight .gt{color:#04D}.code-highlight .kc{color:green;font-weight:700}.code-highlight .kd{color:green;font-weight:700}.code-highlight .kn{color:green;font-weight:700}.code-highlight .kp{color:green}.code-highlight .kr{color:green;font-weight:700}.code-highlight .kt{color:#B00040}.code-highlight .m{color:#666}.code-highlight .s{color:#BA2121}.code-highlight .na{color:#687822}.code-highlight .nb{color:green}.code-highlight .nc{color:#00F;font-weight:700}.code-highlight .no{color:#800}.code-highlight .nd{color:#A2F}.code-highlight .ni{color:#717171;font-weight:700}.code-highlight .ne{color:#CB3F38;font-weight:700}.code-highlight .nf{color:#00F}.code-highlight .nl{color:#767600}.code-highlight .nn{color:#00F;font-weight:700}.code-highlight .nt{color:green;font-weight:700}.code-highlight .nv{color:#19177C}.code-highlight .ow{color:#A2F;font-weight:700}.code-highlight .w{color:#bbb}.code-highlight .mb{color:#666}.code-highlight .mf{color:#666}.code-highlight .mh{color:#666}.code-highlight .mi{color:#666}.code-highlight .mo{color:#666}.code-highlight .sa{color:#BA2121}.code-highlight .sb{color:#BA2121}.code-highlight .sc{color:#BA2121}.code-highlight .dl{color:#BA2121}.code-highlight .sd{color:#BA2121;font-style:italic}.code-highlight .s2{color:#BA2121}.code-highlight .se{color:#AA5D1F;font-weight:700}.code-highlight .sh{color:#BA2121}.code-highlight .si{color:#A45A77;font-weight:700}.code-highlight .sx{color:green}.code-highlight .sr{color:#A45A77}.code-highlight .s1{color:#BA2121}.code-highlight .ss{color:#19177C}.code-highlight .bp{color:green}.code-highlight .fm{color:#00F}.code-highlight .vc{color:#19177C}.code-highlight .vg{color:#19177C}.code-highlight .vi{color:#19177C}.code-highlight .vm{color:#19177C}.code-highlight .il{color:#666}html.no-js .hide_if_nojs{display:none}html.js .show_if_nojs{display:none}.center{text-align:center}.right{float:right}.left{float:left}.invisible{display:none!important}.list-unstyled{list-style-type:none}.list-unstyled li{margin-top:4px;margin-bottom:4px}.danger{background-color:var(--color-error-background)}.warning{background:var(--color-warning-background)}.success{background:var(--color-success-background)}.badge{display:inline-block;color:var(--color-toolkit-badge-font);background-color:var(--color-toolkit-badge-background);text-align:center;white-space:nowrap;vertical-align:baseline;min-width:10px;padding:1px 5px;border-radius:5px}kbd{padding:2px 4px;margin:1px;font-size:90%;color:var(--color-toolkit-kbd-font);background:var(--color-toolkit-kbd-background)}table{width:100%}table.striped tr{border-bottom:1px solid var(--color-settings-tr-hover)}th{padding:.4em}td{padding:0 4px}tr:hover{background:var(--color-settings-tr-hover)!important}div.selectable_url{display:block;border:1px solid var(--color-result-search-url-border);padding:4px;color:var(--color-result-search-url-font);margin:.1em;overflow:hidden;height:1.2em;line-height:1.2em;border-radius:5px}div.selectable_url pre{display:block;font-size:.8em;word-break:break-all;margin:.1em;user-select:all}.dialog-error{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:right;border-radius:10px;color:var(--color-error);background:var(--color-error-background);border-color:var(--color-error)}.dialog-error .close{float:left;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-error ol,.dialog-error p,.dialog-error ul{margin:1px 0 0 0}.dialog-error table{width:auto}.dialog-error tr{vertical-align:text-top}.dialog-error tr:hover{background:0 0!important}.dialog-error td{padding:0 1em 0 0;padding-top:0;padding-left:1rem;padding-bottom:0;padding-right:0}.dialog-error h4{margin-top:.3em;margin-bottom:.3em}.dialog-warning{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:right;border-radius:10px;color:var(--color-warning);background:var(--color-warning-background);border-color:var(--color-warning)}.dialog-warning .close{float:left;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-warning ol,.dialog-warning p,.dialog-warning ul{margin:1px 0 0 0}.dialog-warning table{width:auto}.dialog-warning tr{vertical-align:text-top}.dialog-warning tr:hover{background:0 0!important}.dialog-warning td{padding:0 1em 0 0;padding-top:0;padding-left:1rem;padding-bottom:0;padding-right:0}.dialog-warning h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:right;border-radius:10px;display:block;background:var(--color-toolkit-dialog-background);position:fixed;top:50%;left:50%;margin:0 auto;transform:translate(-50%,-50%);z-index:10000000}.dialog-modal .close{float:left;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-modal ol,.dialog-modal p,.dialog-modal ul{margin:1px 0 0 0}.dialog-modal table{width:auto}.dialog-modal tr{vertical-align:text-top}.dialog-modal tr:hover{background:0 0!important}.dialog-modal td{padding:0 1em 0 0;padding-top:0;padding-left:1rem;padding-bottom:0;padding-right:0}.dialog-modal h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal h3{margin-top:0}.btn-collapse{cursor:pointer}.scrollx{overflow-x:auto;overflow-y:hidden;display:block;padding:0;margin:0;border:none}.tabs .tabs>label{font-size:90%}ul.tabs{border-bottom:1px solid var(--color-toolkit-tabs-section-border);list-style:none;padding-left:0}ul.tabs li{display:flex}.tabs{display:flex;flex-wrap:wrap;width:100%;min-width:100%}.tabs>*{order:2}.tabs>input[type=radio]{display:none}.tabs>label,.tabs>li>a{order:1;padding:.7em;margin:0 .7em;letter-spacing:.5px;text-transform:uppercase;border:solid var(--color-toolkit-tabs-label-border);border-width:0 0 2px 0;color:unset;-webkit-touch-callout:none;user-select:none;cursor:pointer}.tabs>label.active,.tabs>li>a.active{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}.tabs>label:hover,.tabs>li>a:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}.tabs>section{min-width:100%;padding:.7rem 0;box-sizing:border-box;border-top:1px solid var(--color-toolkit-tabs-section-border);display:none}.tabs>label:last-of-type{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font);letter-spacing:-.1px}.tabs>section:last-of-type{display:block}html body .tabs>input:checked~section{display:none}html body .tabs>input:checked~label{position:inherited;background:inherit;border-bottom:2px solid transparent;font-weight:400;color:inherit}html body .tabs>input:checked~label:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}html body .tabs>input:checked+label{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}html body .tabs>input:checked+label+section{display:block}select{height:2.4rem;margin-top:0;margin-left:1rem;margin-bottom:0;margin-right:0;padding:.2rem!important;color:var(--color-search-font);font-size:.9rem;z-index:2}select:focus,select:hover{cursor:pointer}@supports ((background-position-x:100%) and ((appearance:none) or (-webkit-appearance:none) or (-moz-appearance:none))){select{appearance:none;-webkit-appearance:none;-moz-appearance:none;border-width:0 2rem 0 0;border-color:transparent;background:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat;background-position-x:calc(100% + 2rem);background-size:2rem;background-origin:content-box;background-color:var(--color-toolkit-select-background);outline:medium none;text-overflow:ellipsis;border-radius:5px}select:focus,select:hover{background-color:var(--color-toolkit-select-background-hover)}select option{background-color:var(--color-base-background)}@media (prefers-color-scheme:dark){html.theme-auto select,html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}input.checkbox-onoff[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;display:inline-block;width:2.5em;height:.7em;box-shadow:none!important;margin:0 16px;border-radius:10px;position:relative}input.checkbox-onoff[type=checkbox]:focus,input.checkbox-onoff[type=checkbox]:hover{outline:0}input.checkbox-onoff[type=checkbox]:focus::after{content:"";position:absolute;width:3.5em;height:1.65em;border:1px solid var(--color-btn-background);border-radius:12px;box-shadow:var(--color-btn-background) 0 0 3px;z-index:10000;top:-.55em;left:-.6em}input.checkbox-onoff[type=checkbox]::before{position:absolute;top:-.5em;display:flex;justify-content:center;align-items:center;font-size:.75em;width:1.875em;height:1.875em;border-radius:50%}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked,input.checkbox-onoff[type=checkbox]{background:var(--color-toolkit-checkbox-onoff-off-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked::before,input.checkbox-onoff[type=checkbox]::before{left:-.5em;content:"\2715";color:var(--color-toolkit-checkbox-onoff-off-mark-color);background:var(--color-toolkit-checkbox-onoff-off-mark-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox],input.checkbox-onoff[type=checkbox]:checked{background:var(--color-toolkit-checkbox-onoff-on-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]::before,input.checkbox-onoff[type=checkbox]:checked::before{left:calc(100% - 1.5em);content:"\2713";color:var(--color-toolkit-checkbox-onoff-on-mark-color);background:var(--color-toolkit-checkbox-onoff-on-mark-background)}@supports (transform:rotate(-45deg)){input[type=checkbox]:not(.checkbox-onoff){-webkit-appearance:none;-moz-appearance:none;appearance:none;width:20px;height:20px;cursor:pointer;position:relative;top:0;left:0;border:2px solid var(--color-toolkit-checkbox-input-border);border-radius:.3em}input[type=checkbox]:not(.checkbox-onoff)::after{content:'';width:9px;height:5px;position:absolute;top:3px;left:2px;border:3px solid var(--color-toolkit-checkbox-label-border);border-top:none;border-right:none;background:0 0;opacity:0;transform:rotate(-45deg)}input[type=checkbox]:not(.checkbox-onoff):checked::after{border-color:var(--color-toolkit-checkbox-input-border);opacity:1}input[type=checkbox][disabled]:not(.checkbox-onoff){border:inherit;background-color:transparent!important;cursor:inherit}input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after{opacity:.5}}@media screen and (max-width:50em){.tabs>label{width:100%}}.loader,.loader::after{border-radius:50%;width:2em;height:2em}.loader{margin:1em auto;font-size:10px;position:relative;text-indent:-9999em;border-top:.5em solid var(--color-toolkit-loader-border);border-right:.5em solid var(--color-toolkit-loader-border);border-bottom:.5em solid var(--color-toolkit-loader-border);border-left:.5em solid var(--color-toolkit-loader-borderleft);-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:load8 1.2s infinite linear;animation:load8 1.2s infinite linear}@-webkit-keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.engine-tooltip{display:none;position:absolute;padding:.5rem 1rem;margin:0 0 0 2rem;border:1px solid var(--color-toolkit-engine-tooltip-border);background:var(--color-toolkit-engine-tooltip-background);font-size:14px;font-weight:400;z-index:1000000;text-align:left;border-radius:10px}.engine-tooltip:hover,td:hover .engine-tooltip,th:hover .engine-tooltip{display:inline-block}.stacked-bar-chart{margin:0;padding:0 .125rem 0 4rem;width:100%;width:-moz-available;width:-webkit-fill-available;width:fill;flex-direction:row;flex-wrap:nowrap;align-items:center;display:inline-flex}.stacked-bar-chart-value{width:3rem;display:inline-block;position:absolute;padding:0 .5rem;text-align:right}.stacked-bar-chart-base{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset}.stacked-bar-chart-median{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:var(--color-base-font);border:1px solid rgba(var(--color-base-font-rgb),.9);padding:.3rem 0}.stacked-bar-chart-rate80{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border:1px solid rgba(var(--color-base-font-rgb),.3);padding:.3rem 0}.stacked-bar-chart-rate95{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-bottom:1px dotted rgba(var(--color-base-font-rgb),.5);padding:0}.stacked-bar-chart-rate100{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-left:1px solid rgba(var(--color-base-font-rgb),.9);padding:.4rem 0;width:1px}/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */.autocomplete{position:absolute;width:44rem;max-height:0;overflow-y:hidden;text-align:right;border-radius:10px}.autocomplete:active,.autocomplete:focus,.autocomplete:hover{background-color:var(--color-autocomplete-background)}.autocomplete:empty{display:none}.autocomplete>ul{list-style-type:none;margin:0;padding:0}.autocomplete>ul>li{cursor:pointer;padding:.5rem 1rem}.autocomplete>ul>li.active,.autocomplete>ul>li:active,.autocomplete>ul>li:focus,.autocomplete>ul>li:hover{background-color:var(--color-autocomplete-background-hover)}.autocomplete>ul>li.active a:active,.autocomplete>ul>li.active a:focus,.autocomplete>ul>li.active a:hover,.autocomplete>ul>li:active a:active,.autocomplete>ul>li:active a:focus,.autocomplete>ul>li:active a:hover,.autocomplete>ul>li:focus a:active,.autocomplete>ul>li:focus a:focus,.autocomplete>ul>li:focus a:hover,.autocomplete>ul>li:hover a:active,.autocomplete>ul>li:hover a:focus,.autocomplete>ul>li:hover a:hover{text-decoration:none}.autocomplete>ul>li.locked{cursor:inherit}.autocomplete.open{display:block;background-color:var(--color-autocomplete-background);color:var(--color-autocomplete-font);max-height:32rem;overflow-y:auto;z-index:100;margin-top:3.5rem;border-radius:.8rem;box-shadow:0 2px 8px rgba(34,38,46,.25)}.autocomplete.open:empty{display:none}@media screen and (max-width:50em){.autocomplete{width:100%}.autocomplete>ul>li{padding:1rem}}#main_results #results.image-detail-open.only_template_images{width:min(98%,59.25rem)!important}#main_results #results.only_template_images.image-detail-open #backToTop{right:56.75rem!important;left:inherit}article.result-images .detail{display:none}#results.image-detail-open article.result-images[data-vim-selected] .detail{display:flex;flex-direction:column;position:fixed;right:60rem;left:0;top:7.6rem;transition:top 64ms ease-in 0s;bottom:0;background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-background);z-index:10000;padding:4rem 3rem 3rem 3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:block;flex:1;text-align:left;width:100%;border:none;text-decoration:none}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{padding:0;margin:0;border:none;object-fit:contain;width:inherit;height:inherit;max-width:100%;min-height:inherit;max-height:calc(100vh - 25rem - 7rem);background:inherit}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels{color:var(--color-result-detail-font);max-height:16rem;min-height:16rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels hr{border-top:1px solid var(--color-result-detail-hr);border-bottom:none}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4{height:2rem;overflow:hidden;text-overflow:ellipsis;font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{color:var(--color-result-detail-label-font);font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{display:inline-block;width:12rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{text-align:right}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content{height:2rem;overflow:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url:hover{position:relative;overflow:inherit!important;background:var(--color-result-detail-background);text-overflow:inherit!important}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:active,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:visited{color:var(--color-result-detail-link)}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover{text-decoration:underline}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close{top:1rem;right:1rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{top:1rem;left:6rem;padding-top:.4rem;padding-left:.5rem;padding-bottom:.4rem;padding-right:.3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{top:1rem;left:2rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{border-radius:50%;display:block;width:1.5rem;height:1.5rem;position:absolute;filter:opacity(40%);z-index:2000002}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span{display:block;width:1.5rem;height:1.5rem;text-align:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span::before,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span::before{vertical-align:sub}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:visited{color:var(--color-result-detail-font);background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-font)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover{filter:opacity(80%)}#results.image-detail-open article.result-images[data-vim-selected] .detail .loader{position:absolute;top:1rem;left:50%;border-top:.5em solid var(--color-result-detail-loader-border);border-right:.5em solid var(--color-result-detail-loader-border);border-bottom:.5em solid var(--color-result-detail-loader-border);border-left:.5em solid var(--color-result-detail-loader-borderleft)}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail{top:0}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail a.result-images-source img{max-height:calc(100vh - 25rem)}@media screen and (max-width:79.75em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;right:0}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:flex;flex-direction:column;justify-content:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 24rem)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{left:1rem}}@media screen and (max-width:50em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;right:0;padding:1rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 20rem);margin:0}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{width:inherit;margin-left:1rem}}.dialog-modal{animation-name:dialogmodal;animation-duration:.13s}@keyframes dialogmodal{0%{opacity:0}50%{opacity:.5;transform:translate(-50%,-50%) scale(1.05)}}input.checkbox-onoff[type=checkbox]::before{transition:left .25s}iframe[src^="https://w.soundcloud.com"]{height:120px}iframe[src^="https://www.deezer.com"]{height:94px}iframe[src^="https://www.mixcloud.com"]{height:250px}iframe[src^="https://bandcamp.com/EmbeddedPlayer"]{height:350px}iframe[src^="https://bandcamp.com/EmbeddedPlayer/track"]{height:120px}iframe[src^="https://genius.com/songs"]{height:65px}.info-page code{font-family:monospace;color:var(--color-doc-code);background-color:var(--color-doc-code-background);padding:2px 5px;border-radius:5px}.stats_endpoint .github-issue-button{display:block;padding:8px 16px;font-family:sans-serif;font-size:16px;color:#fff;background-color:#238636;border:#2ea043;border-radius:10px!important;box-shadow:transparent 0 0 0 0}.stats_endpoint .github-issue-button:hover{background-color:#2ea043}.stats_endpoint .issue-hide{display:none}.stats_endpoint input[type=checked]{position:absolute}.stats_endpoint label{margin:1rem 1rem 1rem 0}.stats_endpoint .step_content{margin:1rem 1rem 1rem 2rem}.stats_endpoint .step1,.stats_endpoint .step2{visibility:hidden}.stats_endpoint .step1_delay{transition:visibility 0s linear 4s}.stats_endpoint #step1:checked~.step1,.stats_endpoint #step2:checked~.step2{visibility:visible}.engine-stats{border-spacing:0;border-collapse:collapse}.engine-stats tr td,.engine-stats tr th{border-bottom:1px solid var(--color-result-border);padding:.25rem}.engine-stats table.engine-tooltip{border-spacing:0;border-collapse:collapse}.engine-stats table.engine-tooltip td,.engine-stats table.engine-tooltip th{border:none}.engine-stats .engine-name{width:20rem}.engine-stats .engine-score{width:7rem;text-align:right}.engine-stats .engine-reliability{text-align:right}failed-test,table.engine-error td.engine-error-type,table.engine-error th.engine-error-type{width:10rem}.engine-errors{margin-top:3rem}.engine-errors table.engine-error{max-width:1280px;margin:1rem 0 3rem 0;border:1px solid var(--color-result-border);text-align:right}.engine-errors table.engine-error tr td,.engine-errors table.engine-error tr th{padding:.5rem}.engine-errors table.engine-error span.log_parameters{border-right:1px solid solid var(--color-result-border);padding:0 1rem 0 0;margin:0 0 0 .5rem}.bar-chart-value{width:3em;display:inline-block;text-align:right;padding-right:.5rem}.bar-chart-graph{width:calc(100% - 5rem);display:inline-block}.bar-chart-bar{border:3px solid #5bc0de;margin:1px 0}.bar-chart-serie1{border:3px solid #5bc0de;margin:1px 0;float:left}.bar-chart-serie2{border:3px solid #deb15b;margin:1px 0;float:left}.bar0{width:0;border:0}.bar1{width:1%}.bar2{width:2%}.bar3{width:3%}.bar4{width:4%}.bar5{width:5%}.bar6{width:6%}.bar7{width:7%}.bar8{width:8%}.bar9{width:9%}.bar10{width:10%}.bar11{width:11%}.bar12{width:12%}.bar13{width:13%}.bar14{width:14%}.bar15{width:15%}.bar16{width:16%}.bar17{width:17%}.bar18{width:18%}.bar19{width:19%}.bar20{width:20%}.bar21{width:21%}.bar22{width:22%}.bar23{width:23%}.bar24{width:24%}.bar25{width:25%}.bar26{width:26%}.bar27{width:27%}.bar28{width:28%}.bar29{width:29%}.bar30{width:30%}.bar31{width:31%}.bar32{width:32%}.bar33{width:33%}.bar34{width:34%}.bar35{width:35%}.bar36{width:36%}.bar37{width:37%}.bar38{width:38%}.bar39{width:39%}.bar40{width:40%}.bar41{width:41%}.bar42{width:42%}.bar43{width:43%}.bar44{width:44%}.bar45{width:45%}.bar46{width:46%}.bar47{width:47%}.bar48{width:48%}.bar49{width:49%}.bar50{width:50%}.bar51{width:51%}.bar52{width:52%}.bar53{width:53%}.bar54{width:54%}.bar55{width:55%}.bar56{width:56%}.bar57{width:57%}.bar58{width:58%}.bar59{width:59%}.bar60{width:60%}.bar61{width:61%}.bar62{width:62%}.bar63{width:63%}.bar64{width:64%}.bar65{width:65%}.bar66{width:66%}.bar67{width:67%}.bar68{width:68%}.bar69{width:69%}.bar70{width:70%}.bar71{width:71%}.bar72{width:72%}.bar73{width:73%}.bar74{width:74%}.bar75{width:75%}.bar76{width:76%}.bar77{width:77%}.bar78{width:78%}.bar79{width:79%}.bar80{width:80%}.bar81{width:81%}.bar82{width:82%}.bar83{width:83%}.bar84{width:84%}.bar85{width:85%}.bar86{width:86%}.bar87{width:87%}.bar88{width:88%}.bar89{width:89%}.bar90{width:90%}.bar91{width:91%}.bar92{width:92%}.bar93{width:93%}.bar94{width:94%}.bar95{width:95%}.bar96{width:96%}.bar97{width:97%}.bar98{width:98%}.bar99{width:99%}.bar100{width:100%}.osm-map-box{height:300px;width:100%;margin:10px 0}#main_index{margin-top:26vh}.index{text-align:center}.index .title{background:url(../img/searxng.png) no-repeat;min-height:4rem;margin:4rem auto;background-position:center;background-size:contain}.index h1{font-size:4em;visibility:hidden}.index #search,.index #search_header{margin:0 auto;background:inherit;border:inherit;padding:0;display:block}.index .search_filters{display:block;margin:1em 0}.index .category label{padding:6px 10px;border-bottom:initial!important}@media screen and (max-width:79.75em){div.title h1{font-size:1em}#main_index{margin-top:6em}}#tab-content-query table td,#tab-content-query table th{text-align:left!important;height:3rem}#main_preferences form{width:100%}#main_preferences fieldset{margin:8px;border:none}#main_preferences legend{margin:0;padding:5px 0 0 0;display:block;float:right;width:300px}#main_preferences .value{margin:0;padding:0;float:right;width:15em}#main_preferences .value input[type=text],#main_preferences .value select{font-size:inherit!important;margin-top:0;margin-left:1rem;margin-bottom:0;margin-right:0}#main_preferences .value select{width:14rem}#main_preferences .value input[type=text]{width:13.25rem;color:var(--color-toolkit-input-text-font);border:none;background:none repeat scroll 0 0 var(--color-toolkit-select-background);padding:.2rem .4rem;height:2rem;border-radius:5px}#main_preferences .value input[type=text]:focus,#main_preferences .value input[type=text]:hover{background-color:var(--color-toolkit-select-background-hover)}#main_preferences .value input:focus,#main_preferences .value select:focus{outline:0;box-shadow:0 0 1px 1px var(--color-btn-background)}#main_preferences .description{margin:0;padding:5px 0 0 0;float:left;width:50%;color:var(--color-settings-engine-description-font);font-size:90%}#main_preferences table{border-collapse:collapse}#main_preferences table td{text-align:center}#main_preferences .category{margin-left:.5rem}#main_preferences .category label{border:2px solid transparent;padding:.2rem .4rem;border-radius:5px}#main_preferences .category input[type=checkbox]:checked+label{border:2px solid var(--color-categories-item-border-selected)}#main_preferences table.table_engines td{height:3.75rem}#main_preferences table.table_engines th.name label{cursor:pointer}#main_preferences table.table_engines th.name .engine-tooltip{margin-top:1.8rem;right:calc((100% - 85em)/ 2 + 10em);max-width:40rem}#main_preferences table.table_engines th.name .engine-tooltip .engine-description{margin-top:.5rem}#main_preferences table.table_engines .engine-group{text-align:right;font-weight:400;background:var(--color-settings-engine-group-background)}#main_preferences table.table_engines .name,#main_preferences table.table_engines .shortcut{text-align:right}#main_preferences table.cookies{width:100%;direction:ltr}#main_preferences table.cookies td,#main_preferences table.cookies th{text-align:left;font-family:monospace;font-size:1rem;padding:.5em;vertical-align:top}#main_preferences table.cookies td:first-child{word-break:keep-all;width:14rem;padding-right:1rem}#main_preferences table.cookies td:last-child{word-break:break-all}#main_preferences table.cookies>tbody>tr:nth-child(even)>td,#main_preferences table.cookies>tbody>tr:nth-child(even)>th{background-color:var(--color-settings-tr-hover)}#main_preferences .preferences_back{background:none repeat scroll 0 0 var(--color-btn-background);color:var(--color-btn-font);border:0 none;border-radius:10px;cursor:pointer;display:inline-block;margin:2px 4px;padding:.7em}#main_preferences .preferences_back a{color:var(--color-settings-return-font)}#main_preferences .preferences_back a::first-letter{text-transform:uppercase}#main_preferences div.selectable_url pre{width:100%}@media screen and (max-width:79.75em){.preferences_back{clear:both}.engine-tooltip{right:10em!important}}#search{padding:0;margin:0}#search_header{padding-top:1.5em;padding-left:2em;padding-right:7rem;margin:0;background:var(--color-header-background);border-bottom:1px solid var(--color-header-border);display:grid;column-gap:1.2rem;row-gap:1rem;grid-template-columns:3rem 1fr;grid-template-areas:"logo search" "spacer categories"}.category{display:inline-block;position:relative;margin-left:1rem;padding:0}.category input{display:none}.category label{cursor:pointer;padding:.2rem 0;display:inline-flex;text-transform:capitalize;font-size:.9em;border-bottom:2px solid transparent;-webkit-touch-callout:none;user-select:none}.category label svg{padding-right:.2rem}.category label div.category_name{margin:auto 0}.category input[type=checkbox]:checked+label{color:var(--color-categories-item-selected-font);border-bottom:2px solid var(--color-categories-item-border-selected)}#search_logo{grid-area:logo;display:flex;align-items:center;justify-content:center}#search_logo svg{flex:1;width:30px;height:30px;margin:.5rem 0 auto 0}.search_categories{grid-area:categories}.search_categories .help{display:none}.search_categories:hover .help{display:block;position:absolute;background:var(--color-base-background);padding:1rem .6rem .6rem 0;z-index:1000;width:100%;left:-.1rem}#search_view{grid-area:search}.search_box{border-radius:.8rem;width:44rem;display:inline-flex;flex-direction:row;white-space:nowrap;box-shadow:var(--color-search-shadow)}#clear_search{display:block;border-collapse:separate;box-sizing:border-box;width:1.8rem;margin:0;padding:.8rem .2rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:10000}#clear_search:hover{color:var(--color-search-background-hover)}#clear_search.empty *{display:none}html.no-js #clear_search.hide_if_nojs{display:none}#q,#send_search{display:block;margin:0;padding:.8rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:2}#q{width:100%;padding-right:1rem;padding-left:0!important;border-radius:0 .8rem .8rem 0}#q::-ms-clear,#q::-webkit-search-cancel-button{display:none}#send_search{border-radius:.8rem 0 0 .8rem}#send_search:hover{cursor:pointer;background-color:var(--color-search-background-hover);color:var(--color-search-background)}.no-js #clear_search,.no-js #send_search{width:auto!important;border-right:1px solid var(--color-search-border)}.search_filters{margin-top:.6rem;margin-left:0;margin-bottom:0;margin-right:10.6rem;display:flex;overflow-x:auto;overscroll-behavior-inline:contain}.search_filters select{background-color:inherit}.search_filters select:focus,.search_filters select:hover{color:var(--color-base-font)}@media screen and (max-width:79.75em){#search_header{padding:1.5em .5rem 0 .5rem;column-gap:.5rem}.search_filters{margin-top:.6rem;margin-left:0;margin-bottom:0;margin-right:3.5rem}#categories{font-size:90%;clear:both}#categories .checkbox_container{margin:auto;margin-top:2px}}@media screen and (max-width:79.75em) and (hover:none){#main_index #categories_container,#main_results #categories_container{width:max-content}#main_index #categories_container .category,#main_results #categories_container .category{display:inline-block;width:auto}#main_index #categories,#main_results #categories{width:100%;text-align:right;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch}}@media screen and (max-width:50em){#search_header{width:100%;margin:0;padding:.1rem 0 0 0;column-gap:0;row-gap:0;grid-template-areas:"logo search" "categories categories"}.search_logo{padding:0}.search_box{width:98%;display:flex;margin:0 auto}#q{width:100%;flex:1}.search_filters{margin:0}.category{display:inline-block;width:auto;margin:0}.category label{padding:1rem!important;margin:0!important}.category label svg{display:none}#search_view:focus-within{display:block;background-color:var(--color-search-background);position:absolute;top:0;height:100%;width:100%;z-index:10000}#search_view:focus-within .search_box{border-bottom:1px solid var(--color-search-border);width:100%;border-radius:0;box-shadow:none}#search_view:focus-within .search_box #send_search{margin-left:0!important}#search_view:focus-within .search_box *{border:none;border-radius:0;box-shadow:none}#main_results #q:placeholder-shown~#send_search{margin-left:2.6rem;transition:margin .1s}}@media screen and (max-width:20rem){#search_header{grid-template-areas:"search search" "categories categories"}#search_logo{display:none}}#categories{-webkit-touch-callout:none;user-select:none}#categories::-webkit-scrollbar{width:0;height:0}#categories_container{position:relative}@media screen and (min-width:50em){.center-aligment-yes #main_results{--center-page-width:48rem}}@media screen and (min-width:62rem){.center-aligment-yes #main_results{--center-page-width:60rem}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{--center-page-width:73rem}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-yes #main_results #results{grid-template-columns:60% calc(40% - 5rem);margin-left:0;margin-right:0}.center-aligment-yes #main_results #urls{margin-right:3rem}.center-aligment-yes #main_results #sidebar{margin-left:1rem}.center-aligment-yes #main_results #backToTop{right:calc(60% + 1rem)}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search{width:100%;display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search_header{grid-template-columns:calc(50% - 4.5rem - var(--center-page-width)/ 2) 3rem var(--center-page-width);grid-template-areas:"na logo search" "na spacer categories";column-gap:1.2rem;width:100%;padding-left:0;padding-right:0}.center-aligment-yes #main_results .search_filters{margin-right:.5rem;width:var(--center-page-width)}.center-aligment-yes #main_results #results{margin-left:2rem;margin-right:10rem}.center-aligment-yes #main_results #results.image-detail-open,.center-aligment-yes #main_results #results.only_template_images{align-self:flex-start}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open){margin-right:1.5rem;grid-template-columns:calc(var(--center-page-width) - 5rem - 25rem) 25rem}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open) #backToTop{right:calc(50% - 25rem - 5rem + 1rem + var(--center-page-width)/ 2)}.center-aligment-yes #main_results #results .result .content{max-width:inherit}.center-aligment-yes #main_results #urls{margin-right:0}.center-aligment-yes #main_results #sidebar{margin-left:0}}.ion-icon{display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(-1,1)}.ion-icon-small{width:1rem;height:1rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(-1,1)}.ion-icon-big{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(-1,1)}html{font-family:sans-serif;font-size:.9em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;color:var(--color-base-font);background-color:var(--color-base-background);padding:0;margin:0}body,main{padding:0;margin:0}body{display:flex;flex-direction:column;height:100vh;margin:0}main{width:100%;margin-bottom:2rem;flex:1}.page_with_header{margin:2em auto;width:85em}footer{clear:both;min-height:4rem;padding:1rem 0;width:100%;text-align:center;background-color:var(--color-footer-background);border-top:1px solid var(--color-footer-border);overflow:hidden}footer p{font-size:.9em}.page_with_header .logo{height:40px}#results button[type=submit],input[type=submit]{padding:.7rem;display:inline-block;background:var(--color-btn-background);color:var(--color-btn-font);border-radius:10px;border:0;cursor:pointer}a{text-decoration:none;color:var(--color-url-font)}a:visited{color:var(--color-url-visited-font)}a:visited .highlight{color:var(--color-url-visited-font)}article[data-vim-selected]{background:var(--color-result-vim-selected);border-right:.2rem solid var(--color-result-vim-arrow);border-radius:10px 0 0 10px}article.result-images[data-vim-selected]{background:var(--color-result-vim-arrow);border:none;border-radius:10px}article.result-images[data-vim-selected] .image_thumbnail{filter:opacity(60%)}article.result-images[data-vim-selected] span.source,article.result-images[data-vim-selected] span.title{color:var(--color-result-image-span-font-selected)}article[data-vim-selected].category-files,article[data-vim-selected].category-map,article[data-vim-selected].category-music,article[data-vim-selected].category-news,article[data-vim-selected].category-social,article[data-vim-selected].category-videos{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{margin:.125rem 0;padding:1rem;border-right:.2rem solid transparent}.result h3{font-size:1.2rem;word-wrap:break-word;margin:.4rem 0 .4rem 0;padding:0}.result h3 a{color:var(--color-result-link-font);font-weight:400;font-size:1.1em}.result h3 a:visited{color:var(--color-result-link-visited-font)}.result h3 a:focus,.result h3 a:hover{text-decoration:underline;border:none;outline:0}.result .cache_link,.result .proxyfied_link{font-size:.9em!important}.result .content,.result .stat{font-size:.9em;margin:0;padding:0;max-width:54em;word-wrap:break-word;line-height:1.24}.result .content .highlight,.result .stat .highlight{color:var(--color-result-description-highlight-font);background:inherit;font-weight:700}.result .altlink a{font-size:.9em;margin:0 10px 0 0;padding:5px 10px;border-radius:5px;background:var(--color-show-btn-background);color:var(--color-show-btn-font);cursor:pointer}.result .altlink a:hover{background:var(--color-btn-background);color:var(--color-btn-font)}.result .codelines .highlight{color:inherit;background:inherit;font-weight:400}.result .url_wrapper{display:flex;font-size:1rem;color:var(--color-result-url-font);flex-wrap:nowrap;overflow:hidden;flex-direction:row;margin:0;padding:0}.result .url_wrapper .url_o1{white-space:nowrap;flex-shrink:1}.result .url_wrapper .url_o1::after{content:" ";width:1ch;display:inline-block}.result .url_wrapper .url_o2{overflow:hidden;white-space:nowrap;flex-basis:content;flex-grow:0;flex-shrink:1;text-align:right}.result .url_wrapper .url_o2 .url_i2{float:right}.result .published_date,.result .result_author,.result .result_length,.result .result_shipping,.result .result_source_country{font-size:.8em;color:var(--color-result-publishdate-font)}.result .result_price{font-size:1.2em;color:var(--color-result-description-highlight-font)}.result img.thumbnail{float:right;padding-top:.6rem;padding-left:1rem;width:20rem;height:unset}.result img.image{float:right;padding-top:.6rem;padding-left:1rem;width:7rem;max-height:7rem;object-fit:scale-down;object-position:right top}.result .break{clear:both}.result-paper .attributes{display:table;border-spacing:.125rem}.result-paper .attributes div{display:table-row}.result-paper .attributes div span{font-size:.9rem;margin-top:.25rem;display:table-cell}.result-paper .attributes div span time{font-size:.9rem}.result-paper .attributes div span:first-child{color:var(--color-base-font);min-width:10rem}.result-paper .attributes div span:nth-child(2){color:var(--color-result-publishdate-font)}.result-paper .content{margin-top:.25rem}.result-paper .comments{font-size:.9rem;margin:.25rem 0 0 0;padding:0;word-wrap:break-word;line-height:1.24;font-style:italic}.template_group_images{display:flex;flex-wrap:wrap}.template_group_images::after{flex-grow:10;content:""}.category-files,.category-map,.category-music,.category-news,.category-social,.category-videos{border:1px solid var(--color-result-border);margin:0 .5rem 1rem .5rem!important;border-radius:10px}.category-social .image{width:auto!important;min-width:48px;min-height:48px;padding:0 5px 25px 0!important}.audio-control audio{width:100%;padding:10px 0 0 0}.embedded-content iframe{width:100%;padding:10px 0 0 0}.result-videos .content{overflow:hidden}.result-videos .embedded-video iframe{width:100%;aspect-ratio:16/9;padding:10px 0 0 0}@supports not (aspect-ratio:1 / 1){.result-videos .embedded-video iframe{height:calc(45rem * 9 / 16)}}.engines{float:left;display:flex;flex-wrap:wrap;justify-content:flex-end;color:var(--color-result-engines-font)}.engines span{font-size:smaller;margin-top:0;margin-bottom:0;margin-left:.5rem;margin-right:0}.small_font{font-size:.8em}.highlight{color:var(--color-result-link-font-highlight);background:inherit}.empty_element{font-style:italic}.result-images{flex-grow:1;padding:.5rem .5rem 3rem .5rem;margin:.25rem;border:none!important;height:12rem}.result-images>a{position:relative}.result-images img{margin:0;padding:0;border:none;height:100%;width:100%;object-fit:cover;vertical-align:bottom;background:var(--color-result-image-background)}.result-images span.source,.result-images span.title{display:block;position:absolute;width:100%;font-size:.9rem;color:var(--color-result-image-span-font);padding:.5rem 0 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.result-images span.source{padding:1.8rem 0 0 0;font-size:.7rem}.result-map img.image{float:left!important;height:100px!important;width:auto!important}.result-map table{font-size:.9em;width:auto;border-collapse:separate;border-spacing:0 .35rem}.result-map table th{font-weight:inherit;width:17rem;vertical-align:top;text-align:right}.result-map table td{vertical-align:top;text-align:right}.hidden{display:none!important}#results{margin-top:1rem;margin-left:2rem;margin-bottom:0;margin-right:10rem;display:grid;grid-template-columns:45rem 25rem;grid-template-rows:min-content min-content 1fr min-content;gap:0 5rem;grid-template-areas:"corrections sidebar" "answers sidebar" "urls sidebar" "pagination sidebar"}#results #sidebar :first-child,#results #urls :first-child{margin-top:0}#urls{padding:0;grid-area:urls}#suggestions .wrapper{display:flex;flex-flow:column;justify-content:flex-end}#suggestions .wrapper form{display:inline-block;flex:1 1 50%}#infoboxes input,#suggestions input{padding:0;margin:3px;font-size:.9em;display:inline-block;background:0 0;color:var(--color-result-search-url-font);cursor:pointer;width:calc(100%);text-overflow:ellipsis;overflow:hidden;text-align:left}#infoboxes .infobox .url a,#infoboxes input[type=submit],#suggestions .infobox .url a,#suggestions input[type=submit]{color:var(--color-result-link-font);text-decoration:none;font-size:.9rem}#infoboxes .infobox .url a:hover,#infoboxes input[type=submit]:hover,#suggestions .infobox .url a:hover,#suggestions input[type=submit]:hover{text-decoration:underline}#corrections{grid-area:corrections;display:flex;flex-flow:row wrap;margin:0 0 1em 0}#corrections h4,#corrections input[type=submit]{display:inline-block;padding:.5rem;margin:.5rem}#corrections input[type=submit]{font-size:.8rem;border-radius:5px}#apis .title,#search_url .title,#suggestions .title{margin:2em 0 .5em 0;color:var(--color-base-font)}#answers{grid-area:answers;background:var(--color-answer-background);padding:1rem;margin:1rem 0;margin-top:0;color:var(--color-answer-font);border-radius:10px}#answers h4{display:none}#answers span{overflow-wrap:anywhere}#infoboxes form{min-width:210px}#sidebar{grid-area:sidebar;word-wrap:break-word;color:var(--color-sidebar-font)}#sidebar .infobox{margin:10px 0 10px;border:1px solid var(--color-sidebar-border);padding:1rem;font-size:.9em;border-radius:10px}#sidebar .infobox h2{margin:0 0 .5em 0}#sidebar .infobox img{max-width:100%;max-height:12em;display:block;margin:0 auto;padding:0}#sidebar .infobox dt{font-weight:700}#sidebar .infobox .attributes dl{margin:.5em 0}#sidebar .infobox .attributes dt{display:inline;margin-top:.5em;margin-left:.25em;margin-bottom:.5em;margin-right:0;padding:0}#sidebar .infobox .attributes dd{display:inline;margin:.5em 0;padding:0}#sidebar .infobox input{font-size:1em}#sidebar .infobox br{clear:both}#sidebar .infobox .attributes,#sidebar .infobox .urls{clear:both}#search_url{margin-top:8px}#search_url div.selectable_url pre{width:200em}#links_on_top{position:absolute;left:1.8rem;text-align:left;top:2.2rem;padding:0;border:0;display:flex;align-items:center;font-size:1em;color:var(--color-search-font)}#links_on_top a{display:flex;align-items:center;margin-left:1em}#links_on_top a svg{font-size:1.2em;margin-left:.125em}#links_on_top a,#links_on_top a:active *,#links_on_top a:hover *,#links_on_top a:link *,#links_on_top a:visited *{color:var(--color-search-font)}#pagination{grid-area:pagination}#pagination br{clear:both}.numbered_pagination{display:flex;flex-direction:row;justify-content:center;align-items:center;overflow:hidden}.page_number{background:0 0!important;color:var(--color-result-link-font)!important;text-decoration:underline}.page_number_current{background:0 0;color:var(--color-result-link-visited-font);border:none}#apis{margin-top:8px;clear:both}#backToTop{border:1px solid var(--color-backtotop-border);margin:0;padding:0;font-size:1em;background:var(--color-backtotop-background);position:fixed;bottom:8rem;right:56.3rem;transition:opacity .5s;opacity:0;border-radius:10px}#backToTop a{display:block;margin:0;padding:.7em}#backToTop a,#backToTop a:active,#backToTop a:hover,#backToTop a:visited{color:var(--color-backtotop-font)}#results.scrolling #backToTop{opacity:1}@media screen and (max-width:calc(79.75em - 0.5px)){#links_on_top span{display:none}}@media screen and (max-width:52rem){body.results_endpoint #links_on_top .link_on_top_about,body.results_endpoint #links_on_top .link_on_top_donate{display:none}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-no #links_on_top span{display:none}.center-aligment-no .page_with_header{margin:2rem .5rem;width:auto}.center-aligment-no #infoboxes{position:inherit;max-width:inherit}.center-aligment-no #infoboxes .infobox{clear:both}.center-aligment-no #infoboxes .infobox img{float:right;max-width:10em;margin-top:.5em;margin-left:.5em;margin-bottom:.5em;margin-right:0}.center-aligment-no #sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}.center-aligment-no #sidebar input{border:0}.center-aligment-no #apis{display:none}.center-aligment-no #search_url{display:none}.center-aligment-no .result .thumbnail{max-width:98%}.center-aligment-no .result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.center-aligment-no .result .engines{float:left;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.center-aligment-no .result-images{border-bottom:none!important}.center-aligment-no .image_result{max-width:98%}.center-aligment-no .image_result img{max-width:98%}.center-aligment-no #backToTop{display:none}.center-aligment-no #pagination{margin:2rem 0 0 0!important}.center-aligment-no #main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}}#main_results div#results.only_template_images{margin:1rem .5rem 0 .5rem;display:grid;grid-template-columns:100%;grid-template-rows:min-content min-content min-content 1fr min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}#main_results div#results.only_template_images #sidebar{display:none}#main_results div#results.only_template_images #urls{margin:0;display:flex;flex-wrap:wrap}#main_results div#results.only_template_images #urls::after{flex-grow:10;content:""}#main_results div#results.only_template_images #backToTop{right:auto;left:1rem}#main_results div#results.only_template_images #pagination{margin-left:4rem}@media screen and (max-width:50em){#links_on_top span{display:none}.page_with_header{margin:2rem .5rem;width:auto}#infoboxes{position:inherit;max-width:inherit}#infoboxes .infobox{clear:both}#infoboxes .infobox img{float:right;max-width:10em;margin-top:.5em;margin-left:.5em;margin-bottom:.5em;margin-right:0}#sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}#sidebar input{border:0}#apis{display:none}#search_url{display:none}.result .thumbnail{max-width:98%}.result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.result .engines{float:left;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.result-images{border-bottom:none!important}.image_result{max-width:98%}.image_result img{max-width:98%}#backToTop{display:none}#pagination{margin:2rem 0 0 0!important}#main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}html{background-color:var(--color-base-background-mobile)}#main_results div#results{grid-template-columns:100%;margin:1rem 0 0 0}#links_on_top{top:.8rem;left:.7rem}#main_index #links_on_top{top:.5rem;left:.5rem}#results{margin:0;padding:0}#pagination{margin:2rem 1rem 0 1rem!important}article[data-vim-selected]{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{background:var(--color-result-background);margin:1rem 0}.result-images{margin:0;height:6rem;background:var(--color-base-background-mobile)}.infobox{border:none!important;background-color:var(--color-sidebar-background)}.numbered_pagination{display:none}.result-paper .attributes{display:block}.result-paper .attributes div{display:block}.result-paper .attributes div span{display:inline}.result-paper .attributes div span:first-child{font-weight:700}.result-paper .attributes div span:nth-child(2){margin-right:.5rem}}@media screen and (max-width:35em){.result-videos img.thumbnail{float:none!important}.result-videos .content{overflow:inherit}}pre code{white-space:pre-wrap}#q,#sidebar .infobox dt bdi{direction:rtl}#urls{direction:initial;text-align:right}#urls .result .url_wrapper{justify-content:end}#main_results div#results.only_template_images #urls{direction:rtl}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{direction:rtl}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url{direction:ltr}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url span{direction:rtl;float:right}@supports ((background-position-x:100%) and ((appearance:none) or (-webkit-appearance:none) or (-moz-appearance:none))){select{border-width:0 0 0 2rem;background-position-x:-2rem}}#vim-hotkeys-help table{direction:ltr;text-align:left}#main_preferences h1,#main_stats h1{background-position-x:100%}.bar-chart-serie1,.bar-chart-serie2{float:right}.engine-stats .engine-name,.engine-stats .engine-reliability,.engine-stats .engine-score,.engine-stats .response-time,.engine-stats .result-count{text-align:right}/*# sourceMappingURL=searxng-rtl.min.css.map */ \ No newline at end of file diff --git a/searx/static/themes/simple/css/searxng-rtl.min.css.map b/searx/static/themes/simple/css/searxng-rtl.min.css.map index 3430a696b..79c1df254 100644 --- a/searx/static/themes/simple/css/searxng-rtl.min.css.map +++ b/searx/static/themes/simple/css/searxng-rtl.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["node_modules/normalize.css/normalize.css","src/less/definitions.less","src/less/code.less","src/generated/pygments.less","src/less/toolkit.less","src/less/mixins.less","src/less/style-rtl.less","src/less/autocomplete.less","src/less/detail.less","src/less/animations.less","src/less/embedded.less","src/less/info.less","src/less/new_issue.less","src/less/stats.less","src/less/result_templates.less","src/less/index.less","src/less/preferences.less","src/less/search.less","src/less/style-center.less","src/less/style.less"],"names":[],"mappings":"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,aAGF,eACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,MACE,MAAA,EACA,OAAA,EV/FD,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,QUsGG,MAAA,KCpGJ,aACE,OAAA,MACA,MAAA,KACA,OAAA,KAAA,ECLF,YACE,WAAA,KAGF,OACE,WAAA,OAEA,cACE,WAAgB,wBAAA,UAChB,WAAA,KACA,OAAA,KAAA,KACA,oBAAA,OACA,gBAAA,QAGF,UACE,UAAA,IACA,WAAA,OAGF,eACA,sBACE,OAAA,EAAA,KACA,WAAA,QACA,OAAA,QACA,QAAA,EACA,QAAA,MAGF,uBACE,QAAA,MACA,OAAA,IAAA,EAGQ,uBACR,QAAA,IAAA,KACA,cAAA,kBAImC,sCAEnC,aACE,UAAA,IAIJ,YACE,WAAA,KChDqB,4BACA,4BVwCvB,WAAA,eUtCA,OAAA,KAIA,uBACE,MAAA,KAGF,2BACE,OAAA,IACA,OAAA,KAGF,yBACE,OAAA,EACA,QAAA,IAAA,EAAA,EAAA,EACA,QAAA,MVcF,MAAA,MUZE,MAAA,MAGF,yBACE,OAAA,EACA,QAAA,EVOF,MAAA,MULE,MAAA,KAGK,0CADL,gCAEE,UAAA,kBACA,WAAA,EVxBJ,YAAA,KU0BI,cAAA,EVtBJ,aAAA,EU0BE,gCACE,MAAA,MAGG,0CACH,MAAA,SACA,MAAO,qCACP,OAAA,KACA,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,uCACnC,QAAA,MAAA,MACA,OAAA,KX9BJ,cAAA,IWkCK,gDADA,gDAEC,iBAAkB,6CAKjB,qCADC,sCAEJ,QAAA,EACA,WAAA,EAAA,EAAA,IAAA,IAAwB,4BAI5B,+BACE,OAAA,EACA,QAAA,IAAA,EAAA,EAAA,EV9BF,MAAA,KUgCE,MAAA,IACA,MAAO,8CACP,UAAA,IAGF,wBACE,gBAAA,SAGI,2BACJ,WAAA,OAGF,4BVzEA,YAAA,MU4EE,kCACE,OAAA,IAAA,MAAA,YACA,QAAA,MAAA,MXpEJ,cAAA,IWyEyC,+DACvC,OAAA,IAAA,MAAkB,6CAIlB,yCACE,OAAA,QAKA,oDACE,OAAA,QAIF,8DACE,WAAA,OV5GN,MU6GgB,8BACV,UAAA,MAEA,kFACE,WAAA,MAKN,oDVlDF,WAAA,MUoDI,YAAA,IACA,WAAY,8CAGd,4CACA,gDVzDF,WAAA,MU8DK,gCACH,MAAA,KACA,UAAA,IAGA,mCADA,mCAEE,WAAA,KACA,YAAA,UACA,UAAA,KACA,QAAA,KACA,eAAA,IAGA,+CACA,WAAA,SACA,MAAA,MACA,cAAA,KAGA,8CACA,WAAA,UAI6B,4DADA,4DAE7B,iBAAkB,+BAItB,oCACE,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,4BACnC,MAAO,sBACP,OAAA,EAAA,KXxJF,cAAA,KW2JE,OAAA,QACA,QAAA,aACA,OAAA,IAAA,IACA,QAAA,KAEA,sCACE,MAAO,kCAGR,oDACC,eAAA,UAKF,yCACE,MAAA,KAKiC,sCACrC,kBACE,MAAA,KAGF,gBV/LA,MAAA,gBWGF,QACE,QAAA,EACA,OAAA,EAGF,eACE,YAAA,MXeA,aAAA,IAIA,cAAA,KWhBA,OAAA,EACA,WAAY,+BACZ,cAAA,IAAA,MAAyB,2BACzB,QAAA,KACA,WAAA,OACA,QAAA,KACA,sBAAA,KAAA,IACA,oBAAA,cAAA,oBAKF,UACE,QAAA,aACA,SAAA,SXlBA,YAAA,KWoBA,QAAA,EAEA,gBACE,QAAA,KAGF,gBAKE,OAAA,QACA,QAAA,MAAA,EACA,QAAA,YACA,eAAA,WACA,UAAA,KACA,cAAA,IAAA,MAAA,YZrBF,sBAAA,KACA,YAAA,KYWE,oBACE,cAAA,MAWC,kCACD,OAAA,KAAA,EAI2B,6CAC7B,MAAO,2CACP,cAAA,IAAA,MAAyB,6CAI7B,aACE,UAAA,KACA,QAAA,KACA,YAAA,OACA,gBAAA,OAEA,iBACE,KAAA,EACA,MAAA,KACA,OAAA,KACA,OAAA,MAAA,EAAA,KAAA,EAIJ,mBACE,UAAA,WAEA,yBACE,QAAA,KAGM,+BACN,QAAA,MACA,SAAA,SACA,WAAY,6BACZ,QAAA,KAAA,MAAA,MAAA,EACA,QAAA,KACA,MAAA,KACA,KAAA,OAIJ,aACE,UAAA,OAGF,YACE,cAAA,MACA,MAAA,MACA,QAAA,YACA,eAAA,IACA,YAAA,OACA,WAAY,2BAGd,cACE,QAAA,MACA,gBAAA,SACA,WAAA,WACA,MAAA,OACA,OAAA,EACA,QAAA,MAAA,MACA,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,+BACnC,OAAA,KACA,QAAA,EACA,MAAO,yBACP,UAAA,OACA,QAAA,MAEC,oBACC,MAAO,qCAGD,sBACN,QAAA,KAIoB,sCACtB,QAAA,KAGF,GACA,aACE,QAAA,MACA,OAAA,EACA,QAAA,MACA,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,+BACnC,OAAA,KACA,QAAA,EACA,MAAO,yBACP,UAAA,OACA,QAAA,EAGF,GACE,MAAA,KXpHA,cAAA,KAJA,aAAA,YAoBA,cAAA,EAAA,MAAA,MAAA,EW0GA,cACA,iCACA,QAAA,KAGF,aXnGE,cAAA,MAAA,EAAA,EAAA,MWsGC,mBACC,OAAA,QACA,iBAAkB,qCAClB,MAAO,+BAIJ,qBACA,oBACL,MAAA,eXnJA,aAAA,IAAA,MWoJ2B,2BAG7B,gBACE,WAAA,MXpKA,YAAA,EWsKA,cAAA,EXlKA,aAAA,QWoKA,QAAA,KACA,WAAA,KACA,2BAAA,QAEA,uBACE,iBAAA,QAGC,6BADA,6BAEC,MAAO,uBAK0B,sCACrC,eACE,QAAA,MAAA,MAAA,EAAA,MACA,WAAA,MAGF,gBACE,WAAA,MX7LF,YAAA,EW+LE,cAAA,EX3LF,aAAA,OW+LA,YACE,UAAA,IACA,MAAA,KAEA,gCACE,OAAA,KACA,WAAA,KAKmD,uDAGrD,kCAAA,oCACE,MAAA,YAEA,4CAAA,8CACE,QAAA,aACA,MAAA,KAIJ,wBAAA,0BACE,MAAA,KX/JJ,WAAA,MWiKI,WAAA,OACA,WAAA,OACA,2BAAA,OAKgC,mCACpC,eACE,MAAA,KACA,OAAA,EACA,QAAA,MAAA,EAAA,EAAA,EACA,WAAA,EACA,QAAA,EACA,oBAAA,cAAA,wBAKF,aACE,QAAA,EAGF,YACE,MAAA,IACA,QAAA,KACA,OAAA,EAAA,KAGF,GACE,MAAA,KACA,KAAA,EAGF,gBACE,OAAA,EAGF,UACE,QAAA,aACA,MAAA,KACA,OAAA,EAEA,gBACE,QAAA,eACA,OAAA,YAEA,oBACE,QAAA,KAKM,0BACV,QAAA,MACA,iBAAkB,+BAClB,SAAA,SACA,IAAA,EACA,OAAA,KACA,MAAA,KACA,QAAA,MAEA,sCACE,cAAA,IAAA,MAAyB,2BACzB,MAAA,KACA,cAAA,EACA,WAAA,KAEA,mDXjSJ,YAAA,YWqSI,wCACE,OAAA,KACA,cAAA,EACA,WAAA,KAK6B,gDX7SnC,YAAA,OW+SE,WAAA,OAAA,KAI8C,oCAChD,eACE,oBAAA,gBAAA,wBAKF,aACE,QAAA,MAIJ,YZhTE,sBAAA,KACA,YAAA,KYkTC,+BACC,MAAA,EACA,OAAA,EAIJ,sBACE,SAAA,SCxUoC,mCACf,mCACnB,oBAAA,OAIiC,oCACd,mCACnB,oBAAA,OAImC,sCAChB,mCACnB,oBAAA,OAI2D,2DAG3D,4CACE,sBAAA,IAA2B,iBAC3B,YAAA,EACA,aAAA,EAGF,yCZxBF,aAAA,KY4BE,4CZhCF,YAAA,KYoCE,8CZ5CF,MY6Cc,kBAKuB,sCAChB,mCACnB,QAAA,KACA,eAAA,OACA,YAAA,OAEA,2CACE,MAAA,KACA,QAAA,KACA,eAAA,OACA,YAAA,OAGF,kDACE,sBAA2C,iDAAA,KAAmC,yBAC9E,oBAAA,iBAAA,uBACA,WAAA,OACA,MAAA,KACA,aAAA,EACA,cAAA,EAGF,mDZ5DF,aAAA,MY8DI,MAAO,yBAGT,4CZrEF,YAAA,KAIA,aAAA,MYwEK,8DADA,iEAMC,WAAA,WAG8B,+FZhFpC,aAAA,OYmFM,sBAA4B,8CAAA,MAE5B,0GZjGN,MYkG4E,8DAIhE,6DACN,UAAA,QAKJ,yCZhGF,aAAA,EYoGE,4CZxGF,YAAA,Ga0BF,UACE,QAAA,aACA,eAAA,OACA,YAAA,EACA,gBAAA,Qb0CA,UAAW,YatCb,gBACE,MAAA,KACA,OAAA,KATA,QAAA,aACA,eAAA,OACA,YAAA,EACA,gBAAA,Qb0CA,UAAW,YahCb,cACE,MAAA,OACA,OAAA,OAfA,QAAA,aACA,eAAA,OACA,YAAA,EACA,gBAAA,Qb0CA,UAAW,YazBb,KACE,YAAA,WACA,UAAA,KdtDA,yBAAA,KACA,qBAAA,KACA,sBAAA,KACA,iBAAA,KcsDA,MAAO,uBACP,iBAAkB,6BAClB,QAAA,EACA,OAAA,EAGF,KACA,KACE,QAAA,EACA,OAAA,EAGF,KACE,QAAA,KACA,eAAA,OACA,OAAA,MACA,OAAA,EAGF,KACE,MAAA,KACA,cAAA,KACA,KAAA,EAGF,kBACE,OAAA,IAAA,KACA,MAAA,KAGF,OACE,MAAA,KACA,WAAA,KACA,QAAA,KAAA,EACA,MAAA,KACA,WAAA,OACA,iBAAkB,+BAClB,WAAA,IAAA,MAAsB,2BACtB,SAAA,OAEA,SACE,UAAA,KAIc,wBAChB,OAAA,KAIa,6BADV,mBAEH,QAAA,MACA,QAAA,aACA,WAAY,4BACZ,MAAO,sBdxGP,cAAA,Kc2GA,OAAA,EACA,OAAA,QAGF,EACE,gBAAA,KACA,MAAO,sBAEN,UACC,MAAO,8BAEP,qBACE,MAAO,8BAKN,2BACL,WAAY,iCbnHZ,aAAA,MAAA,MaoH8B,8BbhF9B,cAAA,KAAA,EAAA,EAAA,KaoFmB,yCACnB,WAAY,8BACZ,OAAA,KdpIA,cAAA,KcuIA,0DACE,OAAQ,aAIN,qDADA,oDAEF,MAAO,6CAQe,0CAFA,wCACA,0CAFA,yCAIA,2CALA,2CAMxB,OAAA,IAAA,MAAkB,8BdvJlB,cAAA,Kc2JF,QACE,OAAA,QAAA,EACA,QAAA,KbnJA,aAAA,MAAA,MAAA,YasJA,WACE,UAAA,OACA,UAAA,WACA,OAAA,MAAA,EAAA,MAAA,EACA,QAAA,EAEA,aACE,MAAO,8BACP,YAAA,IACA,UAAA,MAEC,qBACC,MAAO,sCAGR,mBACA,mBACC,gBAAA,UACA,OAAA,KACA,QAAA,EAKN,oBACA,wBACE,UAAA,eAGF,iBACA,cACE,UAAA,KACA,OAAA,EACA,QAAA,EACA,UAAA,KACA,UAAA,WACA,YAAA,KAEA,4BAAA,yBACE,MAAO,+CACP,WAAA,QACA,YAAA,IAIK,mBACP,UAAA,KACA,OAAA,EAAA,KAAA,EAAA,Ed7LF,QAAA,IAAA,KAVA,cAAA,IAYA,WAAY,iCACZ,MAAO,2BACP,OAAA,QAEC,yBACC,WAAY,4BACZ,MAAO,sBc0LP,8BACE,MAAA,QACA,WAAA,QACA,YAAA,IAIJ,qBACE,QAAA,KACA,UAAA,KACA,MAAO,6BACP,UAAA,OACA,SAAA,OACA,eAAA,IACA,OAAA,EACA,QAAA,EAEA,6BACE,YAAA,OACA,YAAA,EAGK,oCACL,QAAA,IACA,MAAA,IACA,QAAA,aAGF,6BACE,SAAA,OACA,YAAA,OACA,WAAA,QACA,UAAA,EACA,YAAA,EACA,WAAA,MAEA,qCACE,MAAA,MAKN,wBAEA,uBADA,uBAEA,yBACA,+BACE,UAAA,KACA,MAAO,qCAGT,sBACE,UAAA,MACA,MAAO,+CAIN,sBbvPH,MAAA,MayPI,YAAA,MbjQJ,aAAA,KamQI,MAAA,MACA,OAAA,MAGD,kBb/PH,MAAA,MaiQI,YAAA,MbzQJ,aAAA,Ka2QI,MAAA,KACA,WAAA,KACA,WAAA,WACA,gBAAA,MAAA,IAIJ,eACE,MAAA,KAKF,0BACE,QAAA,MACA,eAAA,QAEA,8BACE,QAAA,UAEA,mCACE,UAAA,MACA,WAAA,OACA,QAAA,WAEA,wCACE,UAAA,MAIA,+CACF,MAAO,uBACP,UAAA,MAGY,gDACZ,MAAO,qCAKb,uBACE,WAAA,OAGF,wBACE,UAAA,MACA,OAAA,OAAA,EAAA,EAAA,EACA,QAAA,EACA,UAAA,WACA,YAAA,KACA,WAAA,OAIJ,uBACE,QAAA,KACA,UAAA,KAGoB,8BACpB,UAAA,GACA,QAAA,GAOF,gBAFA,cACA,gBAFA,eAIA,iBALA,iBAME,OAAA,IAAA,MAAkB,2BAClB,OAAA,KAAA,MAAA,EAAA,gBdjWA,cAAA,KcqWe,wBACf,MAAA,eACA,UAAA,KACA,WAAA,KACA,QAAA,EAAA,IAAA,KAAA,YAGa,qBACb,MAAA,KACA,QAAA,KAAA,EAAA,EAAA,EAGgB,yBAChB,MAAA,KACA,QAAA,KAAA,EAAA,EAAA,EAGa,wBACb,SAAA,OAG6B,sCAC7B,MAAA,KACA,aAAA,EAAA,CAAA,EACA,QAAA,KAAA,EAAA,EAAA,EAGF,mCAGiC,sCAC7B,OAAQ,sBAIZ,Sb9WE,MAAA,KagXA,QAAA,KACA,UAAA,KACA,gBAAA,SACA,MAAO,iCAEP,cACE,UAAA,QACA,WAAA,EACA,cAAA,EbpZF,YAAA,MAIA,aAAA,EasZF,YACE,UAAA,KAGF,WACE,MAAO,wCACP,WAAA,QAGF,eACE,WAAA,OAGF,eACE,UAAA,EACA,QAAA,MAAA,MAAA,KAAA,MACA,OAAA,OACA,OAAA,eACA,OAAA,MAEE,iBACA,SAAA,SAGF,mBACE,OAAA,EACA,QAAA,EACA,OAAA,KACA,OAAA,KACA,MAAA,KACA,WAAA,MACA,eAAA,OACA,WAAY,qCAIV,2BADA,0BAEF,QAAA,MACA,SAAA,SAEA,MAAA,KACA,UAAA,MACA,MAAO,oCACP,QAAA,MAAA,EAAA,EAAA,EACA,SAAA,OACA,cAAA,SACA,YAAA,OAGE,2BACF,QAAA,OAAA,EAAA,EAAA,EACA,UAAA,MAKC,sBbtbH,MAAA,eawbE,OAAA,gBACA,MAAA,eAGF,kBACE,UAAA,KACA,MAAA,KACA,gBAAA,SACA,eAAA,EAAA,OAEA,qBACE,YAAA,QACA,MAAA,MACA,eAAA,IbraJ,WAAA,MayaE,qBACE,eAAA,Ib1aJ,WAAA,MagbF,QACE,QAAA,eAGF,SACE,WAAA,KbjfA,YAAA,KamfA,cAAA,Eb/eA,aAAA,MaifA,QAAA,KACA,sBAAA,MAAA,MACA,mBAAA,YAAA,YAAA,IAAA,YACA,IAAA,EAAA,KACA,oBAEE,sBAEA,kBAJF,eAAA,qBAOiB,+BACH,4BACd,WAAA,EAGF,MACE,QAAA,EACA,UAAA,KAIA,sBACE,QAAA,KACA,UAAA,OACA,gBAAA,SAEA,2BACE,QAAA,aACA,KAAA,EAAA,EAAA,IAOJ,iBAAA,mBACE,QAAA,EACA,OAAA,IACA,UAAA,KACA,QAAA,aACA,WAAA,IACA,MAAO,oCACP,OAAA,QACA,MAAO,WACP,cAAA,SACA,SAAA,OACA,WAAA,KAIY,2BADT,8BACS,6BADT,gCAEH,MAAO,8BACP,gBAAA,KACA,UAAA,MAEC,iCAAA,oCAAA,mCAAA,sCACC,gBAAA,UAKN,aACE,UAAA,YACA,QAAA,KACA,UAAA,IAAA,KACA,OAAA,EAAA,EAAA,IAAA,EAEA,gBACK,gCACH,QAAA,aACA,QAAA,MACA,OAAA,MAGG,gCACH,UAAA,MdvjBF,cAAA,Ic8jBI,aADM,mBADC,oBAGX,OAAA,IAAA,EAAA,KAAA,EACA,MAAO,uBAGT,SACE,UAAA,QACA,WAAY,+BACZ,QAAA,KACA,OAAA,KAAA,EACA,WAAA,EACA,MAAO,yBdjlBP,cAAA,KcolBA,YACE,QAAA,KAGF,cACE,cAAA,SAKF,gBACE,UAAA,MAIJ,SACE,UAAA,QACA,UAAA,WACA,MAAO,0BAEP,kBACE,OAAA,KAAA,EAAA,KACA,OAAA,IAAA,MAAkB,4BAClB,QAAA,KACA,UAAA,Kd5mBF,cAAA,Kc+mBE,qBACE,OAAA,EAAA,EAAA,KAAA,EAGF,sBACE,UAAA,KACA,WAAA,KACA,QAAA,MACA,OAAA,EAAA,KACA,QAAA,EAGF,qBACE,YAAA,IAIA,iCACE,OAAA,KAAA,EAGF,iCACE,QAAA,OACA,WAAA,KbxoBN,YAAA,Ma0oBM,cAAA,KbtoBN,aAAA,EawoBM,QAAA,EAGF,iCACE,QAAA,OACA,OAAA,KAAA,EACA,QAAA,EAIJ,wBACE,UAAA,IAGF,qBACE,MAAA,KAGF,8BACA,wBACE,MAAA,KAKN,YACE,WAAA,IAGE,mCACE,MAAA,MAKN,cACE,SAAA,SbprBA,KAAA,OAoCA,WAAA,KampBA,IAAA,OACA,QAAA,EACA,OAAA,EACA,QAAA,KACA,YAAA,OACA,UAAA,IACA,MAAO,yBAEP,gBACE,QAAA,KACA,YAAA,OACA,YAAA,IAEA,oBACE,UAAA,MbjsBJ,YAAA,OassBA,gBAIS,yBAFD,wBADD,uBAEG,0BAER,MAAO,yBAIX,YACE,UAAA,WAEA,eACE,MAAA,KAIJ,MACE,WAAA,IACA,MAAA,KAGF,WACE,OAAA,IAAA,MAAkB,8BAClB,OAAA,EACA,QAAA,EACA,UAAA,IACA,WAAY,kCACZ,SAAA,MACA,OAAA,Kb3uBA,MAAA,Qa6uBA,WAAA,QAAA,IACA,QAAA,EdpuBA,cAAA,KcuuBA,aACE,QAAA,MACA,OAAA,EACA,QAAA,KAGF,aAGC,oBADA,mBADA,qBAGC,MAAO,4BAIQ,8BACjB,QAAA,EAqH4B,oDAE1B,mBACE,QAAA,MAK+B,oCAG/B,uDACA,wDACE,QAAA,MAMuD,2DA/H3D,uCACE,QAAA,KAIJ,sCACE,OAAA,KAAA,MACA,MAAA,KAGF,+BACE,SAAA,QACA,UAAA,QAEA,wCACE,MAAA,KAEA,4Cb1vBJ,MAAA,Ma4vBM,UAAA,KACA,WAAA,KbrxBN,YAAA,KauxBM,cAAA,KbnxBN,aAAA,EayxBA,6BACE,OAAA,EAAA,MAAA,QAAA,MACA,QAAA,EACA,MAAA,KACA,OAAA,KACA,MAAA,KAEA,mCACE,OAAA,EAIJ,0BACE,QAAA,KAGF,gCACE,QAAA,KAIA,uCACE,UAAA,IAII,0CACF,QAAA,MACA,YAAA,OACA,cAAA,SACA,SAAA,OACA,MAAA,KAIJ,qCbpyBF,MAAA,KasyBI,QAAA,KACA,UAAA,KACA,gBAAA,SACA,QAAA,EAAA,EAAA,IAAA,EAIJ,mCACE,cAAA,eAGF,kCACE,UAAA,IAEA,sCACE,UAAA,IAIJ,+BACE,QAAA,KAGF,gCACE,OAAA,KAAA,EAAA,EAAA,YAGe,8CACf,OAAA,KAAA,KAAA,EAAA,KACA,gBAAA,OACA,QAAA,KACA,sBAAA,MACA,mBAAA,YAAA,YAAA,YAAA,IAAA,YAAA,YACA,IAAA,EACA,oBAIE,cACA,UALF,UAAA,OAAA,cAuCqB,+CACvB,OAAA,KAAA,MAAA,EAAA,MACA,QAAA,KACA,sBAAA,KACA,mBAAA,YAAA,YAAA,YAAA,IAAA,YACA,IAAA,EACA,oBAIE,cACA,UALF,UAAA,OAAA,aAOA,wDACE,QAAA,KAGF,qDACE,OAAA,EACA,QAAA,KACA,UAAA,KAGG,4DACH,UAAA,GACA,QAAA,GAGF,0Db/6BA,MAAA,KAIA,KAAA,Kag7BA,2Db56BA,YAAA,Kaq7BoC,mCApLlC,mBACE,QAAA,KAIJ,kBACE,OAAA,KAAA,MACA,MAAA,KAGF,WACE,SAAA,QACA,UAAA,QAEA,oBACE,MAAA,KAEA,wBb1vBJ,MAAA,Ma4vBM,UAAA,KACA,WAAA,KbrxBN,YAAA,KauxBM,cAAA,KbnxBN,aAAA,EayxBA,SACE,OAAA,EAAA,MAAA,QAAA,MACA,QAAA,EACA,MAAA,KACA,OAAA,KACA,MAAA,KAEA,eACE,OAAA,EAIJ,MACE,QAAA,KAGF,YACE,QAAA,KAIA,mBACE,UAAA,IAII,sBACF,QAAA,MACA,YAAA,OACA,cAAA,SACA,SAAA,OACA,MAAA,KAIJ,iBbpyBF,MAAA,KasyBI,QAAA,KACA,UAAA,KACA,gBAAA,SACA,QAAA,EAAA,EAAA,IAAA,EAIJ,eACE,cAAA,eAGF,cACE,UAAA,IAEA,kBACE,UAAA,IAIJ,WACE,QAAA,KAGF,YACE,OAAA,KAAA,EAAA,EAAA,YAGe,0BACf,OAAA,KAAA,KAAA,EAAA,KACA,gBAAA,OACA,QAAA,KACA,sBAAA,MACA,mBAAA,YAAA,YAAA,YAAA,IAAA,YAAA,YACA,IAAA,EACA,oBAIE,cACA,UALF,UAAA,OAAA,aAqFF,KACE,iBAAkB,oCAGH,0BACf,sBAAA,KACA,OAAA,KAAA,EAAA,EAAA,EAGF,cACE,IAAA,Mbv8BF,KAAA,Ma28BY,0BACV,IAAA,Mb58BF,KAAA,Mag9BA,SACE,OAAA,EACA,QAAA,EAGF,YACE,OAAA,KAAA,KAAA,EAAA,eAGK,2BACL,OAAA,IAAA,MAAkB,8Bdp9BpB,cAAA,Kcw9BA,QACE,WAAY,+BACZ,OAAA,KAAA,EAGF,eACE,OAAA,EACA,OAAA,KACA,WAAY,oCAGd,SACE,OAAA,eACA,iBAAkB,gCAIlB,0BACE,QAAA,MAEA,8BACE,QAAA,MAEA,mCACE,QAAA,OAGE,+CACF,YAAA,IAGY,gDbr/BpB,aAAA,OaigC0C,mCAErC,6BACD,MAAA,eAGF,wBACE,SAAA,SAKF,SACF,YAAA,Sbr8BF,GACqB,yBACnB,UAAA,IAIF,MACE,UAAA,QACA,WAAA,MAEQ,2BACN,gBAAA,IAK2C,qDAC7C,UAAA,IAIgG,oGAChG,UAAA,IAEC,+GAEC,UAAA,IAEA,oHAEE,UAAA,IACA,MAAA,MAMN,wHACE,OACE,aAAA,EAAA,EAAA,EAAA,KACA,sBAAA,OAKc,wBAChB,UAAA,IACA,WAAA,KAIgB,qBACN,eACV,sBAAA,KAIF,kBACA,kBACE,MAAA,MAGY,2BAIA,kCAHA,4BAEA,6BADA,4BAGZ,WAAA","sourcesContent":["/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}\n","/*\n * SearXNG, A privacy-respecting, hackable metasearch engine\n *\n * To change the colors of the site, simple edit this variables\n */\n\n/// Light Theme\n:root {\n /// Base Colors\n --color-base-font: #444;\n --color-base-font-rgb: 68, 68, 68;\n --color-base-background: #fff;\n --color-base-background-mobile: #f2f5f8;\n --color-url-font: #334999;\n --color-url-visited-font: #9822c3;\n /// Header Colors\n --color-header-background: #fdfbff;\n --color-header-border: #ddd;\n /// Footer Colors\n --color-footer-background: #fdfbff;\n --color-footer-border: #ddd;\n /// Sidebar Colors\n --color-sidebar-border: #ddd;\n --color-sidebar-font: #000;\n --color-sidebar-background: #fff;\n /// BackToTop Colors\n --color-backtotop-font: #444;\n --color-backtotop-border: #ddd;\n --color-backtotop-background: #fff;\n /// Button Colors\n --color-btn-background: #3050ff;\n --color-btn-font: #fff;\n --color-show-btn-background: #bbb;\n --color-show-btn-font: #000;\n /// Search Input Colors\n --color-search-border: #bbb;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #fff;\n --color-search-font: #222;\n --color-search-background-hover: #3050ff;\n /// Modal Colors\n --color-error: #db3434;\n --color-error-background: lighten(#db3434, 40%);\n --color-warning: #dbba34;\n --color-warning-background: lighten(#dbba34, 40%);\n --color-success: #42db34;\n --color-success-background: lighten(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #3050ff;\n --color-categories-item-border-selected: #3050ff;\n /// Autocomplete Colors\n --color-autocomplete-font: #000;\n --color-autocomplete-border: #bbb;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #fff;\n --color-autocomplete-background-hover: #e3e3e3;\n /// Answer Colors\n --color-answer-font: #444; // same as --color-base-font\n --color-answer-background: #fff;\n /// Results Colors\n --color-result-background: #fff;\n --color-result-border: #ddd;\n --color-result-url-font: #000;\n --color-result-vim-selected: #f7f7f7;\n --color-result-vim-arrow: #000bbb;\n --color-result-description-highlight-font: #000;\n --color-result-link-font: #000bbb;\n --color-result-link-font-highlight: #000bbb;\n --color-result-link-visited-font: #9822c3;\n --color-result-publishdate-font: #777;\n --color-result-engines-font: #545454;\n --color-result-search-url-border: #ddd;\n --color-result-search-url-font: #000;\n // Images Colors\n --color-result-image-span-font: #444;\n --color-result-image-span-font-selected: #fff;\n --color-result-image-background: #fff;\n /// Settings Colors\n --color-settings-tr-hover: #ebebeb;\n --color-settings-engine-description-font: #545454;\n --color-settings-engine-group-background: #0001;\n /// Detail modal\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #242424;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #545454;\n --color-toolkit-kbd-font: #fff;\n --color-toolkit-kbd-background: #000;\n --color-toolkit-dialog-border: #ddd;\n --color-toolkit-dialog-background: #fff;\n --color-toolkit-tabs-label-border: #fff;\n --color-toolkit-tabs-section-border: #ddd;\n --color-toolkit-select-background: #e1e1e1;\n --color-toolkit-select-border: #ddd;\n --color-toolkit-select-background-hover: #bbb;\n --color-toolkit-input-text-font: #222;\n --color-toolkit-checkbox-onoff-off-background: #ddd;\n --color-toolkit-checkbox-onoff-on-background: #ddd;\n --color-toolkit-checkbox-onoff-on-mark-background: #3050ff;\n --color-toolkit-checkbox-onoff-on-mark-color: #fff;\n --color-toolkit-checkbox-onoff-off-mark-background: #aaa;\n --color-toolkit-checkbox-onoff-off-mark-color: #fff;\n --color-toolkit-checkbox-label-background: #ddd;\n --color-toolkit-checkbox-label-border: #ddd;\n --color-toolkit-checkbox-input-border: #3050ff;\n --color-toolkit-engine-tooltip-border: #ddd;\n --color-toolkit-engine-tooltip-background: #fff;\n --color-toolkit-loader-border: rgba(0, 0, 0, 0.2);\n --color-toolkit-loader-borderleft: rgba(255, 255, 255, 0);\n --color-doc-code: #300;\n --color-doc-code-background: #fdd;\n}\n\n.dark-themes() {\n /// Base Colors\n --color-base-font: #bbb;\n --color-base-font-rgb: 187, 187, 187;\n --color-base-background: #222428;\n --color-base-background-mobile: #222428;\n --color-url-font: #8af;\n --color-url-visited-font: #c09cd9;\n /// Header Colors\n --color-header-background: #1e1e22;\n --color-header-border: #333;\n /// Footer Colors\n --color-footer-background: #1e1e22;\n --color-footer-border: #333;\n /// Sidebar Colors\n --color-sidebar-border: #555;\n --color-sidebar-font: #fff;\n --color-sidebar-background: #292c34;\n /// BackToTop Colors\n --color-backtotop-font: #bbb;\n --color-backtotop-border: #333;\n --color-backtotop-background: #2b2e36;\n /// Button Colors\n --color-btn-background: #58f;\n --color-btn-font: #222;\n --color-show-btn-background: #555;\n --color-show-btn-font: #fff;\n /// Search Input Colors\n --color-search-border: #555;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #2b2e36;\n --color-search-font: #fff;\n --color-search-background-hover: #58f;\n /// Modal Colors\n --color-error: #f55b5b;\n --color-error-background: darken(#db3434, 40%);\n --color-warning: #f1d561;\n --color-warning-background: darken(#dbba34, 40%);\n --color-success: #79f56e;\n --color-success-background: darken(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #58f;\n --color-categories-item-border-selected: #58f;\n /// Autocomplete Colors\n --color-autocomplete-font: #fff;\n --color-autocomplete-border: #555;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #2b2e36;\n --color-autocomplete-background-hover: #1e1e22;\n /// Answer Colors\n --color-answer-font: #bbb; // same as --color-base-font\n --color-answer-background: #26292f;\n /// Results Colors\n --color-result-background: #26292f;\n --color-result-border: #333;\n --color-result-url-font: #fff;\n --color-result-vim-selected: #1f1f23cc;\n --color-result-vim-arrow: #8af;\n --color-result-description-highlight-font: #fff;\n --color-result-link-font: #8af;\n --color-result-link-font-highlight: #8af;\n --color-result-link-visited-font: #c09cd9;\n --color-result-publishdate-font: #888;\n --color-result-engines-font: #a4a4a4;\n --color-result-search-url-border: #555;\n --color-result-search-url-font: #fff;\n /// Detail modal : same as the light version\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #1a1a1c;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n // Images Colors\n --color-result-image-span-font: #bbb;\n --color-result-image-span-font-selected: #222;\n --color-result-image-background: #222;\n /// Settings Colors\n --color-settings-tr-hover: #2c2c32;\n --color-settings-engine-description-font: darken(#dcdcdc, 30%);\n --color-settings-engine-group-background: #1b1b21;\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #555;\n --color-toolkit-kbd-font: #000;\n --color-toolkit-kbd-background: #fff;\n --color-toolkit-dialog-border: #555;\n --color-toolkit-dialog-background: #1e1e22;\n --color-toolkit-tabs-label-border: #222;\n --color-toolkit-tabs-section-border: #555;\n --color-toolkit-select-background: #313338;\n --color-toolkit-select-border: #555;\n --color-toolkit-select-background-hover: #373b49;\n --color-toolkit-input-text-font: #fff;\n --color-toolkit-checkbox-onoff-off-background: #313338;\n --color-toolkit-checkbox-onoff-on-background: #313338;\n --color-toolkit-checkbox-onoff-on-mark-background: #58f;\n --color-toolkit-checkbox-onoff-on-mark-color: #222;\n --color-toolkit-checkbox-onoff-off-mark-background: #ddd;\n --color-toolkit-checkbox-onoff-off-mark-color: #222;\n --color-toolkit-checkbox-label-background: #222;\n --color-toolkit-checkbox-label-border: #333;\n --color-toolkit-checkbox-input-border: #58f;\n --color-toolkit-engine-tooltip-border: #333;\n --color-toolkit-engine-tooltip-background: #222;\n --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);\n --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);\n --color-doc-code: #fdd;\n --color-doc-code-background: #300;\n}\n\n/// Dark Theme (autoswitch based on device pref)\n@media (prefers-color-scheme: dark) {\n :root.theme-auto {\n .dark-themes();\n }\n}\n\n// Dark Theme by preferences\n:root.theme-dark {\n .dark-themes();\n}\n\n/// General Size\n@results-width: 45rem;\n@results-sidebar-width: 25rem;\n@results-offset: 10rem;\n@results-tablet-offset: 0.5rem;\n@results-gap: 5rem;\n@results-margin: 0.125rem;\n@result-padding: 1rem;\n@results-image-row-height: 12rem;\n@results-image-row-height-phone: 6rem;\n@search-width: 44rem;\n// heigh of #search, see detail.less\n@search-height: 7.6rem;\n\n/// Device Size\n/// @desktop > @tablet\n@tablet: 79.75em; // see https://github.com/searxng/searxng/issues/874\n@phone: 50em;\n@small-phone: 35em;\n@ultra-small-phone: 20rem;\n\n/// From style.less\n@stacked-bar-chart: rgb(0, 0, 0);\n\n/// Load fonts from this directory.\n@icon-font-path: \"../../../fonts/\";\n//** File name for all font files.\n@icon-font-name: \"glyphicons-halflings-regular\";\n//** Element ID within SVG icon file.\n@icon-font-svg-id: \"glyphicons_halflingsregular\";\n\n// decoration of the select HTML elements\n@select-light-svg-path: \"../svg/select-light.svg\";\n@select-dark-svg-path: \"../svg/select-dark.svg\";\n",".code-highlight pre {\n overflow: auto;\n background-color: inherit;\n color: inherit;\n border: inherit;\n}\n\n// stylelint-disable no-invalid-position-at-import-rule\n@import \"../generated/pygments.less\";\n","/*\n this file is generated automatically by searxng_extra/update/update_pygments.py\n using pygments version 2.14.0\n*/\n\n.code-highlight .linenos {\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n cursor: default;\n\n &::selection {\n background: transparent; /* WebKit/Blink Browsers */\n }\n &::-moz-selection {\n background: transparent; /* Gecko Browsers */\n }\n\n margin-right: 8px;\n text-align: right;\n}\n\n.code-highlight pre { line-height: 125%; }\n.code-highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight .hll { background-color: #ffffcc }\n.code-highlight { background: #f8f8f8; }\n.code-highlight .c { color: #3D7B7B; font-style: italic } /* Comment */\n.code-highlight .err { border: 1px solid #FF0000 } /* Error */\n.code-highlight .k { color: #008000; font-weight: bold } /* Keyword */\n.code-highlight .o { color: #666666 } /* Operator */\n.code-highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */\n.code-highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */\n.code-highlight .cp { color: #9C6500 } /* Comment.Preproc */\n.code-highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */\n.code-highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */\n.code-highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */\n.code-highlight .gd { color: #A00000 } /* Generic.Deleted */\n.code-highlight .ge { font-style: italic } /* Generic.Emph */\n.code-highlight .gr { color: #E40000 } /* Generic.Error */\n.code-highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */\n.code-highlight .gi { color: #008400 } /* Generic.Inserted */\n.code-highlight .go { color: #717171 } /* Generic.Output */\n.code-highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\n.code-highlight .gs { font-weight: bold } /* Generic.Strong */\n.code-highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\n.code-highlight .gt { color: #0044DD } /* Generic.Traceback */\n.code-highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\n.code-highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\n.code-highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\n.code-highlight .kp { color: #008000 } /* Keyword.Pseudo */\n.code-highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\n.code-highlight .kt { color: #B00040 } /* Keyword.Type */\n.code-highlight .m { color: #666666 } /* Literal.Number */\n.code-highlight .s { color: #BA2121 } /* Literal.String */\n.code-highlight .na { color: #687822 } /* Name.Attribute */\n.code-highlight .nb { color: #008000 } /* Name.Builtin */\n.code-highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */\n.code-highlight .no { color: #880000 } /* Name.Constant */\n.code-highlight .nd { color: #AA22FF } /* Name.Decorator */\n.code-highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */\n.code-highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */\n.code-highlight .nf { color: #0000FF } /* Name.Function */\n.code-highlight .nl { color: #767600 } /* Name.Label */\n.code-highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\n.code-highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */\n.code-highlight .nv { color: #19177C } /* Name.Variable */\n.code-highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\n.code-highlight .w { color: #bbbbbb } /* Text.Whitespace */\n.code-highlight .mb { color: #666666 } /* Literal.Number.Bin */\n.code-highlight .mf { color: #666666 } /* Literal.Number.Float */\n.code-highlight .mh { color: #666666 } /* Literal.Number.Hex */\n.code-highlight .mi { color: #666666 } /* Literal.Number.Integer */\n.code-highlight .mo { color: #666666 } /* Literal.Number.Oct */\n.code-highlight .sa { color: #BA2121 } /* Literal.String.Affix */\n.code-highlight .sb { color: #BA2121 } /* Literal.String.Backtick */\n.code-highlight .sc { color: #BA2121 } /* Literal.String.Char */\n.code-highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */\n.code-highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\n.code-highlight .s2 { color: #BA2121 } /* Literal.String.Double */\n.code-highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */\n.code-highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */\n.code-highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */\n.code-highlight .sx { color: #008000 } /* Literal.String.Other */\n.code-highlight .sr { color: #A45A77 } /* Literal.String.Regex */\n.code-highlight .s1 { color: #BA2121 } /* Literal.String.Single */\n.code-highlight .ss { color: #19177C } /* Literal.String.Symbol */\n.code-highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */\n.code-highlight .fm { color: #0000FF } /* Name.Function.Magic */\n.code-highlight .vc { color: #19177C } /* Name.Variable.Class */\n.code-highlight .vg { color: #19177C } /* Name.Variable.Global */\n.code-highlight .vi { color: #19177C } /* Name.Variable.Instance */\n.code-highlight .vm { color: #19177C } /* Name.Variable.Magic */\n.code-highlight .il { color: #666666 } /* Literal.Number.Integer.Long */\n","// other solution : http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/13857783#13857783\n\n// stylelint-disable no-descending-specificity\n\nhtml.no-js .hide_if_nojs {\n display: none;\n}\n\nhtml.js .show_if_nojs {\n display: none;\n}\n\n.center {\n text-align: center;\n}\n\n.right {\n float: right;\n}\n\n.left {\n float: left;\n}\n\n.invisible {\n display: none !important;\n}\n\n.list-unstyled {\n list-style-type: none;\n\n li {\n margin-top: 4px;\n margin-bottom: 4px;\n }\n}\n\n.danger {\n background-color: var(--color-error-background);\n}\n\n.warning {\n background: var(--color-warning-background);\n}\n\n.success {\n background: var(--color-success-background);\n}\n\n.badge {\n display: inline-block;\n color: var(--color-toolkit-badge-font);\n background-color: var(--color-toolkit-badge-background);\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n min-width: 10px;\n padding: 1px 5px;\n border-radius: 5px;\n}\n\n// kbd\nkbd {\n padding: 2px 4px;\n margin: 1px;\n font-size: 90%;\n color: var(--color-toolkit-kbd-font);\n background: var(--color-toolkit-kbd-background);\n}\n\n// table\ntable {\n width: 100%;\n\n &.striped {\n tr {\n border-bottom: 1px solid var(--color-settings-tr-hover);\n }\n }\n}\n\nth {\n padding: 0.4em;\n}\n\ntd {\n padding: 0 4px;\n}\n\ntr {\n &:hover {\n background: var(--color-settings-tr-hover) !important;\n }\n}\n\n// pre\n.pre() {\n display: block;\n font-size: 0.8em;\n word-break: break-all;\n margin: 0.1em;\n user-select: all;\n}\n\ndiv.selectable_url {\n display: block;\n border: 1px solid var(--color-result-search-url-border);\n padding: 4px;\n color: var(--color-result-search-url-font);\n margin: 0.1em;\n overflow: hidden;\n height: 1.2em;\n line-height: 1.2em;\n .rounded-corners-tiny;\n\n pre {\n .pre();\n }\n}\n\n// dialog\n.dialog() {\n position: relative;\n display: flex;\n padding: 1rem;\n margin: 0 0 1em 0;\n border: 1px solid var(--color-toolkit-dialog-border);\n .ltr-text-align-left();\n .rounded-corners;\n\n .close {\n .ltr-float-right();\n position: relative;\n top: -3px;\n color: inherit;\n font-size: 1.5em;\n }\n\n ul,\n ol,\n p {\n margin: 1px 0 0 0;\n }\n\n table {\n width: auto;\n }\n\n tr {\n vertical-align: text-top;\n\n &:hover {\n background: transparent !important;\n }\n }\n\n td {\n padding: 0 1em 0 0;\n padding-top: 0;\n .ltr-padding-right(1rem);\n padding-bottom: 0;\n .ltr-padding-left(0);\n }\n\n h4 {\n margin-top: 0.3em;\n margin-bottom: 0.3em;\n }\n}\n\n.dialog-error {\n .dialog();\n\n color: var(--color-error);\n background: var(--color-error-background);\n border-color: var(--color-error);\n}\n\n.dialog-warning {\n .dialog();\n\n color: var(--color-warning);\n background: var(--color-warning-background);\n border-color: var(--color-warning);\n}\n\n.dialog-modal {\n .dialog();\n\n display: block;\n background: var(--color-toolkit-dialog-background);\n position: fixed;\n top: 50%;\n left: 50%;\n margin: 0 auto;\n transform: translate(-50%, -50%);\n z-index: 10000000;\n\n h3 {\n margin-top: 0;\n }\n}\n\n// btn-collapse\n.btn-collapse {\n cursor: pointer;\n}\n\n//\n.scrollx {\n overflow-x: auto;\n overflow-y: hidden;\n display: block;\n padding: 0;\n margin: 0;\n border: none;\n}\n\n/* -- tabs -- */\n.tabs .tabs > label {\n font-size: 90%;\n}\n\nul.tabs {\n border-bottom: 1px solid var(--color-toolkit-tabs-section-border);\n list-style: none;\n padding-left: 0;\n\n li {\n display: flex;\n }\n}\n\n.tabs {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n min-width: 100%;\n\n & > * {\n order: 2;\n }\n\n & > input[type=radio] {\n display: none;\n }\n\n & > label,\n & > li > a {\n order: 1;\n padding: 0.7em;\n margin: 0 0.7em;\n letter-spacing: 0.5px;\n text-transform: uppercase;\n border: solid var(--color-toolkit-tabs-label-border);\n border-width: 0 0 2px 0;\n color: unset;\n\n .disable-user-select();\n\n cursor: pointer;\n\n &.active {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n }\n\n & > label:hover,\n & > li > a:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n\n & > section {\n min-width: 100%;\n padding: 0.7rem 0;\n box-sizing: border-box;\n border-top: 1px solid var(--color-toolkit-tabs-section-border);\n display: none;\n }\n\n // default selection\n & > label:last-of-type {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n letter-spacing: -0.1px;\n }\n\n & > section:last-of-type {\n display: block;\n }\n}\n\nhtml body .tabs > input:checked {\n ~ section {\n display: none;\n }\n\n ~ label {\n position: inherited;\n background: inherit;\n border-bottom: 2px solid transparent;\n font-weight: normal;\n color: inherit;\n\n &:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n }\n\n + label {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n\n + label + section {\n display: block;\n }\n}\n\n/* -- select -- */\nselect {\n height: 2.4rem;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n padding: 0.2rem !important;\n color: var(--color-search-font);\n font-size: 0.9rem;\n z-index: 2;\n\n &:hover,\n &:focus {\n cursor: pointer;\n }\n}\n\n@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {\n select {\n appearance: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n border-width: 0 2rem 0 0;\n border-color: transparent;\n background: data-uri('image/svg+xml;charset=UTF-8', @select-light-svg-path) no-repeat;\n background-position-x: calc(100% + 2rem);\n background-size: 2rem;\n background-origin: content-box;\n background-color: var(--color-toolkit-select-background);\n outline: medium none;\n text-overflow: ellipsis;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n\n option {\n background-color: var(--color-base-background);\n }\n }\n\n @media (prefers-color-scheme: dark) {\n html.theme-auto select,\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n }\n\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n}\n\n/* -- checkbox-onoff -- */\ninput.checkbox-onoff[type=\"checkbox\"] {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n cursor: pointer;\n display: inline-block;\n width: 2.5em;\n height: 0.7em;\n box-shadow: none !important;\n margin: 0 16px;\n border-radius: 10px;\n position: relative;\n\n /* focus & hover */\n &:focus,\n &:hover {\n outline: none;\n }\n\n &:focus::after {\n content: \"\";\n position: absolute;\n width: 3.5em;\n height: 1.65em;\n border: 1px solid var(--color-btn-background);\n border-radius: 12px;\n box-shadow: var(--color-btn-background) 0 0 3px;\n z-index: 10000;\n top: -0.55em;\n left: -0.6em;\n }\n\n &::before {\n position: absolute;\n top: -0.5em;\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: 0.75em;\n width: 1.875em;\n height: 1.875em;\n border-radius: 50%;\n }\n}\n\n/* check mark\nreversed-checkbox displays unchecked checkedboxes as checked, and vice versa.\nsee https://github.com/searxng/searxng/blob/3408d061aab9abc6168fec9bbc6deab71b236dac/searx/templates/simple/preferences.html#L313\n*/\ninput.checkbox-onoff[type=\"checkbox\"],\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"]:checked {\n background: var(--color-toolkit-checkbox-onoff-off-background);\n\n &::before {\n left: -0.5em;\n content: \"\\2715\";\n color: var(--color-toolkit-checkbox-onoff-off-mark-color);\n background: var(--color-toolkit-checkbox-onoff-off-mark-background);\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]:checked,\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"] {\n background: var(--color-toolkit-checkbox-onoff-on-background);\n\n &::before {\n left: calc(100% - 1.5em);\n content: \"\\2713\";\n color: var(--color-toolkit-checkbox-onoff-on-mark-color);\n background: var(--color-toolkit-checkbox-onoff-on-mark-background);\n }\n}\n\n/* -- checkbox -- */\n@supports (transform: rotate(-45deg)) {\n input[type=checkbox]:not(.checkbox-onoff) {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n\n width: 20px;\n height: 20px;\n cursor: pointer;\n position: relative;\n top: 0;\n left: 0;\n border: 2px solid var(--color-toolkit-checkbox-input-border);\n .rounded-corners(0.3em);\n\n &::after {\n content: '';\n width: 9px;\n height: 5px;\n position: absolute;\n top: 3px;\n left: 2px;\n border: 3px solid var(--color-toolkit-checkbox-label-border);\n border-top: none;\n border-right: none;\n background: transparent;\n opacity: 0;\n transform: rotate(-45deg);\n }\n\n &:checked::after {\n border-color: var(--color-toolkit-checkbox-input-border);\n opacity: 1;\n }\n }\n\n // disabled : can't be focused, show only the check mark\n input[type=checkbox][disabled]:not(.checkbox-onoff) {\n border: inherit;\n background-color: transparent !important;\n cursor: inherit;\n }\n\n // if not checked and possible to checked then display a \"light\" check mark on hover\n input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after {\n opacity: 0.5;\n }\n}\n\n@media screen and (max-width: @phone) {\n .tabs > label {\n width: 100%;\n }\n}\n\n/* -- loader -- */\n.loader,\n.loader::after {\n border-radius: 50%;\n width: 2em;\n height: 2em;\n}\n\n.loader {\n margin: 1em auto;\n font-size: 10px;\n position: relative;\n text-indent: -9999em;\n border-top: 0.5em solid var(--color-toolkit-loader-border);\n border-right: 0.5em solid var(--color-toolkit-loader-border);\n border-bottom: 0.5em solid var(--color-toolkit-loader-border);\n border-left: 0.5em solid var(--color-toolkit-loader-borderleft);\n -webkit-transform: translateZ(0);\n -ms-transform: translateZ(0);\n transform: translateZ(0);\n -webkit-animation: load8 1.2s infinite linear;\n animation: load8 1.2s infinite linear;\n}\n\n@-webkit-keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n/* -- engine-tooltip -- */\n.engine-tooltip {\n display: none;\n position: absolute;\n padding: 0.5rem 1rem;\n margin: 0 0 0 2rem;\n border: 1px solid var(--color-toolkit-engine-tooltip-border);\n background: var(--color-toolkit-engine-tooltip-background);\n font-size: 14px;\n font-weight: normal;\n z-index: 1000000;\n text-align: left;\n .rounded-corners;\n}\n\nth:hover .engine-tooltip,\ntd:hover .engine-tooltip,\n.engine-tooltip:hover {\n display: inline-block;\n}\n\n/* -- stacked bar chart -- */\n.stacked-bar-chart {\n margin: 0;\n padding: 0 0.125rem 0 4rem;\n width: 100%;\n width: -moz-available;\n width: -webkit-fill-available;\n width: fill;\n flex-direction: row;\n flex-wrap: nowrap;\n align-items: center;\n display: inline-flex;\n}\n\n.stacked-bar-chart-value {\n width: 3rem;\n display: inline-block;\n position: absolute;\n padding: 0 0.5rem;\n text-align: right;\n}\n\n.stacked-bar-chart-base {\n display: flex;\n flex-shrink: 0;\n flex-grow: 0;\n flex-basis: unset;\n}\n\n.stacked-bar-chart-median {\n .stacked-bar-chart-base();\n\n background: var(--color-base-font);\n border: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate80 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border: 1px solid rgba(var(--color-base-font-rgb), 0.3);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate95 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-bottom: 1px dotted rgba(var(--color-base-font-rgb), 0.5);\n padding: 0;\n}\n\n.stacked-bar-chart-rate100 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-left: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.4rem 0;\n width: 1px;\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n// Mixins\n.text-size-adjust (@property: 100%) {\n -webkit-text-size-adjust: @property;\n -ms-text-size-adjust: @property;\n -moz-text-size-adjust: @property;\n text-size-adjust: @property;\n}\n\n.rounded-corners (@radius: 10px) {\n border-radius: @radius;\n}\n\n.rounded-right-corners (@radius: 0 10px 10px 0) {\n border-radius: @radius;\n}\n\n.rounded-corners-tiny (@radius: 5px) {\n border-radius: @radius;\n}\n\n// disable user selection\n.disable-user-select () {\n -webkit-touch-callout: none;\n user-select: none;\n}\n\n.show-content-button() {\n padding: 5px 10px;\n .rounded-corners-tiny;\n background: var(--color-show-btn-background);\n color: var(--color-show-btn-font);\n cursor: pointer;\n\n &:hover {\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n }\n}\n",".ltr-left(@offset) {\n right: @offset;\n}\n\n.ltr-right(@offset) {\n left: @offset;\n}\n\n.ltr-margin-right(@offset) {\n margin-left: @offset;\n}\n\n.ltr-margin-left(@offset) {\n margin-right: @offset;\n}\n\n.ltr-border-right(@offset) {\n border-left: @offset;\n}\n\n.ltr-border-left(@offset) {\n border-right: @offset;\n}\n\n.ltr-padding-right(@offset) {\n padding-left: @offset;\n}\n\n.ltr-padding-left(@offset) {\n padding-right: @offset;\n}\n\n.ltr-float-left() {\n float: right;\n}\n\n.ltr-float-right() {\n float: left;\n}\n\n.ltr-text-align-right() {\n text-align: left;\n}\n\n.ltr-rounded-left-corners(@radius) {\n border-radius: 0 @radius @radius 0;\n}\n\n.ltr-rounded-top-left-corners(@radius) {\n border-radius: 0 @radius 0 0;\n}\n\n.ltr-rounded-bottom-left-corners(@radius) {\n border-radius: 0 0 @radius 0;\n}\n\n.ltr-rounded-right-corners(@radius) {\n border-radius: @radius 0 0 @radius;\n}\n\n.ltr-rounded-top-right-corners(@radius) {\n border-radius: @radius 0 0 0;\n}\n\n.ltr-rounded-bottom-right-corners(@radius) {\n border-radius: 0 0 0 @radius;\n}\n\n.ltr-text-align-left() {\n text-align: right;\n}\n\n.ltr-border-left-width(@offset) {\n border-right-width: @offset;\n}\n\n.ltr-border-right-width(@offset) {\n border-left-width: @offset;\n}\n\n.ltr-transform() {\n transform: scale(-1, 1);\n}\n\n@import \"style.less\";\n\n#q,\n#sidebar .infobox dt bdi {\n direction: rtl;\n}\n\n// URL are displayed LTR but align on the right\n#urls {\n direction: initial;\n text-align: right;\n\n .result .url_wrapper {\n justify-content: end;\n }\n}\n\n// Image flexbox\n#main_results div#results.only_template_images #urls {\n direction: rtl;\n}\n\n// Image detail\n#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p {\n direction: rtl;\n\n &.result-url {\n // Display URL using the LTR direction\n direction: ltr;\n\n span {\n // And put the label on the right\n direction: rtl;\n float: right;\n }\n }\n}\n\n// select HTML element\n@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {\n select {\n border-width: 0 0 0 2rem;\n background-position-x: -2rem;\n }\n}\n\n// vim hotkey helps is not translated\n#vim-hotkeys-help table {\n direction: ltr;\n text-align: left;\n}\n\n// Logo on the right\n#main_preferences h1,\n#main_stats h1 {\n background-position-x: 100%;\n}\n\n// patch of stats.less\n.bar-chart-serie1,\n.bar-chart-serie2 {\n float: right;\n}\n\n.engine-stats .engine-name,\n.engine-stats .engine-score,\n.engine-stats .result-count,\n.engine-stats .response-time,\n.engine-stats .engine-reliability {\n text-align: right;\n}\n","/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */\n\n.autocomplete {\n position: absolute;\n width: @search-width;\n max-height: 0;\n overflow-y: hidden;\n .ltr-text-align-left();\n\n .rounded-corners;\n\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background);\n }\n\n &:empty {\n display: none;\n }\n\n > ul {\n list-style-type: none;\n margin: 0;\n padding: 0;\n\n > li {\n cursor: pointer;\n padding: 0.5rem 1rem;\n\n &.active,\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background-hover);\n\n a:active,\n a:focus,\n a:hover {\n text-decoration: none;\n }\n }\n\n &.locked {\n cursor: inherit;\n }\n }\n }\n\n &.open {\n display: block;\n background-color: var(--color-autocomplete-background);\n color: var(--color-autocomplete-font);\n max-height: 32rem;\n overflow-y: auto;\n z-index: 100;\n margin-top: 3.5rem;\n border-radius: 0.8rem;\n box-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n\n &:empty {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n .autocomplete {\n width: 100%;\n\n > ul > li {\n padding: 1rem;\n }\n }\n}\n","#main_results #results.image-detail-open.only_template_images {\n width: min(98%, 59.25rem) !important;\n}\n\n#main_results #results.only_template_images.image-detail-open #backToTop {\n .ltr-left(56.75rem) !important;\n .ltr-right(inherit);\n}\n\narticle.result-images .detail {\n display: none;\n}\n\n#results.image-detail-open article.result-images[data-vim-selected] .detail {\n display: flex;\n flex-direction: column;\n position: fixed;\n .ltr-left(60rem);\n .ltr-right(0);\n top: @search-height;\n transition: top 0.064s ease-in 0s;\n bottom: 0;\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-background);\n z-index: 10000;\n padding: 4rem 3rem 3rem 3rem;\n\n a.result-images-source {\n display: block;\n flex: 1;\n text-align: left;\n width: 100%;\n border: none;\n text-decoration: none;\n\n img {\n padding: 0;\n margin: 0;\n border: none;\n object-fit: contain;\n width: inherit;\n height: inherit;\n max-width: 100%;\n min-height: inherit;\n max-height: calc(100vh - 25rem - 7rem);\n background: inherit;\n }\n }\n\n .result-images-labels {\n color: var(--color-result-detail-font);\n max-height: 16rem;\n min-height: 16rem;\n\n hr {\n border-top: 1px solid var(--color-result-detail-hr);\n border-bottom: none;\n }\n\n h4 {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n font-size: 0.9rem;\n }\n\n p {\n color: var(--color-result-detail-label-font);\n font-size: 0.9rem;\n\n span {\n display: inline-block;\n width: 12rem;\n }\n }\n\n h4,\n p,\n a {\n .ltr-text-align-left();\n }\n\n p.result-content {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-url {\n white-space: nowrap;\n overflow-x: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-content:hover,\n p.result-url:hover {\n position: relative;\n overflow: inherit !important;\n background: var(--color-result-detail-background);\n text-overflow: inherit !important;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-result-detail-link);\n }\n\n a:hover {\n text-decoration: underline;\n }\n }\n\n a.result-detail-close {\n top: 1rem;\n .ltr-left(1rem);\n padding: 0.4rem;\n }\n\n a.result-detail-previous {\n top: 1rem;\n .ltr-right(6rem);\n // center the icon by moving it slightly on the left\n padding-top: 0.4rem;\n .ltr-padding-right(0.5rem);\n padding-bottom: 0.4rem;\n .ltr-padding-left(0.3rem);\n }\n\n a.result-detail-next {\n top: 1rem;\n .ltr-right(2rem);\n padding: 0.4rem;\n }\n\n a.result-detail-close,\n a.result-detail-next,\n a.result-detail-previous {\n border-radius: 50%;\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n position: absolute;\n filter: opacity(40%);\n z-index: 2000002;\n\n span {\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n text-align: center;\n }\n }\n\n a.result-detail-next,\n a.result-detail-previous {\n span::before {\n // vertical center small icons\n vertical-align: sub;\n }\n }\n\n a.result-detail-close,\n a.result-detail-close:visited,\n a.result-detail-close:hover,\n a.result-detail-close:active,\n a.result-detail-previous,\n a.result-detail-previous:visited,\n a.result-detail-previous:hover,\n a.result-detail-previous:active,\n a.result-detail-next,\n a.result-detail-next:visited,\n a.result-detail-next:hover,\n a.result-detail-next:active {\n color: var(--color-result-detail-font);\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-font);\n }\n\n a.result-detail-close:focus,\n a.result-detail-close:hover,\n a.result-detail-previous:focus,\n a.result-detail-previous:hover,\n a.result-detail-next:focus,\n a.result-detail-next:hover {\n filter: opacity(80%);\n }\n\n .loader {\n position: absolute;\n top: 1rem;\n .ltr-right(50%);\n border-top: 0.5em solid var(--color-result-detail-loader-border);\n border-right: 0.5em solid var(--color-result-detail-loader-border);\n border-bottom: 0.5em solid var(--color-result-detail-loader-border);\n border-left: 0.5em solid var(--color-result-detail-loader-borderleft);\n }\n}\n\n#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail {\n top: 0;\n\n a.result-images-source img {\n max-height: calc(100vh - 25rem);\n }\n}\n\n@media screen and (max-width: @tablet) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n\n a.result-images-source {\n display: flex;\n flex-direction: column;\n justify-content: center;\n\n img {\n width: 100%;\n max-height: calc(100vh - 24rem);\n }\n }\n\n a.result-detail-next {\n .ltr-right(1rem);\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n padding: 1rem;\n\n a.result-images-source img {\n width: 100%;\n max-height: calc(100vh - 20rem);\n margin: 0;\n }\n\n .result-images-labels p span {\n width: inherit;\n .ltr-margin-right(1rem);\n }\n }\n}\n",".dialog-modal {\n animation-name: dialogmodal;\n animation-duration: 0.13s;\n\n @keyframes dialogmodal {\n 0% {\n opacity: 0;\n }\n\n 50% {\n opacity: 0.5;\n transform: translate(-50%, -50%) scale(1.05);\n }\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]::before {\n transition: left 0.25s;\n}\n","iframe[src^=\"https://w.soundcloud.com\"] {\n height: 120px;\n}\n\niframe[src^=\"https://www.deezer.com\"] {\n // The real size is 92px, but 94px are needed to avoid an inner scrollbar of\n // the embedded HTML.\n height: 94px;\n}\n\niframe[src^=\"https://www.mixcloud.com\"] {\n // the embedded player from mixcloud has some quirks: initial there is an\n // issue with an image URL that is blocked since it is an a Cross-Origin\n // request. The alternative text (Mixcloud Logo then cause an\n // scrollbar in the inner of the iframe we can't avoid. Another quirk comes\n // when pressing the play button, somtimes the shown player has an height of\n // 200px, somtimes 250px.\n height: 250px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer\"] {\n // show playlist\n height: 350px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer/track\"] {\n // hide playlist\n height: 120px;\n}\n\niframe[src^=\"https://genius.com/songs\"] {\n height: 65px;\n}\n",".info-page {\n code {\n font-family: monospace;\n color: var(--color-doc-code);\n background-color: var(--color-doc-code-background);\n padding: 2px 5px;\n .rounded-corners(5px);\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n.stats_endpoint {\n .github-issue-button {\n display: block;\n padding: 8px 16px;\n font-family: sans-serif;\n font-size: 16px;\n color: white;\n background-color: #238636;\n border: #2ea043;\n border-radius: 10px !important;\n box-shadow: rgba(0, 0, 0, 0) 0 0 0 0;\n }\n\n .github-issue-button:hover {\n background-color: #2ea043;\n }\n\n .issue-hide {\n display: none;\n }\n\n input[type=checked] {\n position: absolute;\n }\n\n label {\n margin: 1rem 1rem 1rem 0;\n }\n\n .step_content {\n margin: 1rem 1rem 1rem 2rem;\n }\n\n .step1,\n .step2 {\n visibility: hidden;\n }\n\n .step1_delay {\n transition: visibility 0s linear 4s;\n }\n\n #step1:checked ~ .step1,\n #step2:checked ~ .step2 {\n visibility: visible;\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.engine-stats {\n border-spacing: 0;\n border-collapse: collapse;\n\n tr td,\n tr th {\n border-bottom: 1px solid var(--color-result-border);\n padding: 0.25rem;\n }\n\n table.engine-tooltip {\n border-spacing: 0;\n border-collapse: collapse;\n\n td,\n th {\n border: none;\n }\n }\n\n .engine-name {\n width: 20rem;\n }\n\n .engine-score {\n width: 7rem;\n text-align: right;\n }\n\n .engine-reliability {\n text-align: right;\n }\n}\n\ntable.engine-error th.engine-error-type,\ntable.engine-error td.engine-error-type,\nfailed-test {\n width: 10rem;\n}\n\n.engine-errors {\n margin-top: 3rem;\n\n table.engine-error {\n max-width: 1280px;\n margin: 1rem 0 3rem 0;\n border: 1px solid var(--color-result-border);\n .ltr-text-align-left();\n\n tr th,\n tr td {\n padding: 0.5rem;\n }\n\n & span.log_parameters {\n border-right: 1px solid solid var(--color-result-border);\n padding: 0 1rem 0 0;\n margin: 0 0 0 0.5rem;\n }\n }\n}\n\n.bar-chart-value {\n width: 3em;\n display: inline-block;\n text-align: right;\n padding-right: 0.5rem;\n}\n\n.bar-chart-graph {\n width: calc(100% - 5rem);\n display: inline-block;\n}\n\n.bar-chart-bar {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n}\n\n.bar-chart-serie1 {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n float: left;\n}\n\n.bar-chart-serie2 {\n border: 3px solid #deb15b;\n margin: 1px 0;\n float: left;\n}\n\n.bar0 {\n width: 0;\n border: 0;\n}\n\n.generate-bar(100);\n\n.generate-bar(@n, @i: 1) when (@i =< @n) {\n .bar@{i} {\n width: (@i * 100% / @n);\n }\n .generate-bar(@n, (@i + 1));\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.osm-map-box {\n height: 300px;\n width: 100%;\n margin: 10px 0;\n}\n","#main_index {\n margin-top: 26vh;\n}\n\n.index {\n text-align: center;\n\n .title {\n background: url('../img/searxng.png') no-repeat;\n min-height: 4rem;\n margin: 4rem auto;\n background-position: center;\n background-size: contain;\n }\n\n h1 {\n font-size: 4em;\n visibility: hidden;\n }\n\n #search,\n #search_header {\n margin: 0 auto;\n background: inherit;\n border: inherit;\n padding: 0;\n display: block;\n }\n\n .search_filters {\n display: block;\n margin: 1em 0;\n }\n\n .category label {\n padding: 6px 10px;\n border-bottom: initial !important;\n }\n}\n\n@media screen and (max-width: @tablet) {\n div.title {\n h1 {\n font-size: 1em;\n }\n }\n\n #main_index {\n margin-top: 6em;\n }\n}\n","#tab-content-query table td,\n#tab-content-query table th {\n .ltr-text-align-right() !important;\n height: 3rem;\n}\n\n#main_preferences {\n form {\n width: 100%;\n }\n\n fieldset {\n margin: 8px;\n border: none;\n }\n\n legend {\n margin: 0;\n padding: 5px 0 0 0;\n display: block;\n .ltr-float-left();\n width: 300px;\n }\n\n .value {\n margin: 0;\n padding: 0;\n .ltr-float-left();\n width: 15em;\n\n select,\n input[type=\"text\"] {\n font-size: inherit !important;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n }\n\n select {\n width: 14rem;\n }\n\n input[type=\"text\"] {\n width: 13.25rem;\n color: var(--color-toolkit-input-text-font);\n border: none;\n background: none repeat scroll 0 0 var(--color-toolkit-select-background);\n padding: 0.2rem 0.4rem;\n height: 2rem;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n }\n\n select:focus,\n input:focus {\n outline: none;\n box-shadow: 0 0 1px 1px var(--color-btn-background);\n }\n }\n\n .description {\n margin: 0;\n padding: 5px 0 0 0;\n .ltr-float-right();\n width: 50%;\n color: var(--color-settings-engine-description-font);\n font-size: 90%;\n }\n\n table {\n border-collapse: collapse;\n }\n\n table td {\n text-align: center;\n }\n\n .category {\n .ltr-margin-right(0.5rem);\n\n label {\n border: 2px solid transparent;\n padding: 0.2rem 0.4rem;\n .rounded-corners-tiny;\n }\n }\n\n .category input[type=\"checkbox\"]:checked + label {\n border: 2px solid var(--color-categories-item-border-selected);\n }\n\n table.table_engines {\n td {\n height: 3.75rem;\n }\n\n th.name {\n /* stylelint-disable */\n label {\n cursor: pointer;\n }\n /* stylelint-enable */\n\n .engine-tooltip {\n margin-top: 1.8rem;\n .ltr-left(calc((100% - 85em) / 2 + 10em));\n max-width: 40rem;\n\n .engine-description {\n margin-top: 0.5rem;\n }\n }\n }\n\n .engine-group {\n .ltr-text-align-left();\n font-weight: normal;\n background: var(--color-settings-engine-group-background);\n }\n\n .name,\n .shortcut {\n .ltr-text-align-left();\n }\n }\n\n table.cookies {\n width: 100%;\n direction: ltr;\n\n th,\n td {\n text-align: left;\n font-family: monospace;\n font-size: 1rem;\n padding: 0.5em;\n vertical-align: top;\n }\n\n td:first-child {\n word-break: keep-all;\n width: 14rem;\n padding-right: 1rem;\n }\n\n td:last-child {\n word-break: break-all;\n }\n\n & > tbody > tr:nth-child(even) > th,\n & > tbody > tr:nth-child(even) > td {\n background-color: var(--color-settings-tr-hover);\n }\n }\n\n .preferences_back {\n background: none repeat scroll 0 0 var(--color-btn-background);\n color: var(--color-btn-font);\n border: 0 none;\n .rounded-corners;\n\n cursor: pointer;\n display: inline-block;\n margin: 2px 4px;\n padding: 0.7em;\n\n a {\n color: var(--color-settings-return-font);\n }\n\n a::first-letter {\n text-transform: uppercase;\n }\n }\n\n div.selectable_url {\n pre {\n width: 100%;\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n .preferences_back {\n clear: both;\n }\n\n .engine-tooltip {\n .ltr-left(10em) !important;\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*/\n\n#search {\n padding: 0;\n margin: 0;\n}\n\n#search_header {\n padding-top: 1.5em;\n .ltr-padding-right(2em);\n .ltr-padding-left(@results-offset - 3rem);\n margin: 0;\n background: var(--color-header-background);\n border-bottom: 1px solid var(--color-header-border);\n display: grid;\n column-gap: 1.2rem;\n row-gap: 1rem;\n grid-template-columns: 3rem 1fr;\n grid-template-areas:\n \"logo search\"\n \"spacer categories\";\n}\n\n.category {\n display: inline-block;\n position: relative;\n .ltr-margin-right(1rem);\n padding: 0;\n\n input {\n display: none;\n }\n\n label {\n svg {\n padding-right: 0.2rem;\n }\n\n cursor: pointer;\n padding: 0.2rem 0;\n display: inline-flex;\n text-transform: capitalize;\n font-size: 0.9em;\n border-bottom: 2px solid transparent;\n .disable-user-select;\n\n div.category_name {\n margin: auto 0;\n }\n }\n\n input[type=\"checkbox\"]:checked + label {\n color: var(--color-categories-item-selected-font);\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n}\n\n#search_logo {\n grid-area: logo;\n display: flex;\n align-items: center;\n justify-content: center;\n\n svg {\n flex: 1;\n width: 30px;\n height: 30px;\n margin: 0.5rem 0 auto 0;\n }\n}\n\n.search_categories {\n grid-area: categories;\n\n .help {\n display: none;\n }\n\n &:hover .help {\n display: block;\n position: absolute;\n background: var(--color-base-background);\n padding: 1rem 0.6rem 0.6rem 0;\n z-index: 1000;\n width: 100%;\n left: -0.1rem;\n }\n}\n\n#search_view {\n grid-area: search;\n}\n\n.search_box {\n border-radius: 0.8rem;\n width: @search-width;\n display: inline-flex;\n flex-direction: row;\n white-space: nowrap;\n box-shadow: var(--color-search-shadow);\n}\n\n#clear_search {\n display: block;\n border-collapse: separate;\n box-sizing: border-box;\n width: 1.8rem;\n margin: 0;\n padding: 0.8rem 0.2rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 10000;\n\n &:hover {\n color: var(--color-search-background-hover);\n }\n\n &.empty * {\n display: none;\n }\n}\n\nhtml.no-js #clear_search.hide_if_nojs {\n display: none;\n}\n\n#q,\n#send_search {\n display: block;\n margin: 0;\n padding: 0.8rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 2;\n}\n\n#q {\n width: 100%;\n .ltr-padding-left(1rem);\n .ltr-padding-right(0) !important;\n .ltr-rounded-left-corners(0.8rem);\n}\n\n#q::-ms-clear,\n#q::-webkit-search-cancel-button {\n display: none;\n}\n\n#send_search {\n .ltr-rounded-right-corners(0.8rem);\n\n &:hover {\n cursor: pointer;\n background-color: var(--color-search-background-hover);\n color: var(--color-search-background);\n }\n}\n\n.no-js #clear_search,\n.no-js #send_search {\n width: auto !important;\n .ltr-border-left(1px solid var(--color-search-border));\n}\n\n.search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset + 0.6rem);\n display: flex;\n overflow-x: auto;\n overscroll-behavior-inline: contain;\n\n select {\n background-color: inherit;\n\n &:hover,\n &:focus {\n color: var(--color-base-font);\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n #search_header {\n padding: 1.5em @results-tablet-offset 0 @results-tablet-offset;\n column-gap: @results-tablet-offset;\n }\n\n .search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-tablet-offset + 3rem);\n }\n\n #categories {\n font-size: 90%;\n clear: both;\n\n .checkbox_container {\n margin: auto;\n margin-top: 2px;\n }\n }\n}\n\n@media screen and (max-width: @tablet) and (hover: none) {\n #main_index,\n #main_results {\n #categories_container {\n width: max-content;\n\n .category {\n display: inline-block;\n width: auto;\n }\n }\n\n #categories {\n width: 100%;\n .ltr-text-align-left();\n overflow-x: scroll;\n overflow-y: hidden;\n -webkit-overflow-scrolling: touch;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #search_header {\n width: 100%;\n margin: 0;\n padding: 0.1rem 0 0 0;\n column-gap: 0;\n row-gap: 0;\n grid-template-areas:\n \"logo search\"\n \"categories categories\";\n }\n\n .search_logo {\n padding: 0;\n }\n\n .search_box {\n width: 98%;\n display: flex;\n margin: 0 auto;\n }\n\n #q {\n width: 100%;\n flex: 1;\n }\n\n .search_filters {\n margin: 0;\n }\n\n .category {\n display: inline-block;\n width: auto;\n margin: 0;\n\n label {\n padding: 1rem !important;\n margin: 0 !important;\n\n svg {\n display: none;\n }\n }\n }\n\n #search_view:focus-within {\n display: block;\n background-color: var(--color-search-background);\n position: absolute;\n top: 0;\n height: 100%;\n width: 100%;\n z-index: 10000;\n\n .search_box {\n border-bottom: 1px solid var(--color-search-border);\n width: 100%;\n border-radius: 0;\n box-shadow: none;\n\n #send_search {\n .ltr-margin-right(0) !important; // Delete when send_search button is disabled on mobile.\n }\n\n * {\n border: none;\n border-radius: 0;\n box-shadow: none;\n }\n }\n }\n\n #main_results #q:placeholder-shown ~ #send_search {\n .ltr-margin-right(2.6rem);\n transition: margin 0.1s;\n }\n}\n\n@media screen and (max-width: @ultra-small-phone) {\n #search_header {\n grid-template-areas:\n \"search search\"\n \"categories categories\";\n }\n\n #search_logo {\n display: none;\n }\n}\n\n#categories {\n .disable-user-select;\n\n &::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n}\n\n#categories_container {\n position: relative;\n}\n","/*\n--center-page-width overrides the less variable @results-width when the results are centered\nsee the CSS rules for #results in style.less ( grid-template-columns and gap).\n\nIn this file, the --center-page-width values comes from the Oscar theme (Bootstrap 3).\n\nAll rules starts with \".center-aligment-yes #main_results\" to be enabled only\non the /search URL and when the \"center alignment\" preference is enabled.\n*/\n\n@media screen and (min-width: @phone) {\n .center-aligment-yes #main_results {\n --center-page-width: 48rem;\n }\n}\n\n@media screen and (min-width: 62rem) {\n .center-aligment-yes #main_results {\n --center-page-width: 60rem;\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n --center-page-width: 73rem;\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // any change must be reset in @media screen and (min-width: @tablet) { ... }\n .center-aligment-yes #main_results {\n #results {\n grid-template-columns: 60% calc(40% - @results-gap);\n margin-left: 0;\n margin-right: 0;\n }\n\n #urls {\n .ltr-margin-left(3rem);\n }\n\n #sidebar {\n .ltr-margin-right(1rem);\n }\n\n #backToTop {\n .ltr-left(calc(60% + 1rem));\n }\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n display: flex;\n flex-direction: column;\n align-items: center;\n\n #search {\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n }\n\n #search_header {\n grid-template-columns: calc(50% - 4.5rem - var(--center-page-width) / 2) 3rem var(--center-page-width);\n grid-template-areas: \"na logo search\" \"na spacer categories\";\n column-gap: 1.2rem; // from search.less\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n }\n\n .search_filters {\n .ltr-margin-left(0.5rem);\n width: var(--center-page-width);\n }\n\n #results {\n // from style.less (when screen width = @tablet, reset layout from tablet)\n .ltr-margin-right(2rem);\n .ltr-margin-left(@results-offset);\n //\n\n &.only_template_images,\n &.image-detail-open {\n // * grid-template-columns and .ltr-margin-left are set in style.less\n // * With .image-detail-open.only_template_images, the width is set in detail.less\n // * #results is going to be centered because of the #main_results rules,\n // align-self aligns the results on the left or right according to the language.\n align-self: flex-start;\n }\n\n &:not(.only_template_images):not(.image-detail-open) {\n // the gap is set in style.less\n .ltr-margin-left(1.5rem);\n grid-template-columns: calc(var(--center-page-width) - @results-gap - @results-sidebar-width) @results-sidebar-width;\n\n #backToTop {\n .ltr-left(calc(50% - @results-sidebar-width - @results-gap + 1rem + var(--center-page-width) / 2));\n }\n }\n\n .result .content {\n max-width: inherit;\n }\n }\n\n // from style.less (when screen width = @tablet, reset layout from tablet)\n #urls {\n .ltr-margin-left(0);\n }\n\n #sidebar {\n .ltr-margin-right(0);\n }\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*\n* To convert \"style.less\" to \"style.css\" run: $make styles\n*/\n\n// stylelint-disable no-descending-specificity\n\n@import (inline) \"../../node_modules/normalize.css/normalize.css\";\n@import \"definitions.less\";\n@import \"mixins.less\";\n@import \"code.less\";\n@import \"toolkit.less\";\n@import \"autocomplete.less\";\n@import \"detail.less\";\n@import \"animations.less\";\n@import \"embedded.less\";\n@import \"info.less\";\n@import \"new_issue.less\";\n@import \"stats.less\";\n@import \"result_templates.less\";\n\n// for index.html template\n@import \"index.less\";\n\n// for preferences.html template\n@import \"preferences.less\";\n\n// Search-Field\n@import \"search.less\";\n\n// to center the results\n@import \"style-center.less\";\n\n// ion-icon\n.ion-icon {\n display: inline-block;\n vertical-align: bottom;\n line-height: 1;\n text-decoration: inherit;\n .ltr-transform();\n}\n\n.ion-icon-small {\n width: 1rem;\n height: 1rem;\n .ion-icon;\n}\n\n.ion-icon-big {\n width: 1.5rem;\n height: 1.5rem;\n .ion-icon;\n}\n\n// Main LESS-Code\nhtml {\n font-family: sans-serif;\n font-size: 0.9em;\n .text-size-adjust;\n\n color: var(--color-base-font);\n background-color: var(--color-base-background);\n padding: 0;\n margin: 0;\n}\n\nbody,\nmain {\n padding: 0;\n margin: 0;\n}\n\nbody {\n display: flex;\n flex-direction: column;\n height: 100vh;\n margin: 0;\n}\n\nmain {\n width: 100%;\n margin-bottom: 2rem;\n flex: 1;\n}\n\n.page_with_header {\n margin: 2em auto;\n width: 85em;\n}\n\nfooter {\n clear: both;\n min-height: 4rem;\n padding: 1rem 0;\n width: 100%;\n text-align: center;\n background-color: var(--color-footer-background);\n border-top: 1px solid var(--color-footer-border);\n overflow: hidden;\n\n p {\n font-size: 0.9em;\n }\n}\n\n.page_with_header .logo {\n height: 40px;\n}\n\ninput[type=\"submit\"],\n#results button[type=\"submit\"] {\n padding: 0.7rem;\n display: inline-block;\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n .rounded-corners;\n\n border: 0;\n cursor: pointer;\n}\n\na {\n text-decoration: none;\n color: var(--color-url-font);\n\n &:visited {\n color: var(--color-url-visited-font);\n\n .highlight {\n color: var(--color-url-visited-font);\n }\n }\n}\n\narticle[data-vim-selected] {\n background: var(--color-result-vim-selected);\n .ltr-border-left(0.2rem solid var(--color-result-vim-arrow));\n .ltr-rounded-right-corners(10px);\n}\n\narticle.result-images[data-vim-selected] {\n background: var(--color-result-vim-arrow);\n border: none;\n .rounded-corners;\n\n .image_thumbnail {\n filter: opacity(60%);\n }\n\n span.title,\n span.source {\n color: var(--color-result-image-span-font-selected);\n }\n}\n\narticle[data-vim-selected].category-videos,\narticle[data-vim-selected].category-news,\narticle[data-vim-selected].category-map,\narticle[data-vim-selected].category-music,\narticle[data-vim-selected].category-files,\narticle[data-vim-selected].category-social {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n}\n\n.result {\n margin: @results-margin 0;\n padding: @result-padding;\n .ltr-border-left(0.2rem solid transparent);\n\n h3 {\n font-size: 1.2rem;\n word-wrap: break-word;\n margin: 0.4rem 0 0.4rem 0;\n padding: 0;\n\n a {\n color: var(--color-result-link-font);\n font-weight: normal;\n font-size: 1.1em;\n\n &:visited {\n color: var(--color-result-link-visited-font);\n }\n\n &:focus,\n &:hover {\n text-decoration: underline;\n border: none;\n outline: none;\n }\n }\n }\n\n .cache_link,\n .proxyfied_link {\n font-size: 0.9em !important;\n }\n\n .content,\n .stat {\n font-size: 0.9em;\n margin: 0;\n padding: 0;\n max-width: 54em;\n word-wrap: break-word;\n line-height: 1.24;\n\n .highlight {\n color: var(--color-result-description-highlight-font);\n background: inherit;\n font-weight: bold;\n }\n }\n\n .altlink a {\n font-size: 0.9em;\n margin: 0 10px 0 0;\n .show-content-button;\n }\n\n .codelines {\n .highlight {\n color: inherit;\n background: inherit;\n font-weight: normal;\n }\n }\n\n .url_wrapper {\n display: flex;\n font-size: 1rem;\n color: var(--color-result-url-font);\n flex-wrap: nowrap;\n overflow: hidden;\n flex-direction: row;\n margin: 0;\n padding: 0;\n\n .url_o1 {\n white-space: nowrap;\n flex-shrink: 1;\n }\n\n .url_o1::after {\n content: \" \";\n width: 1ch;\n display: inline-block;\n }\n\n .url_o2 {\n overflow: hidden;\n white-space: nowrap;\n flex-basis: content;\n flex-grow: 0;\n flex-shrink: 1;\n text-align: right;\n\n .url_i2 {\n float: right;\n }\n }\n }\n\n .published_date,\n .result_length,\n .result_author,\n .result_shipping,\n .result_source_country {\n font-size: 0.8em;\n color: var(--color-result-publishdate-font);\n }\n\n .result_price {\n font-size: 1.2em;\n color: var(--color-result-description-highlight-font);\n }\n\n img {\n &.thumbnail {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 20rem;\n height: unset; // remove heigth value that was needed for lazy loading\n }\n\n &.image {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 7rem;\n max-height: 7rem;\n object-fit: scale-down;\n object-position: right top;\n }\n }\n\n .break {\n clear: both;\n }\n}\n\n.result-paper {\n .attributes {\n display: table;\n border-spacing: 0.125rem;\n\n div {\n display: table-row;\n\n span {\n font-size: 0.9rem;\n margin-top: 0.25rem;\n display: table-cell;\n\n time {\n font-size: 0.9rem;\n }\n }\n\n span:first-child {\n color: var(--color-base-font);\n min-width: 10rem;\n }\n\n span:nth-child(2) {\n color: var(--color-result-publishdate-font);\n }\n }\n }\n\n .content {\n margin-top: 0.25rem;\n }\n\n .comments {\n font-size: 0.9rem;\n margin: 0.25rem 0 0 0;\n padding: 0;\n word-wrap: break-word;\n line-height: 1.24;\n font-style: italic;\n }\n}\n\n.template_group_images {\n display: flex;\n flex-wrap: wrap;\n}\n\n.template_group_images::after {\n flex-grow: 10;\n content: \"\";\n}\n\n.category-videos,\n.category-news,\n.category-map,\n.category-music,\n.category-files,\n.category-social {\n border: 1px solid var(--color-result-border);\n margin: 1rem @results-tablet-offset 0 @results-tablet-offset !important;\n .rounded-corners;\n}\n\n.category-social .image {\n width: auto !important;\n min-width: 48px;\n min-height: 48px;\n padding: 0 5px 25px 0 !important;\n}\n\n.audio-control audio {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.embedded-content iframe {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.result-videos .content {\n overflow: hidden;\n}\n\n.result-videos .embedded-video iframe {\n width: 100%;\n aspect-ratio: 16 / 9;\n padding: 10px 0 0 0;\n}\n\n@supports not (aspect-ratio: 1 / 1) {\n // support older browsers which do not have aspect-ratio\n // https://caniuse.com/?search=aspect-ratio\n .result-videos .embedded-video iframe {\n height: calc(@results-width * 9 / 16);\n }\n}\n\n.engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n color: var(--color-result-engines-font);\n\n span {\n font-size: smaller;\n margin-top: 0;\n margin-bottom: 0;\n .ltr-margin-right(0.5rem);\n .ltr-margin-left(0);\n }\n}\n\n.small_font {\n font-size: 0.8em;\n}\n\n.highlight {\n color: var(--color-result-link-font-highlight);\n background: inherit;\n}\n\n.empty_element {\n font-style: italic;\n}\n\n.result-images {\n flex-grow: 1;\n padding: 0.5rem 0.5rem 3rem 0.5rem;\n margin: 0.25rem;\n border: none !important;\n height: @results-image-row-height;\n\n & > a {\n position: relative;\n }\n\n img {\n margin: 0;\n padding: 0;\n border: none;\n height: 100%;\n width: 100%;\n object-fit: cover;\n vertical-align: bottom;\n background: var(--color-result-image-background);\n }\n\n span.title,\n span.source {\n display: block;\n position: absolute;\n\n width: 100%;\n font-size: 0.9rem;\n color: var(--color-result-image-span-font);\n padding: 0.5rem 0 0 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n span.source {\n padding: 1.8rem 0 0 0;\n font-size: 0.7rem;\n }\n}\n\n.result-map {\n img.image {\n .ltr-float-right() !important;\n height: 100px !important;\n width: auto !important;\n }\n\n table {\n font-size: 0.9em;\n width: auto;\n border-collapse: separate;\n border-spacing: 0 0.35rem;\n\n th {\n font-weight: inherit;\n width: 17rem;\n vertical-align: top;\n .ltr-text-align-left();\n }\n\n td {\n vertical-align: top;\n .ltr-text-align-left();\n }\n }\n}\n\n.hidden {\n display: none !important;\n}\n\n#results {\n margin-top: 1rem;\n .ltr-margin-right(2rem);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset);\n display: grid;\n grid-template-columns: @results-width @results-sidebar-width;\n grid-template-rows: min-content min-content 1fr min-content;\n gap: 0 @results-gap;\n grid-template-areas:\n \"corrections sidebar\"\n \"answers sidebar\"\n \"urls sidebar\"\n \"pagination sidebar\";\n}\n\n#results #sidebar *:first-child,\n#results #urls *:first-child {\n margin-top: 0;\n}\n\n#urls {\n padding: 0;\n grid-area: urls;\n}\n\n#suggestions {\n .wrapper {\n display: flex;\n flex-flow: column;\n justify-content: flex-end;\n\n form {\n display: inline-block;\n flex: 1 1 50%;\n }\n }\n}\n\n#suggestions,\n#infoboxes {\n input {\n padding: 0;\n margin: 3px;\n font-size: 0.9em;\n display: inline-block;\n background: transparent;\n color: var(--color-result-search-url-font);\n cursor: pointer;\n width: calc(100%);\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: left;\n }\n\n input[type=\"submit\"],\n .infobox .url a {\n color: var(--color-result-link-font);\n text-decoration: none;\n font-size: 0.9rem;\n\n &:hover {\n text-decoration: underline;\n }\n }\n}\n\n#corrections {\n grid-area: corrections;\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1em 0;\n\n h4,\n input[type=\"submit\"] {\n display: inline-block;\n padding: 0.5rem;\n margin: 0.5rem;\n }\n\n input[type=\"submit\"] {\n font-size: 0.8rem;\n .rounded-corners-tiny;\n }\n}\n\n#suggestions .title,\n#search_url .title,\n#apis .title {\n margin: 2em 0 0.5em 0;\n color: var(--color-base-font);\n}\n\n#answers {\n grid-area: answers;\n background: var(--color-answer-background);\n padding: @result-padding;\n margin: 1rem 0;\n margin-top: 0;\n color: var(--color-answer-font);\n .rounded-corners;\n\n h4 {\n display: none;\n }\n\n span {\n overflow-wrap: anywhere;\n }\n}\n\n#infoboxes {\n form {\n min-width: 210px;\n }\n}\n\n#sidebar {\n grid-area: sidebar;\n word-wrap: break-word;\n color: var(--color-sidebar-font);\n\n .infobox {\n margin: 10px 0 10px;\n border: 1px solid var(--color-sidebar-border);\n padding: 1rem;\n font-size: 0.9em;\n .rounded-corners;\n\n h2 {\n margin: 0 0 0.5em 0;\n }\n\n img {\n max-width: 100%;\n max-height: 12em;\n display: block;\n margin: 0 auto;\n padding: 0;\n }\n\n dt {\n font-weight: bold;\n }\n\n .attributes {\n dl {\n margin: 0.5em 0;\n }\n\n dt {\n display: inline;\n margin-top: 0.5em;\n .ltr-margin-right(0.25em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n padding: 0;\n }\n\n dd {\n display: inline;\n margin: 0.5em 0;\n padding: 0;\n }\n }\n\n input {\n font-size: 1em;\n }\n\n br {\n clear: both;\n }\n\n .attributes,\n .urls {\n clear: both;\n }\n }\n}\n\n#search_url {\n margin-top: 8px;\n\n div.selectable_url {\n pre {\n width: 200em;\n }\n }\n}\n\n#links_on_top {\n position: absolute;\n .ltr-right(1.8rem);\n .ltr-text-align-right();\n top: 2.2rem;\n padding: 0;\n border: 0;\n display: flex;\n align-items: center;\n font-size: 1em;\n color: var(--color-search-font);\n\n a {\n display: flex;\n align-items: center;\n margin-left: 1em;\n\n svg {\n font-size: 1.2em;\n .ltr-margin-right(0.125em);\n }\n }\n\n a,\n a:link *,\n a:hover *,\n a:visited *,\n a:active * {\n color: var(--color-search-font);\n }\n}\n\n#pagination {\n grid-area: pagination;\n\n br {\n clear: both;\n }\n}\n\n#apis {\n margin-top: 8px;\n clear: both;\n}\n\n#backToTop {\n border: 1px solid var(--color-backtotop-border);\n margin: 0;\n padding: 0;\n font-size: 1em;\n background: var(--color-backtotop-background);\n position: fixed;\n bottom: 8rem;\n .ltr-left(@results-width + @results-offset + (0.5 * @results-gap - 1.2em));\n transition: opacity 0.5s;\n opacity: 0;\n .rounded-corners;\n\n a {\n display: block;\n margin: 0;\n padding: 0.7em;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-backtotop-font);\n }\n}\n\n#results.scrolling #backToTop {\n opacity: 1;\n}\n\n/*\n tablet layout\n*/\n\n.results-tablet() {\n #links_on_top {\n span {\n display: none;\n }\n }\n\n .page_with_header {\n margin: 2rem 0.5rem;\n width: auto;\n }\n\n #infoboxes {\n position: inherit;\n max-width: inherit;\n\n .infobox {\n clear: both;\n\n img {\n .ltr-float-left();\n max-width: 10em;\n margin-top: 0.5em;\n .ltr-margin-right(0.5em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n }\n }\n }\n\n #sidebar {\n margin: 0 @results-tablet-offset @results-margin @results-tablet-offset;\n padding: 0;\n float: none;\n border: none;\n width: auto;\n\n input {\n border: 0;\n }\n }\n\n #apis {\n display: none;\n }\n\n #search_url {\n display: none;\n }\n\n .result {\n .thumbnail {\n max-width: 98%;\n }\n\n .url {\n span.url {\n display: block;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n width: 100%;\n }\n }\n\n .engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n padding: 0 0 3px 0;\n }\n }\n\n .result-images {\n border-bottom: none !important;\n }\n\n .image_result {\n max-width: 98%;\n\n img {\n max-width: 98%;\n }\n }\n\n #backToTop {\n display: none;\n }\n\n #pagination {\n margin: 2rem 0 0 0 !important;\n }\n\n #main_results div#results {\n margin: 1rem auto 0 auto;\n justify-content: center;\n display: grid;\n grid-template-columns: @results-width;\n grid-template-rows: min-content min-content min-content 1fr min-content min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n }\n}\n\n@media screen and (max-width: calc(@tablet - 0.5px)) {\n #links_on_top {\n span {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: 52rem) {\n body.results_endpoint {\n #links_on_top {\n .link_on_top_about,\n .link_on_top_donate {\n display: none;\n }\n }\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // when .center-aligment-yes, see style-center.less\n // the media query includes \"min-width: @phone\"\n // because the phone layout includes the tablet layout unconditionally.\n .center-aligment-no {\n .results-tablet();\n }\n}\n\n/* Misc */\n\n#main_results div#results.only_template_images {\n margin: 1rem @results-tablet-offset 0 @results-tablet-offset;\n display: grid;\n grid-template-columns: 100%;\n grid-template-rows: min-content min-content min-content 1fr min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n\n #sidebar {\n display: none;\n }\n\n #urls {\n margin: 0;\n display: flex;\n flex-wrap: wrap;\n }\n\n #urls::after {\n flex-grow: 10;\n content: \"\";\n }\n\n #backToTop {\n .ltr-left(auto);\n .ltr-right(1rem);\n }\n\n #pagination {\n .ltr-margin-right(4rem);\n }\n}\n\n/*\n phone layout\n*/\n\n@media screen and (max-width: @phone) {\n // based on the tablet layout\n .results-tablet();\n\n html {\n background-color: var(--color-base-background-mobile);\n }\n\n #main_results div#results {\n grid-template-columns: 100%;\n margin: 1rem 0 0 0;\n }\n\n #links_on_top {\n top: 0.8rem;\n .ltr-right(0.7rem);\n }\n\n #main_index #links_on_top {\n top: 0.5rem;\n .ltr-right(0.5rem);\n }\n\n #results {\n margin: 0;\n padding: 0;\n }\n\n #pagination {\n margin: 2rem 1rem 0 1rem !important;\n }\n\n article[data-vim-selected] {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n }\n\n .result {\n background: var(--color-result-background);\n margin: 1rem 0;\n }\n\n .result-images {\n margin: 0;\n height: @results-image-row-height-phone;\n background: var(--color-base-background-mobile);\n }\n\n .infobox {\n border: none !important;\n background-color: var(--color-sidebar-background);\n }\n\n .result-paper {\n .attributes {\n display: block;\n\n div {\n display: block;\n\n span {\n display: inline;\n }\n\n span:first-child {\n font-weight: bold;\n }\n\n span:nth-child(2) {\n .ltr-margin-left(0.5rem);\n }\n }\n }\n }\n}\n\n/*\n small-phone layout\n*/\n\n@media screen and (max-width: @small-phone) {\n .result-videos {\n img.thumbnail {\n float: none !important;\n }\n\n .content {\n overflow: inherit;\n }\n }\n}\n\npre code {\n white-space: pre-wrap;\n}\n"]} \ No newline at end of file +{"version":3,"sources":["node_modules/normalize.css/normalize.css","src/less/definitions.less","src/less/code.less","src/generated/pygments.less","src/less/toolkit.less","src/less/mixins.less","src/less/style-rtl.less","src/less/autocomplete.less","src/less/detail.less","src/less/animations.less","src/less/embedded.less","src/less/info.less","src/less/new_issue.less","src/less/stats.less","src/less/result_templates.less","src/less/index.less","src/less/preferences.less","src/less/search.less","src/less/style-center.less","src/less/style.less"],"names":[],"mappings":"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,aAGF,eACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,MACE,MAAA,EACA,OAAA,EV/FD,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,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","sourcesContent":["/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}\n","/*\n * SearXNG, A privacy-respecting, hackable metasearch engine\n *\n * To change the colors of the site, simple edit this variables\n */\n\n/// Light Theme\n:root {\n /// Base Colors\n --color-base-font: #444;\n --color-base-font-rgb: 68, 68, 68;\n --color-base-background: #fff;\n --color-base-background-mobile: #f2f5f8;\n --color-url-font: #334999;\n --color-url-visited-font: #9822c3;\n /// Header Colors\n --color-header-background: #fdfbff;\n --color-header-border: #ddd;\n /// Footer Colors\n --color-footer-background: #fdfbff;\n --color-footer-border: #ddd;\n /// Sidebar Colors\n --color-sidebar-border: #ddd;\n --color-sidebar-font: #000;\n --color-sidebar-background: #fff;\n /// BackToTop Colors\n --color-backtotop-font: #444;\n --color-backtotop-border: #ddd;\n --color-backtotop-background: #fff;\n /// Button Colors\n --color-btn-background: #3050ff;\n --color-btn-font: #fff;\n --color-show-btn-background: #bbb;\n --color-show-btn-font: #000;\n /// Search Input Colors\n --color-search-border: #bbb;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #fff;\n --color-search-font: #222;\n --color-search-background-hover: #3050ff;\n /// Modal Colors\n --color-error: #db3434;\n --color-error-background: lighten(#db3434, 40%);\n --color-warning: #dbba34;\n --color-warning-background: lighten(#dbba34, 40%);\n --color-success: #42db34;\n --color-success-background: lighten(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #3050ff;\n --color-categories-item-border-selected: #3050ff;\n /// Autocomplete Colors\n --color-autocomplete-font: #000;\n --color-autocomplete-border: #bbb;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #fff;\n --color-autocomplete-background-hover: #e3e3e3;\n /// Answer Colors\n --color-answer-font: #444; // same as --color-base-font\n --color-answer-background: #fff;\n /// Results Colors\n --color-result-background: #fff;\n --color-result-border: #ddd;\n --color-result-url-font: #000;\n --color-result-vim-selected: #f7f7f7;\n --color-result-vim-arrow: #000bbb;\n --color-result-description-highlight-font: #000;\n --color-result-link-font: #000bbb;\n --color-result-link-font-highlight: #000bbb;\n --color-result-link-visited-font: #9822c3;\n --color-result-publishdate-font: #777;\n --color-result-engines-font: #545454;\n --color-result-search-url-border: #ddd;\n --color-result-search-url-font: #000;\n // Images Colors\n --color-result-image-span-font: #444;\n --color-result-image-span-font-selected: #fff;\n --color-result-image-background: #fff;\n /// Settings Colors\n --color-settings-tr-hover: #ebebeb;\n --color-settings-engine-description-font: #545454;\n --color-settings-engine-group-background: #0001;\n /// Detail modal\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #242424;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #545454;\n --color-toolkit-kbd-font: #fff;\n --color-toolkit-kbd-background: #000;\n --color-toolkit-dialog-border: #ddd;\n --color-toolkit-dialog-background: #fff;\n --color-toolkit-tabs-label-border: #fff;\n --color-toolkit-tabs-section-border: #ddd;\n --color-toolkit-select-background: #e1e1e1;\n --color-toolkit-select-border: #ddd;\n --color-toolkit-select-background-hover: #bbb;\n --color-toolkit-input-text-font: #222;\n --color-toolkit-checkbox-onoff-off-background: #ddd;\n --color-toolkit-checkbox-onoff-on-background: #ddd;\n --color-toolkit-checkbox-onoff-on-mark-background: #3050ff;\n --color-toolkit-checkbox-onoff-on-mark-color: #fff;\n --color-toolkit-checkbox-onoff-off-mark-background: #aaa;\n --color-toolkit-checkbox-onoff-off-mark-color: #fff;\n --color-toolkit-checkbox-label-background: #ddd;\n --color-toolkit-checkbox-label-border: #ddd;\n --color-toolkit-checkbox-input-border: #3050ff;\n --color-toolkit-engine-tooltip-border: #ddd;\n --color-toolkit-engine-tooltip-background: #fff;\n --color-toolkit-loader-border: rgba(0, 0, 0, 0.2);\n --color-toolkit-loader-borderleft: rgba(255, 255, 255, 0);\n --color-doc-code: #300;\n --color-doc-code-background: #fdd;\n}\n\n.dark-themes() {\n /// Base Colors\n --color-base-font: #bbb;\n --color-base-font-rgb: 187, 187, 187;\n --color-base-background: #222428;\n --color-base-background-mobile: #222428;\n --color-url-font: #8af;\n --color-url-visited-font: #c09cd9;\n /// Header Colors\n --color-header-background: #1e1e22;\n --color-header-border: #333;\n /// Footer Colors\n --color-footer-background: #1e1e22;\n --color-footer-border: #333;\n /// Sidebar Colors\n --color-sidebar-border: #555;\n --color-sidebar-font: #fff;\n --color-sidebar-background: #292c34;\n /// BackToTop Colors\n --color-backtotop-font: #bbb;\n --color-backtotop-border: #333;\n --color-backtotop-background: #2b2e36;\n /// Button Colors\n --color-btn-background: #58f;\n --color-btn-font: #222;\n --color-show-btn-background: #555;\n --color-show-btn-font: #fff;\n /// Search Input Colors\n --color-search-border: #555;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #2b2e36;\n --color-search-font: #fff;\n --color-search-background-hover: #58f;\n /// Modal Colors\n --color-error: #f55b5b;\n --color-error-background: darken(#db3434, 40%);\n --color-warning: #f1d561;\n --color-warning-background: darken(#dbba34, 40%);\n --color-success: #79f56e;\n --color-success-background: darken(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #58f;\n --color-categories-item-border-selected: #58f;\n /// Autocomplete Colors\n --color-autocomplete-font: #fff;\n --color-autocomplete-border: #555;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #2b2e36;\n --color-autocomplete-background-hover: #1e1e22;\n /// Answer Colors\n --color-answer-font: #bbb; // same as --color-base-font\n --color-answer-background: #26292f;\n /// Results Colors\n --color-result-background: #26292f;\n --color-result-border: #333;\n --color-result-url-font: #fff;\n --color-result-vim-selected: #1f1f23cc;\n --color-result-vim-arrow: #8af;\n --color-result-description-highlight-font: #fff;\n --color-result-link-font: #8af;\n --color-result-link-font-highlight: #8af;\n --color-result-link-visited-font: #c09cd9;\n --color-result-publishdate-font: #888;\n --color-result-engines-font: #a4a4a4;\n --color-result-search-url-border: #555;\n --color-result-search-url-font: #fff;\n /// Detail modal : same as the light version\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #1a1a1c;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n // Images Colors\n --color-result-image-span-font: #bbb;\n --color-result-image-span-font-selected: #222;\n --color-result-image-background: #222;\n /// Settings Colors\n --color-settings-tr-hover: #2c2c32;\n --color-settings-engine-description-font: darken(#dcdcdc, 30%);\n --color-settings-engine-group-background: #1b1b21;\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #555;\n --color-toolkit-kbd-font: #000;\n --color-toolkit-kbd-background: #fff;\n --color-toolkit-dialog-border: #555;\n --color-toolkit-dialog-background: #1e1e22;\n --color-toolkit-tabs-label-border: #222;\n --color-toolkit-tabs-section-border: #555;\n --color-toolkit-select-background: #313338;\n --color-toolkit-select-border: #555;\n --color-toolkit-select-background-hover: #373b49;\n --color-toolkit-input-text-font: #fff;\n --color-toolkit-checkbox-onoff-off-background: #313338;\n --color-toolkit-checkbox-onoff-on-background: #313338;\n --color-toolkit-checkbox-onoff-on-mark-background: #58f;\n --color-toolkit-checkbox-onoff-on-mark-color: #222;\n --color-toolkit-checkbox-onoff-off-mark-background: #ddd;\n --color-toolkit-checkbox-onoff-off-mark-color: #222;\n --color-toolkit-checkbox-label-background: #222;\n --color-toolkit-checkbox-label-border: #333;\n --color-toolkit-checkbox-input-border: #58f;\n --color-toolkit-engine-tooltip-border: #333;\n --color-toolkit-engine-tooltip-background: #222;\n --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);\n --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);\n --color-doc-code: #fdd;\n --color-doc-code-background: #300;\n}\n\n/// Dark Theme (autoswitch based on device pref)\n@media (prefers-color-scheme: dark) {\n :root.theme-auto {\n .dark-themes();\n }\n}\n\n// Dark Theme by preferences\n:root.theme-dark {\n .dark-themes();\n}\n\n/// General Size\n@results-width: 45rem;\n@results-sidebar-width: 25rem;\n@results-offset: 10rem;\n@results-tablet-offset: 0.5rem;\n@results-gap: 5rem;\n@results-margin: 0.125rem;\n@result-padding: 1rem;\n@results-image-row-height: 12rem;\n@results-image-row-height-phone: 6rem;\n@search-width: 44rem;\n// heigh of #search, see detail.less\n@search-height: 7.6rem;\n\n/// Device Size\n/// @desktop > @tablet\n@tablet: 79.75em; // see https://github.com/searxng/searxng/issues/874\n@phone: 50em;\n@small-phone: 35em;\n@ultra-small-phone: 20rem;\n\n/// From style.less\n@stacked-bar-chart: rgb(0, 0, 0);\n\n/// Load fonts from this directory.\n@icon-font-path: \"../../../fonts/\";\n//** File name for all font files.\n@icon-font-name: \"glyphicons-halflings-regular\";\n//** Element ID within SVG icon file.\n@icon-font-svg-id: \"glyphicons_halflingsregular\";\n\n// decoration of the select HTML elements\n@select-light-svg-path: \"../svg/select-light.svg\";\n@select-dark-svg-path: \"../svg/select-dark.svg\";\n",".code-highlight pre {\n overflow: auto;\n background-color: inherit;\n color: inherit;\n border: inherit;\n}\n\n// stylelint-disable no-invalid-position-at-import-rule\n@import \"../generated/pygments.less\";\n","/*\n this file is generated automatically by searxng_extra/update/update_pygments.py\n using pygments version 2.14.0\n*/\n\n.code-highlight .linenos {\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n cursor: default;\n\n &::selection {\n background: transparent; /* WebKit/Blink Browsers */\n }\n &::-moz-selection {\n background: transparent; /* Gecko Browsers */\n }\n\n margin-right: 8px;\n text-align: right;\n}\n\n.code-highlight pre { line-height: 125%; }\n.code-highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight .hll { background-color: #ffffcc }\n.code-highlight { background: #f8f8f8; }\n.code-highlight .c { color: #3D7B7B; font-style: italic } /* Comment */\n.code-highlight .err { border: 1px solid #FF0000 } /* Error */\n.code-highlight .k { color: #008000; font-weight: bold } /* Keyword */\n.code-highlight .o { color: #666666 } /* Operator */\n.code-highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */\n.code-highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */\n.code-highlight .cp { color: #9C6500 } /* Comment.Preproc */\n.code-highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */\n.code-highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */\n.code-highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */\n.code-highlight .gd { color: #A00000 } /* Generic.Deleted */\n.code-highlight .ge { font-style: italic } /* Generic.Emph */\n.code-highlight .gr { color: #E40000 } /* Generic.Error */\n.code-highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */\n.code-highlight .gi { color: #008400 } /* Generic.Inserted */\n.code-highlight .go { color: #717171 } /* Generic.Output */\n.code-highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\n.code-highlight .gs { font-weight: bold } /* Generic.Strong */\n.code-highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\n.code-highlight .gt { color: #0044DD } /* Generic.Traceback */\n.code-highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\n.code-highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\n.code-highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\n.code-highlight .kp { color: #008000 } /* Keyword.Pseudo */\n.code-highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\n.code-highlight .kt { color: #B00040 } /* Keyword.Type */\n.code-highlight .m { color: #666666 } /* Literal.Number */\n.code-highlight .s { color: #BA2121 } /* Literal.String */\n.code-highlight .na { color: #687822 } /* Name.Attribute */\n.code-highlight .nb { color: #008000 } /* Name.Builtin */\n.code-highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */\n.code-highlight .no { color: #880000 } /* Name.Constant */\n.code-highlight .nd { color: #AA22FF } /* Name.Decorator */\n.code-highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */\n.code-highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */\n.code-highlight .nf { color: #0000FF } /* Name.Function */\n.code-highlight .nl { color: #767600 } /* Name.Label */\n.code-highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\n.code-highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */\n.code-highlight .nv { color: #19177C } /* Name.Variable */\n.code-highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\n.code-highlight .w { color: #bbbbbb } /* Text.Whitespace */\n.code-highlight .mb { color: #666666 } /* Literal.Number.Bin */\n.code-highlight .mf { color: #666666 } /* Literal.Number.Float */\n.code-highlight .mh { color: #666666 } /* Literal.Number.Hex */\n.code-highlight .mi { color: #666666 } /* Literal.Number.Integer */\n.code-highlight .mo { color: #666666 } /* Literal.Number.Oct */\n.code-highlight .sa { color: #BA2121 } /* Literal.String.Affix */\n.code-highlight .sb { color: #BA2121 } /* Literal.String.Backtick */\n.code-highlight .sc { color: #BA2121 } /* Literal.String.Char */\n.code-highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */\n.code-highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\n.code-highlight .s2 { color: #BA2121 } /* Literal.String.Double */\n.code-highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */\n.code-highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */\n.code-highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */\n.code-highlight .sx { color: #008000 } /* Literal.String.Other */\n.code-highlight .sr { color: #A45A77 } /* Literal.String.Regex */\n.code-highlight .s1 { color: #BA2121 } /* Literal.String.Single */\n.code-highlight .ss { color: #19177C } /* Literal.String.Symbol */\n.code-highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */\n.code-highlight .fm { color: #0000FF } /* Name.Function.Magic */\n.code-highlight .vc { color: #19177C } /* Name.Variable.Class */\n.code-highlight .vg { color: #19177C } /* Name.Variable.Global */\n.code-highlight .vi { color: #19177C } /* Name.Variable.Instance */\n.code-highlight .vm { color: #19177C } /* Name.Variable.Magic */\n.code-highlight .il { color: #666666 } /* Literal.Number.Integer.Long */\n","// other solution : http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/13857783#13857783\n\n// stylelint-disable no-descending-specificity\n\nhtml.no-js .hide_if_nojs {\n display: none;\n}\n\nhtml.js .show_if_nojs {\n display: none;\n}\n\n.center {\n text-align: center;\n}\n\n.right {\n float: right;\n}\n\n.left {\n float: left;\n}\n\n.invisible {\n display: none !important;\n}\n\n.list-unstyled {\n list-style-type: none;\n\n li {\n margin-top: 4px;\n margin-bottom: 4px;\n }\n}\n\n.danger {\n background-color: var(--color-error-background);\n}\n\n.warning {\n background: var(--color-warning-background);\n}\n\n.success {\n background: var(--color-success-background);\n}\n\n.badge {\n display: inline-block;\n color: var(--color-toolkit-badge-font);\n background-color: var(--color-toolkit-badge-background);\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n min-width: 10px;\n padding: 1px 5px;\n border-radius: 5px;\n}\n\n// kbd\nkbd {\n padding: 2px 4px;\n margin: 1px;\n font-size: 90%;\n color: var(--color-toolkit-kbd-font);\n background: var(--color-toolkit-kbd-background);\n}\n\n// table\ntable {\n width: 100%;\n\n &.striped {\n tr {\n border-bottom: 1px solid var(--color-settings-tr-hover);\n }\n }\n}\n\nth {\n padding: 0.4em;\n}\n\ntd {\n padding: 0 4px;\n}\n\ntr {\n &:hover {\n background: var(--color-settings-tr-hover) !important;\n }\n}\n\n// pre\n.pre() {\n display: block;\n font-size: 0.8em;\n word-break: break-all;\n margin: 0.1em;\n user-select: all;\n}\n\ndiv.selectable_url {\n display: block;\n border: 1px solid var(--color-result-search-url-border);\n padding: 4px;\n color: var(--color-result-search-url-font);\n margin: 0.1em;\n overflow: hidden;\n height: 1.2em;\n line-height: 1.2em;\n .rounded-corners-tiny;\n\n pre {\n .pre();\n }\n}\n\n// dialog\n.dialog() {\n position: relative;\n display: flex;\n padding: 1rem;\n margin: 0 0 1em 0;\n border: 1px solid var(--color-toolkit-dialog-border);\n .ltr-text-align-left();\n .rounded-corners;\n\n .close {\n .ltr-float-right();\n position: relative;\n top: -3px;\n color: inherit;\n font-size: 1.5em;\n }\n\n ul,\n ol,\n p {\n margin: 1px 0 0 0;\n }\n\n table {\n width: auto;\n }\n\n tr {\n vertical-align: text-top;\n\n &:hover {\n background: transparent !important;\n }\n }\n\n td {\n padding: 0 1em 0 0;\n padding-top: 0;\n .ltr-padding-right(1rem);\n padding-bottom: 0;\n .ltr-padding-left(0);\n }\n\n h4 {\n margin-top: 0.3em;\n margin-bottom: 0.3em;\n }\n}\n\n.dialog-error {\n .dialog();\n\n color: var(--color-error);\n background: var(--color-error-background);\n border-color: var(--color-error);\n}\n\n.dialog-warning {\n .dialog();\n\n color: var(--color-warning);\n background: var(--color-warning-background);\n border-color: var(--color-warning);\n}\n\n.dialog-modal {\n .dialog();\n\n display: block;\n background: var(--color-toolkit-dialog-background);\n position: fixed;\n top: 50%;\n left: 50%;\n margin: 0 auto;\n transform: translate(-50%, -50%);\n z-index: 10000000;\n\n h3 {\n margin-top: 0;\n }\n}\n\n// btn-collapse\n.btn-collapse {\n cursor: pointer;\n}\n\n//\n.scrollx {\n overflow-x: auto;\n overflow-y: hidden;\n display: block;\n padding: 0;\n margin: 0;\n border: none;\n}\n\n/* -- tabs -- */\n.tabs .tabs > label {\n font-size: 90%;\n}\n\nul.tabs {\n border-bottom: 1px solid var(--color-toolkit-tabs-section-border);\n list-style: none;\n padding-left: 0;\n\n li {\n display: flex;\n }\n}\n\n.tabs {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n min-width: 100%;\n\n & > * {\n order: 2;\n }\n\n & > input[type=radio] {\n display: none;\n }\n\n & > label,\n & > li > a {\n order: 1;\n padding: 0.7em;\n margin: 0 0.7em;\n letter-spacing: 0.5px;\n text-transform: uppercase;\n border: solid var(--color-toolkit-tabs-label-border);\n border-width: 0 0 2px 0;\n color: unset;\n\n .disable-user-select();\n\n cursor: pointer;\n\n &.active {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n }\n\n & > label:hover,\n & > li > a:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n\n & > section {\n min-width: 100%;\n padding: 0.7rem 0;\n box-sizing: border-box;\n border-top: 1px solid var(--color-toolkit-tabs-section-border);\n display: none;\n }\n\n // default selection\n & > label:last-of-type {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n letter-spacing: -0.1px;\n }\n\n & > section:last-of-type {\n display: block;\n }\n}\n\nhtml body .tabs > input:checked {\n ~ section {\n display: none;\n }\n\n ~ label {\n position: inherited;\n background: inherit;\n border-bottom: 2px solid transparent;\n font-weight: normal;\n color: inherit;\n\n &:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n }\n\n + label {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n\n + label + section {\n display: block;\n }\n}\n\n/* -- select -- */\nselect {\n height: 2.4rem;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n padding: 0.2rem !important;\n color: var(--color-search-font);\n font-size: 0.9rem;\n z-index: 2;\n\n &:hover,\n &:focus {\n cursor: pointer;\n }\n}\n\n@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {\n select {\n appearance: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n border-width: 0 2rem 0 0;\n border-color: transparent;\n background: data-uri('image/svg+xml;charset=UTF-8', @select-light-svg-path) no-repeat;\n background-position-x: calc(100% + 2rem);\n background-size: 2rem;\n background-origin: content-box;\n background-color: var(--color-toolkit-select-background);\n outline: medium none;\n text-overflow: ellipsis;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n\n option {\n background-color: var(--color-base-background);\n }\n }\n\n @media (prefers-color-scheme: dark) {\n html.theme-auto select,\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n }\n\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n}\n\n/* -- checkbox-onoff -- */\ninput.checkbox-onoff[type=\"checkbox\"] {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n cursor: pointer;\n display: inline-block;\n width: 2.5em;\n height: 0.7em;\n box-shadow: none !important;\n margin: 0 16px;\n border-radius: 10px;\n position: relative;\n\n /* focus & hover */\n &:focus,\n &:hover {\n outline: none;\n }\n\n &:focus::after {\n content: \"\";\n position: absolute;\n width: 3.5em;\n height: 1.65em;\n border: 1px solid var(--color-btn-background);\n border-radius: 12px;\n box-shadow: var(--color-btn-background) 0 0 3px;\n z-index: 10000;\n top: -0.55em;\n left: -0.6em;\n }\n\n &::before {\n position: absolute;\n top: -0.5em;\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: 0.75em;\n width: 1.875em;\n height: 1.875em;\n border-radius: 50%;\n }\n}\n\n/* check mark\nreversed-checkbox displays unchecked checkedboxes as checked, and vice versa.\nsee https://github.com/searxng/searxng/blob/3408d061aab9abc6168fec9bbc6deab71b236dac/searx/templates/simple/preferences.html#L313\n*/\ninput.checkbox-onoff[type=\"checkbox\"],\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"]:checked {\n background: var(--color-toolkit-checkbox-onoff-off-background);\n\n &::before {\n left: -0.5em;\n content: \"\\2715\";\n color: var(--color-toolkit-checkbox-onoff-off-mark-color);\n background: var(--color-toolkit-checkbox-onoff-off-mark-background);\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]:checked,\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"] {\n background: var(--color-toolkit-checkbox-onoff-on-background);\n\n &::before {\n left: calc(100% - 1.5em);\n content: \"\\2713\";\n color: var(--color-toolkit-checkbox-onoff-on-mark-color);\n background: var(--color-toolkit-checkbox-onoff-on-mark-background);\n }\n}\n\n/* -- checkbox -- */\n@supports (transform: rotate(-45deg)) {\n input[type=checkbox]:not(.checkbox-onoff) {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n\n width: 20px;\n height: 20px;\n cursor: pointer;\n position: relative;\n top: 0;\n left: 0;\n border: 2px solid var(--color-toolkit-checkbox-input-border);\n .rounded-corners(0.3em);\n\n &::after {\n content: '';\n width: 9px;\n height: 5px;\n position: absolute;\n top: 3px;\n left: 2px;\n border: 3px solid var(--color-toolkit-checkbox-label-border);\n border-top: none;\n border-right: none;\n background: transparent;\n opacity: 0;\n transform: rotate(-45deg);\n }\n\n &:checked::after {\n border-color: var(--color-toolkit-checkbox-input-border);\n opacity: 1;\n }\n }\n\n // disabled : can't be focused, show only the check mark\n input[type=checkbox][disabled]:not(.checkbox-onoff) {\n border: inherit;\n background-color: transparent !important;\n cursor: inherit;\n }\n\n // if not checked and possible to checked then display a \"light\" check mark on hover\n input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after {\n opacity: 0.5;\n }\n}\n\n@media screen and (max-width: @phone) {\n .tabs > label {\n width: 100%;\n }\n}\n\n/* -- loader -- */\n.loader,\n.loader::after {\n border-radius: 50%;\n width: 2em;\n height: 2em;\n}\n\n.loader {\n margin: 1em auto;\n font-size: 10px;\n position: relative;\n text-indent: -9999em;\n border-top: 0.5em solid var(--color-toolkit-loader-border);\n border-right: 0.5em solid var(--color-toolkit-loader-border);\n border-bottom: 0.5em solid var(--color-toolkit-loader-border);\n border-left: 0.5em solid var(--color-toolkit-loader-borderleft);\n -webkit-transform: translateZ(0);\n -ms-transform: translateZ(0);\n transform: translateZ(0);\n -webkit-animation: load8 1.2s infinite linear;\n animation: load8 1.2s infinite linear;\n}\n\n@-webkit-keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n/* -- engine-tooltip -- */\n.engine-tooltip {\n display: none;\n position: absolute;\n padding: 0.5rem 1rem;\n margin: 0 0 0 2rem;\n border: 1px solid var(--color-toolkit-engine-tooltip-border);\n background: var(--color-toolkit-engine-tooltip-background);\n font-size: 14px;\n font-weight: normal;\n z-index: 1000000;\n text-align: left;\n .rounded-corners;\n}\n\nth:hover .engine-tooltip,\ntd:hover .engine-tooltip,\n.engine-tooltip:hover {\n display: inline-block;\n}\n\n/* -- stacked bar chart -- */\n.stacked-bar-chart {\n margin: 0;\n padding: 0 0.125rem 0 4rem;\n width: 100%;\n width: -moz-available;\n width: -webkit-fill-available;\n width: fill;\n flex-direction: row;\n flex-wrap: nowrap;\n align-items: center;\n display: inline-flex;\n}\n\n.stacked-bar-chart-value {\n width: 3rem;\n display: inline-block;\n position: absolute;\n padding: 0 0.5rem;\n text-align: right;\n}\n\n.stacked-bar-chart-base {\n display: flex;\n flex-shrink: 0;\n flex-grow: 0;\n flex-basis: unset;\n}\n\n.stacked-bar-chart-median {\n .stacked-bar-chart-base();\n\n background: var(--color-base-font);\n border: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate80 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border: 1px solid rgba(var(--color-base-font-rgb), 0.3);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate95 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-bottom: 1px dotted rgba(var(--color-base-font-rgb), 0.5);\n padding: 0;\n}\n\n.stacked-bar-chart-rate100 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-left: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.4rem 0;\n width: 1px;\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n// Mixins\n.text-size-adjust (@property: 100%) {\n -webkit-text-size-adjust: @property;\n -ms-text-size-adjust: @property;\n -moz-text-size-adjust: @property;\n text-size-adjust: @property;\n}\n\n.rounded-corners (@radius: 10px) {\n border-radius: @radius;\n}\n\n.rounded-right-corners (@radius: 0 10px 10px 0) {\n border-radius: @radius;\n}\n\n.rounded-corners-tiny (@radius: 5px) {\n border-radius: @radius;\n}\n\n// disable user selection\n.disable-user-select () {\n -webkit-touch-callout: none;\n user-select: none;\n}\n\n.show-content-button() {\n padding: 5px 10px;\n .rounded-corners-tiny;\n background: var(--color-show-btn-background);\n color: var(--color-show-btn-font);\n cursor: pointer;\n\n &:hover {\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n }\n}\n",".ltr-left(@offset) {\n right: @offset;\n}\n\n.ltr-right(@offset) {\n left: @offset;\n}\n\n.ltr-margin-right(@offset) {\n margin-left: @offset;\n}\n\n.ltr-margin-left(@offset) {\n margin-right: @offset;\n}\n\n.ltr-border-right(@offset) {\n border-left: @offset;\n}\n\n.ltr-border-left(@offset) {\n border-right: @offset;\n}\n\n.ltr-padding-right(@offset) {\n padding-left: @offset;\n}\n\n.ltr-padding-left(@offset) {\n padding-right: @offset;\n}\n\n.ltr-float-left() {\n float: right;\n}\n\n.ltr-float-right() {\n float: left;\n}\n\n.ltr-text-align-right() {\n text-align: left;\n}\n\n.ltr-rounded-left-corners(@radius) {\n border-radius: 0 @radius @radius 0;\n}\n\n.ltr-rounded-top-left-corners(@radius) {\n border-radius: 0 @radius 0 0;\n}\n\n.ltr-rounded-bottom-left-corners(@radius) {\n border-radius: 0 0 @radius 0;\n}\n\n.ltr-rounded-right-corners(@radius) {\n border-radius: @radius 0 0 @radius;\n}\n\n.ltr-rounded-top-right-corners(@radius) {\n border-radius: @radius 0 0 0;\n}\n\n.ltr-rounded-bottom-right-corners(@radius) {\n border-radius: 0 0 0 @radius;\n}\n\n.ltr-text-align-left() {\n text-align: right;\n}\n\n.ltr-border-left-width(@offset) {\n border-right-width: @offset;\n}\n\n.ltr-border-right-width(@offset) {\n border-left-width: @offset;\n}\n\n.ltr-transform() {\n transform: scale(-1, 1);\n}\n\n@import \"style.less\";\n\n#q,\n#sidebar .infobox dt bdi {\n direction: rtl;\n}\n\n// URL are displayed LTR but align on the right\n#urls {\n direction: initial;\n text-align: right;\n\n .result .url_wrapper {\n justify-content: end;\n }\n}\n\n// Image flexbox\n#main_results div#results.only_template_images #urls {\n direction: rtl;\n}\n\n// Image detail\n#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p {\n direction: rtl;\n\n &.result-url {\n // Display URL using the LTR direction\n direction: ltr;\n\n span {\n // And put the label on the right\n direction: rtl;\n float: right;\n }\n }\n}\n\n// select HTML element\n@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {\n select {\n border-width: 0 0 0 2rem;\n background-position-x: -2rem;\n }\n}\n\n// vim hotkey helps is not translated\n#vim-hotkeys-help table {\n direction: ltr;\n text-align: left;\n}\n\n// Logo on the right\n#main_preferences h1,\n#main_stats h1 {\n background-position-x: 100%;\n}\n\n// patch of stats.less\n.bar-chart-serie1,\n.bar-chart-serie2 {\n float: right;\n}\n\n.engine-stats .engine-name,\n.engine-stats .engine-score,\n.engine-stats .result-count,\n.engine-stats .response-time,\n.engine-stats .engine-reliability {\n text-align: right;\n}\n","/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */\n\n.autocomplete {\n position: absolute;\n width: @search-width;\n max-height: 0;\n overflow-y: hidden;\n .ltr-text-align-left();\n\n .rounded-corners;\n\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background);\n }\n\n &:empty {\n display: none;\n }\n\n > ul {\n list-style-type: none;\n margin: 0;\n padding: 0;\n\n > li {\n cursor: pointer;\n padding: 0.5rem 1rem;\n\n &.active,\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background-hover);\n\n a:active,\n a:focus,\n a:hover {\n text-decoration: none;\n }\n }\n\n &.locked {\n cursor: inherit;\n }\n }\n }\n\n &.open {\n display: block;\n background-color: var(--color-autocomplete-background);\n color: var(--color-autocomplete-font);\n max-height: 32rem;\n overflow-y: auto;\n z-index: 100;\n margin-top: 3.5rem;\n border-radius: 0.8rem;\n box-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n\n &:empty {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n .autocomplete {\n width: 100%;\n\n > ul > li {\n padding: 1rem;\n }\n }\n}\n","#main_results #results.image-detail-open.only_template_images {\n width: min(98%, 59.25rem) !important;\n}\n\n#main_results #results.only_template_images.image-detail-open #backToTop {\n .ltr-left(56.75rem) !important;\n .ltr-right(inherit);\n}\n\narticle.result-images .detail {\n display: none;\n}\n\n#results.image-detail-open article.result-images[data-vim-selected] .detail {\n display: flex;\n flex-direction: column;\n position: fixed;\n .ltr-left(60rem);\n .ltr-right(0);\n top: @search-height;\n transition: top 0.064s ease-in 0s;\n bottom: 0;\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-background);\n z-index: 10000;\n padding: 4rem 3rem 3rem 3rem;\n\n a.result-images-source {\n display: block;\n flex: 1;\n text-align: left;\n width: 100%;\n border: none;\n text-decoration: none;\n\n img {\n padding: 0;\n margin: 0;\n border: none;\n object-fit: contain;\n width: inherit;\n height: inherit;\n max-width: 100%;\n min-height: inherit;\n max-height: calc(100vh - 25rem - 7rem);\n background: inherit;\n }\n }\n\n .result-images-labels {\n color: var(--color-result-detail-font);\n max-height: 16rem;\n min-height: 16rem;\n\n hr {\n border-top: 1px solid var(--color-result-detail-hr);\n border-bottom: none;\n }\n\n h4 {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n font-size: 0.9rem;\n }\n\n p {\n color: var(--color-result-detail-label-font);\n font-size: 0.9rem;\n\n span {\n display: inline-block;\n width: 12rem;\n }\n }\n\n h4,\n p,\n a {\n .ltr-text-align-left();\n }\n\n p.result-content {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-url {\n white-space: nowrap;\n overflow-x: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-content:hover,\n p.result-url:hover {\n position: relative;\n overflow: inherit !important;\n background: var(--color-result-detail-background);\n text-overflow: inherit !important;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-result-detail-link);\n }\n\n a:hover {\n text-decoration: underline;\n }\n }\n\n a.result-detail-close {\n top: 1rem;\n .ltr-left(1rem);\n padding: 0.4rem;\n }\n\n a.result-detail-previous {\n top: 1rem;\n .ltr-right(6rem);\n // center the icon by moving it slightly on the left\n padding-top: 0.4rem;\n .ltr-padding-right(0.5rem);\n padding-bottom: 0.4rem;\n .ltr-padding-left(0.3rem);\n }\n\n a.result-detail-next {\n top: 1rem;\n .ltr-right(2rem);\n padding: 0.4rem;\n }\n\n a.result-detail-close,\n a.result-detail-next,\n a.result-detail-previous {\n border-radius: 50%;\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n position: absolute;\n filter: opacity(40%);\n z-index: 2000002;\n\n span {\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n text-align: center;\n }\n }\n\n a.result-detail-next,\n a.result-detail-previous {\n span::before {\n // vertical center small icons\n vertical-align: sub;\n }\n }\n\n a.result-detail-close,\n a.result-detail-close:visited,\n a.result-detail-close:hover,\n a.result-detail-close:active,\n a.result-detail-previous,\n a.result-detail-previous:visited,\n a.result-detail-previous:hover,\n a.result-detail-previous:active,\n a.result-detail-next,\n a.result-detail-next:visited,\n a.result-detail-next:hover,\n a.result-detail-next:active {\n color: var(--color-result-detail-font);\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-font);\n }\n\n a.result-detail-close:focus,\n a.result-detail-close:hover,\n a.result-detail-previous:focus,\n a.result-detail-previous:hover,\n a.result-detail-next:focus,\n a.result-detail-next:hover {\n filter: opacity(80%);\n }\n\n .loader {\n position: absolute;\n top: 1rem;\n .ltr-right(50%);\n border-top: 0.5em solid var(--color-result-detail-loader-border);\n border-right: 0.5em solid var(--color-result-detail-loader-border);\n border-bottom: 0.5em solid var(--color-result-detail-loader-border);\n border-left: 0.5em solid var(--color-result-detail-loader-borderleft);\n }\n}\n\n#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail {\n top: 0;\n\n a.result-images-source img {\n max-height: calc(100vh - 25rem);\n }\n}\n\n@media screen and (max-width: @tablet) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n\n a.result-images-source {\n display: flex;\n flex-direction: column;\n justify-content: center;\n\n img {\n width: 100%;\n max-height: calc(100vh - 24rem);\n }\n }\n\n a.result-detail-next {\n .ltr-right(1rem);\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n padding: 1rem;\n\n a.result-images-source img {\n width: 100%;\n max-height: calc(100vh - 20rem);\n margin: 0;\n }\n\n .result-images-labels p span {\n width: inherit;\n .ltr-margin-right(1rem);\n }\n }\n}\n",".dialog-modal {\n animation-name: dialogmodal;\n animation-duration: 0.13s;\n\n @keyframes dialogmodal {\n 0% {\n opacity: 0;\n }\n\n 50% {\n opacity: 0.5;\n transform: translate(-50%, -50%) scale(1.05);\n }\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]::before {\n transition: left 0.25s;\n}\n","iframe[src^=\"https://w.soundcloud.com\"] {\n height: 120px;\n}\n\niframe[src^=\"https://www.deezer.com\"] {\n // The real size is 92px, but 94px are needed to avoid an inner scrollbar of\n // the embedded HTML.\n height: 94px;\n}\n\niframe[src^=\"https://www.mixcloud.com\"] {\n // the embedded player from mixcloud has some quirks: initial there is an\n // issue with an image URL that is blocked since it is an a Cross-Origin\n // request. The alternative text (Mixcloud Logo then cause an\n // scrollbar in the inner of the iframe we can't avoid. Another quirk comes\n // when pressing the play button, somtimes the shown player has an height of\n // 200px, somtimes 250px.\n height: 250px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer\"] {\n // show playlist\n height: 350px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer/track\"] {\n // hide playlist\n height: 120px;\n}\n\niframe[src^=\"https://genius.com/songs\"] {\n height: 65px;\n}\n",".info-page {\n code {\n font-family: monospace;\n color: var(--color-doc-code);\n background-color: var(--color-doc-code-background);\n padding: 2px 5px;\n .rounded-corners(5px);\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n.stats_endpoint {\n .github-issue-button {\n display: block;\n padding: 8px 16px;\n font-family: sans-serif;\n font-size: 16px;\n color: white;\n background-color: #238636;\n border: #2ea043;\n border-radius: 10px !important;\n box-shadow: rgba(0, 0, 0, 0) 0 0 0 0;\n }\n\n .github-issue-button:hover {\n background-color: #2ea043;\n }\n\n .issue-hide {\n display: none;\n }\n\n input[type=checked] {\n position: absolute;\n }\n\n label {\n margin: 1rem 1rem 1rem 0;\n }\n\n .step_content {\n margin: 1rem 1rem 1rem 2rem;\n }\n\n .step1,\n .step2 {\n visibility: hidden;\n }\n\n .step1_delay {\n transition: visibility 0s linear 4s;\n }\n\n #step1:checked ~ .step1,\n #step2:checked ~ .step2 {\n visibility: visible;\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.engine-stats {\n border-spacing: 0;\n border-collapse: collapse;\n\n tr td,\n tr th {\n border-bottom: 1px solid var(--color-result-border);\n padding: 0.25rem;\n }\n\n table.engine-tooltip {\n border-spacing: 0;\n border-collapse: collapse;\n\n td,\n th {\n border: none;\n }\n }\n\n .engine-name {\n width: 20rem;\n }\n\n .engine-score {\n width: 7rem;\n text-align: right;\n }\n\n .engine-reliability {\n text-align: right;\n }\n}\n\ntable.engine-error th.engine-error-type,\ntable.engine-error td.engine-error-type,\nfailed-test {\n width: 10rem;\n}\n\n.engine-errors {\n margin-top: 3rem;\n\n table.engine-error {\n max-width: 1280px;\n margin: 1rem 0 3rem 0;\n border: 1px solid var(--color-result-border);\n .ltr-text-align-left();\n\n tr th,\n tr td {\n padding: 0.5rem;\n }\n\n & span.log_parameters {\n border-right: 1px solid solid var(--color-result-border);\n padding: 0 1rem 0 0;\n margin: 0 0 0 0.5rem;\n }\n }\n}\n\n.bar-chart-value {\n width: 3em;\n display: inline-block;\n text-align: right;\n padding-right: 0.5rem;\n}\n\n.bar-chart-graph {\n width: calc(100% - 5rem);\n display: inline-block;\n}\n\n.bar-chart-bar {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n}\n\n.bar-chart-serie1 {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n float: left;\n}\n\n.bar-chart-serie2 {\n border: 3px solid #deb15b;\n margin: 1px 0;\n float: left;\n}\n\n.bar0 {\n width: 0;\n border: 0;\n}\n\n.generate-bar(100);\n\n.generate-bar(@n, @i: 1) when (@i =< @n) {\n .bar@{i} {\n width: (@i * 100% / @n);\n }\n .generate-bar(@n, (@i + 1));\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.osm-map-box {\n height: 300px;\n width: 100%;\n margin: 10px 0;\n}\n","#main_index {\n margin-top: 26vh;\n}\n\n.index {\n text-align: center;\n\n .title {\n background: url('../img/searxng.png') no-repeat;\n min-height: 4rem;\n margin: 4rem auto;\n background-position: center;\n background-size: contain;\n }\n\n h1 {\n font-size: 4em;\n visibility: hidden;\n }\n\n #search,\n #search_header {\n margin: 0 auto;\n background: inherit;\n border: inherit;\n padding: 0;\n display: block;\n }\n\n .search_filters {\n display: block;\n margin: 1em 0;\n }\n\n .category label {\n padding: 6px 10px;\n border-bottom: initial !important;\n }\n}\n\n@media screen and (max-width: @tablet) {\n div.title {\n h1 {\n font-size: 1em;\n }\n }\n\n #main_index {\n margin-top: 6em;\n }\n}\n","#tab-content-query table td,\n#tab-content-query table th {\n .ltr-text-align-right() !important;\n height: 3rem;\n}\n\n#main_preferences {\n form {\n width: 100%;\n }\n\n fieldset {\n margin: 8px;\n border: none;\n }\n\n legend {\n margin: 0;\n padding: 5px 0 0 0;\n display: block;\n .ltr-float-left();\n width: 300px;\n }\n\n .value {\n margin: 0;\n padding: 0;\n .ltr-float-left();\n width: 15em;\n\n select,\n input[type=\"text\"] {\n font-size: inherit !important;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n }\n\n select {\n width: 14rem;\n }\n\n input[type=\"text\"] {\n width: 13.25rem;\n color: var(--color-toolkit-input-text-font);\n border: none;\n background: none repeat scroll 0 0 var(--color-toolkit-select-background);\n padding: 0.2rem 0.4rem;\n height: 2rem;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n }\n\n select:focus,\n input:focus {\n outline: none;\n box-shadow: 0 0 1px 1px var(--color-btn-background);\n }\n }\n\n .description {\n margin: 0;\n padding: 5px 0 0 0;\n .ltr-float-right();\n width: 50%;\n color: var(--color-settings-engine-description-font);\n font-size: 90%;\n }\n\n table {\n border-collapse: collapse;\n }\n\n table td {\n text-align: center;\n }\n\n .category {\n .ltr-margin-right(0.5rem);\n\n label {\n border: 2px solid transparent;\n padding: 0.2rem 0.4rem;\n .rounded-corners-tiny;\n }\n }\n\n .category input[type=\"checkbox\"]:checked + label {\n border: 2px solid var(--color-categories-item-border-selected);\n }\n\n table.table_engines {\n td {\n height: 3.75rem;\n }\n\n th.name {\n /* stylelint-disable */\n label {\n cursor: pointer;\n }\n /* stylelint-enable */\n\n .engine-tooltip {\n margin-top: 1.8rem;\n .ltr-left(calc((100% - 85em) / 2 + 10em));\n max-width: 40rem;\n\n .engine-description {\n margin-top: 0.5rem;\n }\n }\n }\n\n .engine-group {\n .ltr-text-align-left();\n font-weight: normal;\n background: var(--color-settings-engine-group-background);\n }\n\n .name,\n .shortcut {\n .ltr-text-align-left();\n }\n }\n\n table.cookies {\n width: 100%;\n direction: ltr;\n\n th,\n td {\n text-align: left;\n font-family: monospace;\n font-size: 1rem;\n padding: 0.5em;\n vertical-align: top;\n }\n\n td:first-child {\n word-break: keep-all;\n width: 14rem;\n padding-right: 1rem;\n }\n\n td:last-child {\n word-break: break-all;\n }\n\n & > tbody > tr:nth-child(even) > th,\n & > tbody > tr:nth-child(even) > td {\n background-color: var(--color-settings-tr-hover);\n }\n }\n\n .preferences_back {\n background: none repeat scroll 0 0 var(--color-btn-background);\n color: var(--color-btn-font);\n border: 0 none;\n .rounded-corners;\n\n cursor: pointer;\n display: inline-block;\n margin: 2px 4px;\n padding: 0.7em;\n\n a {\n color: var(--color-settings-return-font);\n }\n\n a::first-letter {\n text-transform: uppercase;\n }\n }\n\n div.selectable_url {\n pre {\n width: 100%;\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n .preferences_back {\n clear: both;\n }\n\n .engine-tooltip {\n .ltr-left(10em) !important;\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*/\n\n#search {\n padding: 0;\n margin: 0;\n}\n\n#search_header {\n padding-top: 1.5em;\n .ltr-padding-right(2em);\n .ltr-padding-left(@results-offset - 3rem);\n margin: 0;\n background: var(--color-header-background);\n border-bottom: 1px solid var(--color-header-border);\n display: grid;\n column-gap: 1.2rem;\n row-gap: 1rem;\n grid-template-columns: 3rem 1fr;\n grid-template-areas:\n \"logo search\"\n \"spacer categories\";\n}\n\n.category {\n display: inline-block;\n position: relative;\n .ltr-margin-right(1rem);\n padding: 0;\n\n input {\n display: none;\n }\n\n label {\n svg {\n padding-right: 0.2rem;\n }\n\n cursor: pointer;\n padding: 0.2rem 0;\n display: inline-flex;\n text-transform: capitalize;\n font-size: 0.9em;\n border-bottom: 2px solid transparent;\n .disable-user-select;\n\n div.category_name {\n margin: auto 0;\n }\n }\n\n input[type=\"checkbox\"]:checked + label {\n color: var(--color-categories-item-selected-font);\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n}\n\n#search_logo {\n grid-area: logo;\n display: flex;\n align-items: center;\n justify-content: center;\n\n svg {\n flex: 1;\n width: 30px;\n height: 30px;\n margin: 0.5rem 0 auto 0;\n }\n}\n\n.search_categories {\n grid-area: categories;\n\n .help {\n display: none;\n }\n\n &:hover .help {\n display: block;\n position: absolute;\n background: var(--color-base-background);\n padding: 1rem 0.6rem 0.6rem 0;\n z-index: 1000;\n width: 100%;\n left: -0.1rem;\n }\n}\n\n#search_view {\n grid-area: search;\n}\n\n.search_box {\n border-radius: 0.8rem;\n width: @search-width;\n display: inline-flex;\n flex-direction: row;\n white-space: nowrap;\n box-shadow: var(--color-search-shadow);\n}\n\n#clear_search {\n display: block;\n border-collapse: separate;\n box-sizing: border-box;\n width: 1.8rem;\n margin: 0;\n padding: 0.8rem 0.2rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 10000;\n\n &:hover {\n color: var(--color-search-background-hover);\n }\n\n &.empty * {\n display: none;\n }\n}\n\nhtml.no-js #clear_search.hide_if_nojs {\n display: none;\n}\n\n#q,\n#send_search {\n display: block;\n margin: 0;\n padding: 0.8rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 2;\n}\n\n#q {\n width: 100%;\n .ltr-padding-left(1rem);\n .ltr-padding-right(0) !important;\n .ltr-rounded-left-corners(0.8rem);\n}\n\n#q::-ms-clear,\n#q::-webkit-search-cancel-button {\n display: none;\n}\n\n#send_search {\n .ltr-rounded-right-corners(0.8rem);\n\n &:hover {\n cursor: pointer;\n background-color: var(--color-search-background-hover);\n color: var(--color-search-background);\n }\n}\n\n.no-js #clear_search,\n.no-js #send_search {\n width: auto !important;\n .ltr-border-left(1px solid var(--color-search-border));\n}\n\n.search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset + 0.6rem);\n display: flex;\n overflow-x: auto;\n overscroll-behavior-inline: contain;\n\n select {\n background-color: inherit;\n\n &:hover,\n &:focus {\n color: var(--color-base-font);\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n #search_header {\n padding: 1.5em @results-tablet-offset 0 @results-tablet-offset;\n column-gap: @results-tablet-offset;\n }\n\n .search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-tablet-offset + 3rem);\n }\n\n #categories {\n font-size: 90%;\n clear: both;\n\n .checkbox_container {\n margin: auto;\n margin-top: 2px;\n }\n }\n}\n\n@media screen and (max-width: @tablet) and (hover: none) {\n #main_index,\n #main_results {\n #categories_container {\n width: max-content;\n\n .category {\n display: inline-block;\n width: auto;\n }\n }\n\n #categories {\n width: 100%;\n .ltr-text-align-left();\n overflow-x: scroll;\n overflow-y: hidden;\n -webkit-overflow-scrolling: touch;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #search_header {\n width: 100%;\n margin: 0;\n padding: 0.1rem 0 0 0;\n column-gap: 0;\n row-gap: 0;\n grid-template-areas:\n \"logo search\"\n \"categories categories\";\n }\n\n .search_logo {\n padding: 0;\n }\n\n .search_box {\n width: 98%;\n display: flex;\n margin: 0 auto;\n }\n\n #q {\n width: 100%;\n flex: 1;\n }\n\n .search_filters {\n margin: 0;\n }\n\n .category {\n display: inline-block;\n width: auto;\n margin: 0;\n\n label {\n padding: 1rem !important;\n margin: 0 !important;\n\n svg {\n display: none;\n }\n }\n }\n\n #search_view:focus-within {\n display: block;\n background-color: var(--color-search-background);\n position: absolute;\n top: 0;\n height: 100%;\n width: 100%;\n z-index: 10000;\n\n .search_box {\n border-bottom: 1px solid var(--color-search-border);\n width: 100%;\n border-radius: 0;\n box-shadow: none;\n\n #send_search {\n .ltr-margin-right(0) !important; // Delete when send_search button is disabled on mobile.\n }\n\n * {\n border: none;\n border-radius: 0;\n box-shadow: none;\n }\n }\n }\n\n #main_results #q:placeholder-shown ~ #send_search {\n .ltr-margin-right(2.6rem);\n transition: margin 0.1s;\n }\n}\n\n@media screen and (max-width: @ultra-small-phone) {\n #search_header {\n grid-template-areas:\n \"search search\"\n \"categories categories\";\n }\n\n #search_logo {\n display: none;\n }\n}\n\n#categories {\n .disable-user-select;\n\n &::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n}\n\n#categories_container {\n position: relative;\n}\n","/*\n--center-page-width overrides the less variable @results-width when the results are centered\nsee the CSS rules for #results in style.less ( grid-template-columns and gap).\n\nIn this file, the --center-page-width values comes from the Oscar theme (Bootstrap 3).\n\nAll rules starts with \".center-aligment-yes #main_results\" to be enabled only\non the /search URL and when the \"center alignment\" preference is enabled.\n*/\n\n@media screen and (min-width: @phone) {\n .center-aligment-yes #main_results {\n --center-page-width: 48rem;\n }\n}\n\n@media screen and (min-width: 62rem) {\n .center-aligment-yes #main_results {\n --center-page-width: 60rem;\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n --center-page-width: 73rem;\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // any change must be reset in @media screen and (min-width: @tablet) { ... }\n .center-aligment-yes #main_results {\n #results {\n grid-template-columns: 60% calc(40% - @results-gap);\n margin-left: 0;\n margin-right: 0;\n }\n\n #urls {\n .ltr-margin-left(3rem);\n }\n\n #sidebar {\n .ltr-margin-right(1rem);\n }\n\n #backToTop {\n .ltr-left(calc(60% + 1rem));\n }\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n display: flex;\n flex-direction: column;\n align-items: center;\n\n #search {\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n }\n\n #search_header {\n grid-template-columns: calc(50% - 4.5rem - var(--center-page-width) / 2) 3rem var(--center-page-width);\n grid-template-areas: \"na logo search\" \"na spacer categories\";\n column-gap: 1.2rem; // from search.less\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n }\n\n .search_filters {\n .ltr-margin-left(0.5rem);\n width: var(--center-page-width);\n }\n\n #results {\n // from style.less (when screen width = @tablet, reset layout from tablet)\n .ltr-margin-right(2rem);\n .ltr-margin-left(@results-offset);\n //\n\n &.only_template_images,\n &.image-detail-open {\n // * grid-template-columns and .ltr-margin-left are set in style.less\n // * With .image-detail-open.only_template_images, the width is set in detail.less\n // * #results is going to be centered because of the #main_results rules,\n // align-self aligns the results on the left or right according to the language.\n align-self: flex-start;\n }\n\n &:not(.only_template_images):not(.image-detail-open) {\n // the gap is set in style.less\n .ltr-margin-left(1.5rem);\n grid-template-columns: calc(var(--center-page-width) - @results-gap - @results-sidebar-width) @results-sidebar-width;\n\n #backToTop {\n .ltr-left(calc(50% - @results-sidebar-width - @results-gap + 1rem + var(--center-page-width) / 2));\n }\n }\n\n .result .content {\n max-width: inherit;\n }\n }\n\n // from style.less (when screen width = @tablet, reset layout from tablet)\n #urls {\n .ltr-margin-left(0);\n }\n\n #sidebar {\n .ltr-margin-right(0);\n }\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*\n* To convert \"style.less\" to \"style.css\" run: $make styles\n*/\n\n// stylelint-disable no-descending-specificity\n\n@import (inline) \"../../node_modules/normalize.css/normalize.css\";\n@import \"definitions.less\";\n@import \"mixins.less\";\n@import \"code.less\";\n@import \"toolkit.less\";\n@import \"autocomplete.less\";\n@import \"detail.less\";\n@import \"animations.less\";\n@import \"embedded.less\";\n@import \"info.less\";\n@import \"new_issue.less\";\n@import \"stats.less\";\n@import \"result_templates.less\";\n\n// for index.html template\n@import \"index.less\";\n\n// for preferences.html template\n@import \"preferences.less\";\n\n// Search-Field\n@import \"search.less\";\n\n// to center the results\n@import \"style-center.less\";\n\n// ion-icon\n.ion-icon {\n display: inline-block;\n vertical-align: bottom;\n line-height: 1;\n text-decoration: inherit;\n .ltr-transform();\n}\n\n.ion-icon-small {\n width: 1rem;\n height: 1rem;\n .ion-icon;\n}\n\n.ion-icon-big {\n width: 1.5rem;\n height: 1.5rem;\n .ion-icon;\n}\n\n// Main LESS-Code\nhtml {\n font-family: sans-serif;\n font-size: 0.9em;\n .text-size-adjust;\n\n color: var(--color-base-font);\n background-color: var(--color-base-background);\n padding: 0;\n margin: 0;\n}\n\nbody,\nmain {\n padding: 0;\n margin: 0;\n}\n\nbody {\n display: flex;\n flex-direction: column;\n height: 100vh;\n margin: 0;\n}\n\nmain {\n width: 100%;\n margin-bottom: 2rem;\n flex: 1;\n}\n\n.page_with_header {\n margin: 2em auto;\n width: 85em;\n}\n\nfooter {\n clear: both;\n min-height: 4rem;\n padding: 1rem 0;\n width: 100%;\n text-align: center;\n background-color: var(--color-footer-background);\n border-top: 1px solid var(--color-footer-border);\n overflow: hidden;\n\n p {\n font-size: 0.9em;\n }\n}\n\n.page_with_header .logo {\n height: 40px;\n}\n\ninput[type=\"submit\"],\n#results button[type=\"submit\"] {\n padding: 0.7rem;\n display: inline-block;\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n .rounded-corners;\n\n border: 0;\n cursor: pointer;\n}\n\na {\n text-decoration: none;\n color: var(--color-url-font);\n\n &:visited {\n color: var(--color-url-visited-font);\n\n .highlight {\n color: var(--color-url-visited-font);\n }\n }\n}\n\narticle[data-vim-selected] {\n background: var(--color-result-vim-selected);\n .ltr-border-left(0.2rem solid var(--color-result-vim-arrow));\n .ltr-rounded-right-corners(10px);\n}\n\narticle.result-images[data-vim-selected] {\n background: var(--color-result-vim-arrow);\n border: none;\n .rounded-corners;\n\n .image_thumbnail {\n filter: opacity(60%);\n }\n\n span.title,\n span.source {\n color: var(--color-result-image-span-font-selected);\n }\n}\n\narticle[data-vim-selected].category-videos,\narticle[data-vim-selected].category-news,\narticle[data-vim-selected].category-map,\narticle[data-vim-selected].category-music,\narticle[data-vim-selected].category-files,\narticle[data-vim-selected].category-social {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n}\n\n.result {\n margin: @results-margin 0;\n padding: @result-padding;\n .ltr-border-left(0.2rem solid transparent);\n\n h3 {\n font-size: 1.2rem;\n word-wrap: break-word;\n margin: 0.4rem 0 0.4rem 0;\n padding: 0;\n\n a {\n color: var(--color-result-link-font);\n font-weight: normal;\n font-size: 1.1em;\n\n &:visited {\n color: var(--color-result-link-visited-font);\n }\n\n &:focus,\n &:hover {\n text-decoration: underline;\n border: none;\n outline: none;\n }\n }\n }\n\n .cache_link,\n .proxyfied_link {\n font-size: 0.9em !important;\n }\n\n .content,\n .stat {\n font-size: 0.9em;\n margin: 0;\n padding: 0;\n max-width: 54em;\n word-wrap: break-word;\n line-height: 1.24;\n\n .highlight {\n color: var(--color-result-description-highlight-font);\n background: inherit;\n font-weight: bold;\n }\n }\n\n .altlink a {\n font-size: 0.9em;\n margin: 0 10px 0 0;\n .show-content-button;\n }\n\n .codelines {\n .highlight {\n color: inherit;\n background: inherit;\n font-weight: normal;\n }\n }\n\n .url_wrapper {\n display: flex;\n font-size: 1rem;\n color: var(--color-result-url-font);\n flex-wrap: nowrap;\n overflow: hidden;\n flex-direction: row;\n margin: 0;\n padding: 0;\n\n .url_o1 {\n white-space: nowrap;\n flex-shrink: 1;\n }\n\n .url_o1::after {\n content: \" \";\n width: 1ch;\n display: inline-block;\n }\n\n .url_o2 {\n overflow: hidden;\n white-space: nowrap;\n flex-basis: content;\n flex-grow: 0;\n flex-shrink: 1;\n text-align: right;\n\n .url_i2 {\n float: right;\n }\n }\n }\n\n .published_date,\n .result_length,\n .result_author,\n .result_shipping,\n .result_source_country {\n font-size: 0.8em;\n color: var(--color-result-publishdate-font);\n }\n\n .result_price {\n font-size: 1.2em;\n color: var(--color-result-description-highlight-font);\n }\n\n img {\n &.thumbnail {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 20rem;\n height: unset; // remove heigth value that was needed for lazy loading\n }\n\n &.image {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 7rem;\n max-height: 7rem;\n object-fit: scale-down;\n object-position: right top;\n }\n }\n\n .break {\n clear: both;\n }\n}\n\n.result-paper {\n .attributes {\n display: table;\n border-spacing: 0.125rem;\n\n div {\n display: table-row;\n\n span {\n font-size: 0.9rem;\n margin-top: 0.25rem;\n display: table-cell;\n\n time {\n font-size: 0.9rem;\n }\n }\n\n span:first-child {\n color: var(--color-base-font);\n min-width: 10rem;\n }\n\n span:nth-child(2) {\n color: var(--color-result-publishdate-font);\n }\n }\n }\n\n .content {\n margin-top: 0.25rem;\n }\n\n .comments {\n font-size: 0.9rem;\n margin: 0.25rem 0 0 0;\n padding: 0;\n word-wrap: break-word;\n line-height: 1.24;\n font-style: italic;\n }\n}\n\n.template_group_images {\n display: flex;\n flex-wrap: wrap;\n}\n\n.template_group_images::after {\n flex-grow: 10;\n content: \"\";\n}\n\n.category-videos,\n.category-news,\n.category-map,\n.category-music,\n.category-files,\n.category-social {\n border: 1px solid var(--color-result-border);\n margin: 0 @results-tablet-offset 1rem @results-tablet-offset !important;\n .rounded-corners;\n}\n\n.category-social .image {\n width: auto !important;\n min-width: 48px;\n min-height: 48px;\n padding: 0 5px 25px 0 !important;\n}\n\n.audio-control audio {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.embedded-content iframe {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.result-videos .content {\n overflow: hidden;\n}\n\n.result-videos .embedded-video iframe {\n width: 100%;\n aspect-ratio: 16 / 9;\n padding: 10px 0 0 0;\n}\n\n@supports not (aspect-ratio: 1 / 1) {\n // support older browsers which do not have aspect-ratio\n // https://caniuse.com/?search=aspect-ratio\n .result-videos .embedded-video iframe {\n height: calc(@results-width * 9 / 16);\n }\n}\n\n.engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n color: var(--color-result-engines-font);\n\n span {\n font-size: smaller;\n margin-top: 0;\n margin-bottom: 0;\n .ltr-margin-right(0.5rem);\n .ltr-margin-left(0);\n }\n}\n\n.small_font {\n font-size: 0.8em;\n}\n\n.highlight {\n color: var(--color-result-link-font-highlight);\n background: inherit;\n}\n\n.empty_element {\n font-style: italic;\n}\n\n.result-images {\n flex-grow: 1;\n padding: 0.5rem 0.5rem 3rem 0.5rem;\n margin: 0.25rem;\n border: none !important;\n height: @results-image-row-height;\n\n & > a {\n position: relative;\n }\n\n img {\n margin: 0;\n padding: 0;\n border: none;\n height: 100%;\n width: 100%;\n object-fit: cover;\n vertical-align: bottom;\n background: var(--color-result-image-background);\n }\n\n span.title,\n span.source {\n display: block;\n position: absolute;\n\n width: 100%;\n font-size: 0.9rem;\n color: var(--color-result-image-span-font);\n padding: 0.5rem 0 0 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n span.source {\n padding: 1.8rem 0 0 0;\n font-size: 0.7rem;\n }\n}\n\n.result-map {\n img.image {\n .ltr-float-right() !important;\n height: 100px !important;\n width: auto !important;\n }\n\n table {\n font-size: 0.9em;\n width: auto;\n border-collapse: separate;\n border-spacing: 0 0.35rem;\n\n th {\n font-weight: inherit;\n width: 17rem;\n vertical-align: top;\n .ltr-text-align-left();\n }\n\n td {\n vertical-align: top;\n .ltr-text-align-left();\n }\n }\n}\n\n.hidden {\n display: none !important;\n}\n\n#results {\n margin-top: 1rem;\n .ltr-margin-right(2rem);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset);\n display: grid;\n grid-template-columns: @results-width @results-sidebar-width;\n grid-template-rows: min-content min-content 1fr min-content;\n gap: 0 @results-gap;\n grid-template-areas:\n \"corrections sidebar\"\n \"answers sidebar\"\n \"urls sidebar\"\n \"pagination sidebar\";\n}\n\n#results #sidebar *:first-child,\n#results #urls *:first-child {\n margin-top: 0;\n}\n\n#urls {\n padding: 0;\n grid-area: urls;\n}\n\n#suggestions {\n .wrapper {\n display: flex;\n flex-flow: column;\n justify-content: flex-end;\n\n form {\n display: inline-block;\n flex: 1 1 50%;\n }\n }\n}\n\n#suggestions,\n#infoboxes {\n input {\n padding: 0;\n margin: 3px;\n font-size: 0.9em;\n display: inline-block;\n background: transparent;\n color: var(--color-result-search-url-font);\n cursor: pointer;\n width: calc(100%);\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: left;\n }\n\n input[type=\"submit\"],\n .infobox .url a {\n color: var(--color-result-link-font);\n text-decoration: none;\n font-size: 0.9rem;\n\n &:hover {\n text-decoration: underline;\n }\n }\n}\n\n#corrections {\n grid-area: corrections;\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1em 0;\n\n h4,\n input[type=\"submit\"] {\n display: inline-block;\n padding: 0.5rem;\n margin: 0.5rem;\n }\n\n input[type=\"submit\"] {\n font-size: 0.8rem;\n .rounded-corners-tiny;\n }\n}\n\n#suggestions .title,\n#search_url .title,\n#apis .title {\n margin: 2em 0 0.5em 0;\n color: var(--color-base-font);\n}\n\n#answers {\n grid-area: answers;\n background: var(--color-answer-background);\n padding: @result-padding;\n margin: 1rem 0;\n margin-top: 0;\n color: var(--color-answer-font);\n .rounded-corners;\n\n h4 {\n display: none;\n }\n\n span {\n overflow-wrap: anywhere;\n }\n}\n\n#infoboxes {\n form {\n min-width: 210px;\n }\n}\n\n#sidebar {\n grid-area: sidebar;\n word-wrap: break-word;\n color: var(--color-sidebar-font);\n\n .infobox {\n margin: 10px 0 10px;\n border: 1px solid var(--color-sidebar-border);\n padding: 1rem;\n font-size: 0.9em;\n .rounded-corners;\n\n h2 {\n margin: 0 0 0.5em 0;\n }\n\n img {\n max-width: 100%;\n max-height: 12em;\n display: block;\n margin: 0 auto;\n padding: 0;\n }\n\n dt {\n font-weight: bold;\n }\n\n .attributes {\n dl {\n margin: 0.5em 0;\n }\n\n dt {\n display: inline;\n margin-top: 0.5em;\n .ltr-margin-right(0.25em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n padding: 0;\n }\n\n dd {\n display: inline;\n margin: 0.5em 0;\n padding: 0;\n }\n }\n\n input {\n font-size: 1em;\n }\n\n br {\n clear: both;\n }\n\n .attributes,\n .urls {\n clear: both;\n }\n }\n}\n\n#search_url {\n margin-top: 8px;\n\n div.selectable_url {\n pre {\n width: 200em;\n }\n }\n}\n\n#links_on_top {\n position: absolute;\n .ltr-right(1.8rem);\n .ltr-text-align-right();\n top: 2.2rem;\n padding: 0;\n border: 0;\n display: flex;\n align-items: center;\n font-size: 1em;\n color: var(--color-search-font);\n\n a {\n display: flex;\n align-items: center;\n margin-left: 1em;\n\n svg {\n font-size: 1.2em;\n .ltr-margin-right(0.125em);\n }\n }\n\n a,\n a:link *,\n a:hover *,\n a:visited *,\n a:active * {\n color: var(--color-search-font);\n }\n}\n\n#pagination {\n grid-area: pagination;\n\n br {\n clear: both;\n }\n}\n\n.numbered_pagination {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n overflow: hidden;\n}\n\n.page_number {\n background: transparent !important;\n color: var(--color-result-link-font) !important;\n text-decoration: underline;\n}\n\n.page_number_current {\n background: transparent;\n color: var(--color-result-link-visited-font);\n border: none;\n}\n\n#apis {\n margin-top: 8px;\n clear: both;\n}\n\n#backToTop {\n border: 1px solid var(--color-backtotop-border);\n margin: 0;\n padding: 0;\n font-size: 1em;\n background: var(--color-backtotop-background);\n position: fixed;\n bottom: 8rem;\n .ltr-left(@results-width + @results-offset + (0.5 * @results-gap - 1.2em));\n transition: opacity 0.5s;\n opacity: 0;\n .rounded-corners;\n\n a {\n display: block;\n margin: 0;\n padding: 0.7em;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-backtotop-font);\n }\n}\n\n#results.scrolling #backToTop {\n opacity: 1;\n}\n\n/*\n tablet layout\n*/\n\n.results-tablet() {\n #links_on_top {\n span {\n display: none;\n }\n }\n\n .page_with_header {\n margin: 2rem 0.5rem;\n width: auto;\n }\n\n #infoboxes {\n position: inherit;\n max-width: inherit;\n\n .infobox {\n clear: both;\n\n img {\n .ltr-float-left();\n max-width: 10em;\n margin-top: 0.5em;\n .ltr-margin-right(0.5em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n }\n }\n }\n\n #sidebar {\n margin: 0 @results-tablet-offset @results-margin @results-tablet-offset;\n padding: 0;\n float: none;\n border: none;\n width: auto;\n\n input {\n border: 0;\n }\n }\n\n #apis {\n display: none;\n }\n\n #search_url {\n display: none;\n }\n\n .result {\n .thumbnail {\n max-width: 98%;\n }\n\n .url {\n span.url {\n display: block;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n width: 100%;\n }\n }\n\n .engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n padding: 0 0 3px 0;\n }\n }\n\n .result-images {\n border-bottom: none !important;\n }\n\n .image_result {\n max-width: 98%;\n\n img {\n max-width: 98%;\n }\n }\n\n #backToTop {\n display: none;\n }\n\n #pagination {\n margin: 2rem 0 0 0 !important;\n }\n\n #main_results div#results {\n margin: 1rem auto 0 auto;\n justify-content: center;\n display: grid;\n grid-template-columns: @results-width;\n grid-template-rows: min-content min-content min-content 1fr min-content min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n }\n}\n\n@media screen and (max-width: calc(@tablet - 0.5px)) {\n #links_on_top {\n span {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: 52rem) {\n body.results_endpoint {\n #links_on_top {\n .link_on_top_about,\n .link_on_top_donate {\n display: none;\n }\n }\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // when .center-aligment-yes, see style-center.less\n // the media query includes \"min-width: @phone\"\n // because the phone layout includes the tablet layout unconditionally.\n .center-aligment-no {\n .results-tablet();\n }\n}\n\n/* Misc */\n\n#main_results div#results.only_template_images {\n margin: 1rem @results-tablet-offset 0 @results-tablet-offset;\n display: grid;\n grid-template-columns: 100%;\n grid-template-rows: min-content min-content min-content 1fr min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n\n #sidebar {\n display: none;\n }\n\n #urls {\n margin: 0;\n display: flex;\n flex-wrap: wrap;\n }\n\n #urls::after {\n flex-grow: 10;\n content: \"\";\n }\n\n #backToTop {\n .ltr-left(auto);\n .ltr-right(1rem);\n }\n\n #pagination {\n .ltr-margin-right(4rem);\n }\n}\n\n/*\n phone layout\n*/\n\n@media screen and (max-width: @phone) {\n // based on the tablet layout\n .results-tablet();\n\n html {\n background-color: var(--color-base-background-mobile);\n }\n\n #main_results div#results {\n grid-template-columns: 100%;\n margin: 1rem 0 0 0;\n }\n\n #links_on_top {\n top: 0.8rem;\n .ltr-right(0.7rem);\n }\n\n #main_index #links_on_top {\n top: 0.5rem;\n .ltr-right(0.5rem);\n }\n\n #results {\n margin: 0;\n padding: 0;\n }\n\n #pagination {\n margin: 2rem 1rem 0 1rem !important;\n }\n\n article[data-vim-selected] {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n }\n\n .result {\n background: var(--color-result-background);\n margin: 1rem 0;\n }\n\n .result-images {\n margin: 0;\n height: @results-image-row-height-phone;\n background: var(--color-base-background-mobile);\n }\n\n .infobox {\n border: none !important;\n background-color: var(--color-sidebar-background);\n }\n\n .numbered_pagination {\n display: none;\n }\n\n .result-paper {\n .attributes {\n display: block;\n\n div {\n display: block;\n\n span {\n display: inline;\n }\n\n span:first-child {\n font-weight: bold;\n }\n\n span:nth-child(2) {\n .ltr-margin-left(0.5rem);\n }\n }\n }\n }\n}\n\n/*\n small-phone layout\n*/\n\n@media screen and (max-width: @small-phone) {\n .result-videos {\n img.thumbnail {\n float: none !important;\n }\n\n .content {\n overflow: inherit;\n }\n }\n}\n\npre code {\n white-space: pre-wrap;\n}\n"]} \ No newline at end of file diff --git a/searx/static/themes/simple/css/searxng.min.css b/searx/static/themes/simple/css/searxng.min.css index a76765cef..02db0a0ed 100644 --- a/searx/static/themes/simple/css/searxng.min.css +++ b/searx/static/themes/simple/css/searxng.min.css @@ -1 +1 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--color-base-font:#444;--color-base-font-rgb:68,68,68;--color-base-background:#fff;--color-base-background-mobile:#f2f5f8;--color-url-font:#334999;--color-url-visited-font:#9822c3;--color-header-background:#fdfbff;--color-header-border:#ddd;--color-footer-background:#fdfbff;--color-footer-border:#ddd;--color-sidebar-border:#ddd;--color-sidebar-font:#000;--color-sidebar-background:#fff;--color-backtotop-font:#444;--color-backtotop-border:#ddd;--color-backtotop-background:#fff;--color-btn-background:#3050ff;--color-btn-font:#fff;--color-show-btn-background:#bbb;--color-show-btn-font:#000;--color-search-border:#bbb;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#fff;--color-search-font:#222;--color-search-background-hover:#3050ff;--color-error:#db3434;--color-error-background:#fae1e1;--color-warning:#dbba34;--color-warning-background:#faf5e1;--color-success:#42db34;--color-success-background:#e3fae1;--color-categories-item-selected-font:#3050ff;--color-categories-item-border-selected:#3050ff;--color-autocomplete-font:#000;--color-autocomplete-border:#bbb;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#fff;--color-autocomplete-background-hover:#e3e3e3;--color-answer-font:#444;--color-answer-background:#fff;--color-result-background:#fff;--color-result-border:#ddd;--color-result-url-font:#000;--color-result-vim-selected:#f7f7f7;--color-result-vim-arrow:#000bbb;--color-result-description-highlight-font:#000;--color-result-link-font:#000bbb;--color-result-link-font-highlight:#000bbb;--color-result-link-visited-font:#9822c3;--color-result-publishdate-font:#777;--color-result-engines-font:#545454;--color-result-search-url-border:#ddd;--color-result-search-url-font:#000;--color-result-image-span-font:#444;--color-result-image-span-font-selected:#fff;--color-result-image-background:#fff;--color-settings-tr-hover:#ebebeb;--color-settings-engine-description-font:#545454;--color-settings-engine-group-background:#0001;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#242424;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#545454;--color-toolkit-kbd-font:#fff;--color-toolkit-kbd-background:#000;--color-toolkit-dialog-border:#ddd;--color-toolkit-dialog-background:#fff;--color-toolkit-tabs-label-border:#fff;--color-toolkit-tabs-section-border:#ddd;--color-toolkit-select-background:#e1e1e1;--color-toolkit-select-border:#ddd;--color-toolkit-select-background-hover:#bbb;--color-toolkit-input-text-font:#222;--color-toolkit-checkbox-onoff-off-background:#ddd;--color-toolkit-checkbox-onoff-on-background:#ddd;--color-toolkit-checkbox-onoff-on-mark-background:#3050ff;--color-toolkit-checkbox-onoff-on-mark-color:#fff;--color-toolkit-checkbox-onoff-off-mark-background:#aaa;--color-toolkit-checkbox-onoff-off-mark-color:#fff;--color-toolkit-checkbox-label-background:#ddd;--color-toolkit-checkbox-label-border:#ddd;--color-toolkit-checkbox-input-border:#3050ff;--color-toolkit-engine-tooltip-border:#ddd;--color-toolkit-engine-tooltip-background:#fff;--color-toolkit-loader-border:rgba(0, 0, 0, 0.2);--color-toolkit-loader-borderleft:rgba(255, 255, 255, 0);--color-doc-code:#300;--color-doc-code-background:#fdd}@media (prefers-color-scheme:dark){:root.theme-auto{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}}:root.theme-dark{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}.code-highlight pre{overflow:auto;background-color:inherit;color:inherit;border:inherit}.code-highlight .linenos{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;margin-right:8px;text-align:right}.code-highlight .linenos::selection{background:0 0}.code-highlight .linenos::-moz-selection{background:0 0}.code-highlight pre{line-height:125%}.code-highlight td.linenos .normal{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight span.linenos{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight td.linenos .special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight span.linenos.special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight .hll{background-color:#ffc}.code-highlight{background:#f8f8f8}.code-highlight .c{color:#3D7B7B;font-style:italic}.code-highlight .err{border:1px solid red}.code-highlight .k{color:green;font-weight:700}.code-highlight .o{color:#666}.code-highlight .ch{color:#3D7B7B;font-style:italic}.code-highlight .cm{color:#3D7B7B;font-style:italic}.code-highlight .cp{color:#9C6500}.code-highlight .cpf{color:#3D7B7B;font-style:italic}.code-highlight .c1{color:#3D7B7B;font-style:italic}.code-highlight .cs{color:#3D7B7B;font-style:italic}.code-highlight .gd{color:#A00000}.code-highlight .ge{font-style:italic}.code-highlight .gr{color:#E40000}.code-highlight .gh{color:navy;font-weight:700}.code-highlight .gi{color:#008400}.code-highlight .go{color:#717171}.code-highlight .gp{color:navy;font-weight:700}.code-highlight .gs{font-weight:700}.code-highlight .gu{color:purple;font-weight:700}.code-highlight .gt{color:#04D}.code-highlight .kc{color:green;font-weight:700}.code-highlight .kd{color:green;font-weight:700}.code-highlight .kn{color:green;font-weight:700}.code-highlight .kp{color:green}.code-highlight .kr{color:green;font-weight:700}.code-highlight .kt{color:#B00040}.code-highlight .m{color:#666}.code-highlight .s{color:#BA2121}.code-highlight .na{color:#687822}.code-highlight .nb{color:green}.code-highlight .nc{color:#00F;font-weight:700}.code-highlight .no{color:#800}.code-highlight .nd{color:#A2F}.code-highlight .ni{color:#717171;font-weight:700}.code-highlight .ne{color:#CB3F38;font-weight:700}.code-highlight .nf{color:#00F}.code-highlight .nl{color:#767600}.code-highlight .nn{color:#00F;font-weight:700}.code-highlight .nt{color:green;font-weight:700}.code-highlight .nv{color:#19177C}.code-highlight .ow{color:#A2F;font-weight:700}.code-highlight .w{color:#bbb}.code-highlight .mb{color:#666}.code-highlight .mf{color:#666}.code-highlight .mh{color:#666}.code-highlight .mi{color:#666}.code-highlight .mo{color:#666}.code-highlight .sa{color:#BA2121}.code-highlight .sb{color:#BA2121}.code-highlight .sc{color:#BA2121}.code-highlight .dl{color:#BA2121}.code-highlight .sd{color:#BA2121;font-style:italic}.code-highlight .s2{color:#BA2121}.code-highlight .se{color:#AA5D1F;font-weight:700}.code-highlight .sh{color:#BA2121}.code-highlight .si{color:#A45A77;font-weight:700}.code-highlight .sx{color:green}.code-highlight .sr{color:#A45A77}.code-highlight .s1{color:#BA2121}.code-highlight .ss{color:#19177C}.code-highlight .bp{color:green}.code-highlight .fm{color:#00F}.code-highlight .vc{color:#19177C}.code-highlight .vg{color:#19177C}.code-highlight .vi{color:#19177C}.code-highlight .vm{color:#19177C}.code-highlight .il{color:#666}html.no-js .hide_if_nojs{display:none}html.js .show_if_nojs{display:none}.center{text-align:center}.right{float:right}.left{float:left}.invisible{display:none!important}.list-unstyled{list-style-type:none}.list-unstyled li{margin-top:4px;margin-bottom:4px}.danger{background-color:var(--color-error-background)}.warning{background:var(--color-warning-background)}.success{background:var(--color-success-background)}.badge{display:inline-block;color:var(--color-toolkit-badge-font);background-color:var(--color-toolkit-badge-background);text-align:center;white-space:nowrap;vertical-align:baseline;min-width:10px;padding:1px 5px;border-radius:5px}kbd{padding:2px 4px;margin:1px;font-size:90%;color:var(--color-toolkit-kbd-font);background:var(--color-toolkit-kbd-background)}table{width:100%}table.striped tr{border-bottom:1px solid var(--color-settings-tr-hover)}th{padding:.4em}td{padding:0 4px}tr:hover{background:var(--color-settings-tr-hover)!important}div.selectable_url{display:block;border:1px solid var(--color-result-search-url-border);padding:4px;color:var(--color-result-search-url-font);margin:.1em;overflow:hidden;height:1.2em;line-height:1.2em;border-radius:5px}div.selectable_url pre{display:block;font-size:.8em;word-break:break-all;margin:.1em;user-select:all}.dialog-error{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:left;border-radius:10px;color:var(--color-error);background:var(--color-error-background);border-color:var(--color-error)}.dialog-error .close{float:right;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-error ol,.dialog-error p,.dialog-error ul{margin:1px 0 0 0}.dialog-error table{width:auto}.dialog-error tr{vertical-align:text-top}.dialog-error tr:hover{background:0 0!important}.dialog-error td{padding:0 1em 0 0;padding-top:0;padding-right:1rem;padding-bottom:0;padding-left:0}.dialog-error h4{margin-top:.3em;margin-bottom:.3em}.dialog-warning{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:left;border-radius:10px;color:var(--color-warning);background:var(--color-warning-background);border-color:var(--color-warning)}.dialog-warning .close{float:right;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-warning ol,.dialog-warning p,.dialog-warning ul{margin:1px 0 0 0}.dialog-warning table{width:auto}.dialog-warning tr{vertical-align:text-top}.dialog-warning tr:hover{background:0 0!important}.dialog-warning td{padding:0 1em 0 0;padding-top:0;padding-right:1rem;padding-bottom:0;padding-left:0}.dialog-warning h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:left;border-radius:10px;display:block;background:var(--color-toolkit-dialog-background);position:fixed;top:50%;left:50%;margin:0 auto;transform:translate(-50%,-50%);z-index:10000000}.dialog-modal .close{float:right;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-modal ol,.dialog-modal p,.dialog-modal ul{margin:1px 0 0 0}.dialog-modal table{width:auto}.dialog-modal tr{vertical-align:text-top}.dialog-modal tr:hover{background:0 0!important}.dialog-modal td{padding:0 1em 0 0;padding-top:0;padding-right:1rem;padding-bottom:0;padding-left:0}.dialog-modal h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal h3{margin-top:0}.btn-collapse{cursor:pointer}.scrollx{overflow-x:auto;overflow-y:hidden;display:block;padding:0;margin:0;border:none}.tabs .tabs>label{font-size:90%}ul.tabs{border-bottom:1px solid var(--color-toolkit-tabs-section-border);list-style:none;padding-left:0}ul.tabs li{display:flex}.tabs{display:flex;flex-wrap:wrap;width:100%;min-width:100%}.tabs>*{order:2}.tabs>input[type=radio]{display:none}.tabs>label,.tabs>li>a{order:1;padding:.7em;margin:0 .7em;letter-spacing:.5px;text-transform:uppercase;border:solid var(--color-toolkit-tabs-label-border);border-width:0 0 2px 0;color:unset;-webkit-touch-callout:none;user-select:none;cursor:pointer}.tabs>label.active,.tabs>li>a.active{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}.tabs>label:hover,.tabs>li>a:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}.tabs>section{min-width:100%;padding:.7rem 0;box-sizing:border-box;border-top:1px solid var(--color-toolkit-tabs-section-border);display:none}.tabs>label:last-of-type{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font);letter-spacing:-.1px}.tabs>section:last-of-type{display:block}html body .tabs>input:checked~section{display:none}html body .tabs>input:checked~label{position:inherited;background:inherit;border-bottom:2px solid transparent;font-weight:400;color:inherit}html body .tabs>input:checked~label:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}html body .tabs>input:checked+label{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}html body .tabs>input:checked+label+section{display:block}select{height:2.4rem;margin-top:0;margin-right:1rem;margin-bottom:0;margin-left:0;padding:.2rem!important;color:var(--color-search-font);font-size:.9rem;z-index:2}select:focus,select:hover{cursor:pointer}@supports ((background-position-x:100%) and ((appearance:none) or (-webkit-appearance:none) or (-moz-appearance:none))){select{appearance:none;-webkit-appearance:none;-moz-appearance:none;border-width:0 2rem 0 0;border-color:transparent;background:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat;background-position-x:calc(100% + 2rem);background-size:2rem;background-origin:content-box;background-color:var(--color-toolkit-select-background);outline:medium none;text-overflow:ellipsis;border-radius:5px}select:focus,select:hover{background-color:var(--color-toolkit-select-background-hover)}select option{background-color:var(--color-base-background)}@media (prefers-color-scheme:dark){html.theme-auto select,html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}input.checkbox-onoff[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;display:inline-block;width:2.5em;height:.7em;box-shadow:none!important;margin:0 16px;border-radius:10px;position:relative}input.checkbox-onoff[type=checkbox]:focus,input.checkbox-onoff[type=checkbox]:hover{outline:0}input.checkbox-onoff[type=checkbox]:focus::after{content:"";position:absolute;width:3.5em;height:1.65em;border:1px solid var(--color-btn-background);border-radius:12px;box-shadow:var(--color-btn-background) 0 0 3px;z-index:10000;top:-.55em;left:-.6em}input.checkbox-onoff[type=checkbox]::before{position:absolute;top:-.5em;display:flex;justify-content:center;align-items:center;font-size:.75em;width:1.875em;height:1.875em;border-radius:50%}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked,input.checkbox-onoff[type=checkbox]{background:var(--color-toolkit-checkbox-onoff-off-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked::before,input.checkbox-onoff[type=checkbox]::before{left:-.5em;content:"\2715";color:var(--color-toolkit-checkbox-onoff-off-mark-color);background:var(--color-toolkit-checkbox-onoff-off-mark-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox],input.checkbox-onoff[type=checkbox]:checked{background:var(--color-toolkit-checkbox-onoff-on-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]::before,input.checkbox-onoff[type=checkbox]:checked::before{left:calc(100% - 1.5em);content:"\2713";color:var(--color-toolkit-checkbox-onoff-on-mark-color);background:var(--color-toolkit-checkbox-onoff-on-mark-background)}@supports (transform:rotate(-45deg)){input[type=checkbox]:not(.checkbox-onoff){-webkit-appearance:none;-moz-appearance:none;appearance:none;width:20px;height:20px;cursor:pointer;position:relative;top:0;left:0;border:2px solid var(--color-toolkit-checkbox-input-border);border-radius:.3em}input[type=checkbox]:not(.checkbox-onoff)::after{content:'';width:9px;height:5px;position:absolute;top:3px;left:2px;border:3px solid var(--color-toolkit-checkbox-label-border);border-top:none;border-right:none;background:0 0;opacity:0;transform:rotate(-45deg)}input[type=checkbox]:not(.checkbox-onoff):checked::after{border-color:var(--color-toolkit-checkbox-input-border);opacity:1}input[type=checkbox][disabled]:not(.checkbox-onoff){border:inherit;background-color:transparent!important;cursor:inherit}input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after{opacity:.5}}@media screen and (max-width:50em){.tabs>label{width:100%}}.loader,.loader::after{border-radius:50%;width:2em;height:2em}.loader{margin:1em auto;font-size:10px;position:relative;text-indent:-9999em;border-top:.5em solid var(--color-toolkit-loader-border);border-right:.5em solid var(--color-toolkit-loader-border);border-bottom:.5em solid var(--color-toolkit-loader-border);border-left:.5em solid var(--color-toolkit-loader-borderleft);-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:load8 1.2s infinite linear;animation:load8 1.2s infinite linear}@-webkit-keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.engine-tooltip{display:none;position:absolute;padding:.5rem 1rem;margin:0 0 0 2rem;border:1px solid var(--color-toolkit-engine-tooltip-border);background:var(--color-toolkit-engine-tooltip-background);font-size:14px;font-weight:400;z-index:1000000;text-align:left;border-radius:10px}.engine-tooltip:hover,td:hover .engine-tooltip,th:hover .engine-tooltip{display:inline-block}.stacked-bar-chart{margin:0;padding:0 .125rem 0 4rem;width:100%;width:-moz-available;width:-webkit-fill-available;width:fill;flex-direction:row;flex-wrap:nowrap;align-items:center;display:inline-flex}.stacked-bar-chart-value{width:3rem;display:inline-block;position:absolute;padding:0 .5rem;text-align:right}.stacked-bar-chart-base{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset}.stacked-bar-chart-median{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:var(--color-base-font);border:1px solid rgba(var(--color-base-font-rgb),.9);padding:.3rem 0}.stacked-bar-chart-rate80{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border:1px solid rgba(var(--color-base-font-rgb),.3);padding:.3rem 0}.stacked-bar-chart-rate95{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-bottom:1px dotted rgba(var(--color-base-font-rgb),.5);padding:0}.stacked-bar-chart-rate100{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-left:1px solid rgba(var(--color-base-font-rgb),.9);padding:.4rem 0;width:1px}/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */.autocomplete{position:absolute;width:44rem;max-height:0;overflow-y:hidden;text-align:left;border-radius:10px}.autocomplete:active,.autocomplete:focus,.autocomplete:hover{background-color:var(--color-autocomplete-background)}.autocomplete:empty{display:none}.autocomplete>ul{list-style-type:none;margin:0;padding:0}.autocomplete>ul>li{cursor:pointer;padding:.5rem 1rem}.autocomplete>ul>li.active,.autocomplete>ul>li:active,.autocomplete>ul>li:focus,.autocomplete>ul>li:hover{background-color:var(--color-autocomplete-background-hover)}.autocomplete>ul>li.active a:active,.autocomplete>ul>li.active a:focus,.autocomplete>ul>li.active a:hover,.autocomplete>ul>li:active a:active,.autocomplete>ul>li:active a:focus,.autocomplete>ul>li:active a:hover,.autocomplete>ul>li:focus a:active,.autocomplete>ul>li:focus a:focus,.autocomplete>ul>li:focus a:hover,.autocomplete>ul>li:hover a:active,.autocomplete>ul>li:hover a:focus,.autocomplete>ul>li:hover a:hover{text-decoration:none}.autocomplete>ul>li.locked{cursor:inherit}.autocomplete.open{display:block;background-color:var(--color-autocomplete-background);color:var(--color-autocomplete-font);max-height:32rem;overflow-y:auto;z-index:100;margin-top:3.5rem;border-radius:.8rem;box-shadow:0 2px 8px rgba(34,38,46,.25)}.autocomplete.open:empty{display:none}@media screen and (max-width:50em){.autocomplete{width:100%}.autocomplete>ul>li{padding:1rem}}#main_results #results.image-detail-open.only_template_images{width:min(98%,59.25rem)!important}#main_results #results.only_template_images.image-detail-open #backToTop{left:56.75rem!important;right:inherit}article.result-images .detail{display:none}#results.image-detail-open article.result-images[data-vim-selected] .detail{display:flex;flex-direction:column;position:fixed;left:60rem;right:0;top:7.6rem;transition:top 64ms ease-in 0s;bottom:0;background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-background);z-index:10000;padding:4rem 3rem 3rem 3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:block;flex:1;text-align:left;width:100%;border:none;text-decoration:none}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{padding:0;margin:0;border:none;object-fit:contain;width:inherit;height:inherit;max-width:100%;min-height:inherit;max-height:calc(100vh - 25rem - 7rem);background:inherit}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels{color:var(--color-result-detail-font);max-height:16rem;min-height:16rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels hr{border-top:1px solid var(--color-result-detail-hr);border-bottom:none}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4{height:2rem;overflow:hidden;text-overflow:ellipsis;font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{color:var(--color-result-detail-label-font);font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{display:inline-block;width:12rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{text-align:left}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content{height:2rem;overflow:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url:hover{position:relative;overflow:inherit!important;background:var(--color-result-detail-background);text-overflow:inherit!important}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:active,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:visited{color:var(--color-result-detail-link)}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover{text-decoration:underline}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close{top:1rem;left:1rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{top:1rem;right:6rem;padding-top:.4rem;padding-right:.5rem;padding-bottom:.4rem;padding-left:.3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{top:1rem;right:2rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{border-radius:50%;display:block;width:1.5rem;height:1.5rem;position:absolute;filter:opacity(40%);z-index:2000002}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span{display:block;width:1.5rem;height:1.5rem;text-align:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span::before,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span::before{vertical-align:sub}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:visited{color:var(--color-result-detail-font);background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-font)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover{filter:opacity(80%)}#results.image-detail-open article.result-images[data-vim-selected] .detail .loader{position:absolute;top:1rem;right:50%;border-top:.5em solid var(--color-result-detail-loader-border);border-right:.5em solid var(--color-result-detail-loader-border);border-bottom:.5em solid var(--color-result-detail-loader-border);border-left:.5em solid var(--color-result-detail-loader-borderleft)}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail{top:0}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail a.result-images-source img{max-height:calc(100vh - 25rem)}@media screen and (max-width:79.75em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;left:0}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:flex;flex-direction:column;justify-content:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 24rem)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{right:1rem}}@media screen and (max-width:50em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;left:0;padding:1rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 20rem);margin:0}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{width:inherit;margin-right:1rem}}.dialog-modal{animation-name:dialogmodal;animation-duration:.13s}@keyframes dialogmodal{0%{opacity:0}50%{opacity:.5;transform:translate(-50%,-50%) scale(1.05)}}input.checkbox-onoff[type=checkbox]::before{transition:left .25s}iframe[src^="https://w.soundcloud.com"]{height:120px}iframe[src^="https://www.deezer.com"]{height:94px}iframe[src^="https://www.mixcloud.com"]{height:250px}iframe[src^="https://bandcamp.com/EmbeddedPlayer"]{height:350px}iframe[src^="https://bandcamp.com/EmbeddedPlayer/track"]{height:120px}iframe[src^="https://genius.com/songs"]{height:65px}.info-page code{font-family:monospace;color:var(--color-doc-code);background-color:var(--color-doc-code-background);padding:2px 5px;border-radius:5px}.stats_endpoint .github-issue-button{display:block;padding:8px 16px;font-family:sans-serif;font-size:16px;color:#fff;background-color:#238636;border:#2ea043;border-radius:10px!important;box-shadow:transparent 0 0 0 0}.stats_endpoint .github-issue-button:hover{background-color:#2ea043}.stats_endpoint .issue-hide{display:none}.stats_endpoint input[type=checked]{position:absolute}.stats_endpoint label{margin:1rem 1rem 1rem 0}.stats_endpoint .step_content{margin:1rem 1rem 1rem 2rem}.stats_endpoint .step1,.stats_endpoint .step2{visibility:hidden}.stats_endpoint .step1_delay{transition:visibility 0s linear 4s}.stats_endpoint #step1:checked~.step1,.stats_endpoint #step2:checked~.step2{visibility:visible}.engine-stats{border-spacing:0;border-collapse:collapse}.engine-stats tr td,.engine-stats tr th{border-bottom:1px solid var(--color-result-border);padding:.25rem}.engine-stats table.engine-tooltip{border-spacing:0;border-collapse:collapse}.engine-stats table.engine-tooltip td,.engine-stats table.engine-tooltip th{border:none}.engine-stats .engine-name{width:20rem}.engine-stats .engine-score{width:7rem;text-align:right}.engine-stats .engine-reliability{text-align:right}failed-test,table.engine-error td.engine-error-type,table.engine-error th.engine-error-type{width:10rem}.engine-errors{margin-top:3rem}.engine-errors table.engine-error{max-width:1280px;margin:1rem 0 3rem 0;border:1px solid var(--color-result-border);text-align:left}.engine-errors table.engine-error tr td,.engine-errors table.engine-error tr th{padding:.5rem}.engine-errors table.engine-error span.log_parameters{border-right:1px solid solid var(--color-result-border);padding:0 1rem 0 0;margin:0 0 0 .5rem}.bar-chart-value{width:3em;display:inline-block;text-align:right;padding-right:.5rem}.bar-chart-graph{width:calc(100% - 5rem);display:inline-block}.bar-chart-bar{border:3px solid #5bc0de;margin:1px 0}.bar-chart-serie1{border:3px solid #5bc0de;margin:1px 0;float:left}.bar-chart-serie2{border:3px solid #deb15b;margin:1px 0;float:left}.bar0{width:0;border:0}.bar1{width:1%}.bar2{width:2%}.bar3{width:3%}.bar4{width:4%}.bar5{width:5%}.bar6{width:6%}.bar7{width:7%}.bar8{width:8%}.bar9{width:9%}.bar10{width:10%}.bar11{width:11%}.bar12{width:12%}.bar13{width:13%}.bar14{width:14%}.bar15{width:15%}.bar16{width:16%}.bar17{width:17%}.bar18{width:18%}.bar19{width:19%}.bar20{width:20%}.bar21{width:21%}.bar22{width:22%}.bar23{width:23%}.bar24{width:24%}.bar25{width:25%}.bar26{width:26%}.bar27{width:27%}.bar28{width:28%}.bar29{width:29%}.bar30{width:30%}.bar31{width:31%}.bar32{width:32%}.bar33{width:33%}.bar34{width:34%}.bar35{width:35%}.bar36{width:36%}.bar37{width:37%}.bar38{width:38%}.bar39{width:39%}.bar40{width:40%}.bar41{width:41%}.bar42{width:42%}.bar43{width:43%}.bar44{width:44%}.bar45{width:45%}.bar46{width:46%}.bar47{width:47%}.bar48{width:48%}.bar49{width:49%}.bar50{width:50%}.bar51{width:51%}.bar52{width:52%}.bar53{width:53%}.bar54{width:54%}.bar55{width:55%}.bar56{width:56%}.bar57{width:57%}.bar58{width:58%}.bar59{width:59%}.bar60{width:60%}.bar61{width:61%}.bar62{width:62%}.bar63{width:63%}.bar64{width:64%}.bar65{width:65%}.bar66{width:66%}.bar67{width:67%}.bar68{width:68%}.bar69{width:69%}.bar70{width:70%}.bar71{width:71%}.bar72{width:72%}.bar73{width:73%}.bar74{width:74%}.bar75{width:75%}.bar76{width:76%}.bar77{width:77%}.bar78{width:78%}.bar79{width:79%}.bar80{width:80%}.bar81{width:81%}.bar82{width:82%}.bar83{width:83%}.bar84{width:84%}.bar85{width:85%}.bar86{width:86%}.bar87{width:87%}.bar88{width:88%}.bar89{width:89%}.bar90{width:90%}.bar91{width:91%}.bar92{width:92%}.bar93{width:93%}.bar94{width:94%}.bar95{width:95%}.bar96{width:96%}.bar97{width:97%}.bar98{width:98%}.bar99{width:99%}.bar100{width:100%}.osm-map-box{height:300px;width:100%;margin:10px 0}#main_index{margin-top:26vh}.index{text-align:center}.index .title{background:url(../img/searxng.png) no-repeat;min-height:4rem;margin:4rem auto;background-position:center;background-size:contain}.index h1{font-size:4em;visibility:hidden}.index #search,.index #search_header{margin:0 auto;background:inherit;border:inherit;padding:0;display:block}.index .search_filters{display:block;margin:1em 0}.index .category label{padding:6px 10px;border-bottom:initial!important}@media screen and (max-width:79.75em){div.title h1{font-size:1em}#main_index{margin-top:6em}}#tab-content-query table td,#tab-content-query table th{text-align:right!important;height:3rem}#main_preferences form{width:100%}#main_preferences fieldset{margin:8px;border:none}#main_preferences legend{margin:0;padding:5px 0 0 0;display:block;float:left;width:300px}#main_preferences .value{margin:0;padding:0;float:left;width:15em}#main_preferences .value input[type=text],#main_preferences .value select{font-size:inherit!important;margin-top:0;margin-right:1rem;margin-bottom:0;margin-left:0}#main_preferences .value select{width:14rem}#main_preferences .value input[type=text]{width:13.25rem;color:var(--color-toolkit-input-text-font);border:none;background:none repeat scroll 0 0 var(--color-toolkit-select-background);padding:.2rem .4rem;height:2rem;border-radius:5px}#main_preferences .value input[type=text]:focus,#main_preferences .value input[type=text]:hover{background-color:var(--color-toolkit-select-background-hover)}#main_preferences .value input:focus,#main_preferences .value select:focus{outline:0;box-shadow:0 0 1px 1px var(--color-btn-background)}#main_preferences .description{margin:0;padding:5px 0 0 0;float:right;width:50%;color:var(--color-settings-engine-description-font);font-size:90%}#main_preferences table{border-collapse:collapse}#main_preferences table td{text-align:center}#main_preferences .category{margin-right:.5rem}#main_preferences .category label{border:2px solid transparent;padding:.2rem .4rem;border-radius:5px}#main_preferences .category input[type=checkbox]:checked+label{border:2px solid var(--color-categories-item-border-selected)}#main_preferences table.table_engines td{height:3.75rem}#main_preferences table.table_engines th.name label{cursor:pointer}#main_preferences table.table_engines th.name .engine-tooltip{margin-top:1.8rem;left:calc((100% - 85em)/ 2 + 10em);max-width:40rem}#main_preferences table.table_engines th.name .engine-tooltip .engine-description{margin-top:.5rem}#main_preferences table.table_engines .engine-group{text-align:left;font-weight:400;background:var(--color-settings-engine-group-background)}#main_preferences table.table_engines .name,#main_preferences table.table_engines .shortcut{text-align:left}#main_preferences table.cookies{width:100%;direction:ltr}#main_preferences table.cookies td,#main_preferences table.cookies th{text-align:left;font-family:monospace;font-size:1rem;padding:.5em;vertical-align:top}#main_preferences table.cookies td:first-child{word-break:keep-all;width:14rem;padding-right:1rem}#main_preferences table.cookies td:last-child{word-break:break-all}#main_preferences table.cookies>tbody>tr:nth-child(even)>td,#main_preferences table.cookies>tbody>tr:nth-child(even)>th{background-color:var(--color-settings-tr-hover)}#main_preferences .preferences_back{background:none repeat scroll 0 0 var(--color-btn-background);color:var(--color-btn-font);border:0 none;border-radius:10px;cursor:pointer;display:inline-block;margin:2px 4px;padding:.7em}#main_preferences .preferences_back a{color:var(--color-settings-return-font)}#main_preferences .preferences_back a::first-letter{text-transform:uppercase}#main_preferences div.selectable_url pre{width:100%}@media screen and (max-width:79.75em){.preferences_back{clear:both}.engine-tooltip{left:10em!important}}#search{padding:0;margin:0}#search_header{padding-top:1.5em;padding-right:2em;padding-left:7rem;margin:0;background:var(--color-header-background);border-bottom:1px solid var(--color-header-border);display:grid;column-gap:1.2rem;row-gap:1rem;grid-template-columns:3rem 1fr;grid-template-areas:"logo search" "spacer categories"}.category{display:inline-block;position:relative;margin-right:1rem;padding:0}.category input{display:none}.category label{cursor:pointer;padding:.2rem 0;display:inline-flex;text-transform:capitalize;font-size:.9em;border-bottom:2px solid transparent;-webkit-touch-callout:none;user-select:none}.category label svg{padding-right:.2rem}.category label div.category_name{margin:auto 0}.category input[type=checkbox]:checked+label{color:var(--color-categories-item-selected-font);border-bottom:2px solid var(--color-categories-item-border-selected)}#search_logo{grid-area:logo;display:flex;align-items:center;justify-content:center}#search_logo svg{flex:1;width:30px;height:30px;margin:.5rem 0 auto 0}.search_categories{grid-area:categories}.search_categories .help{display:none}.search_categories:hover .help{display:block;position:absolute;background:var(--color-base-background);padding:1rem .6rem .6rem 0;z-index:1000;width:100%;left:-.1rem}#search_view{grid-area:search}.search_box{border-radius:.8rem;width:44rem;display:inline-flex;flex-direction:row;white-space:nowrap;box-shadow:var(--color-search-shadow)}#clear_search{display:block;border-collapse:separate;box-sizing:border-box;width:1.8rem;margin:0;padding:.8rem .2rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:10000}#clear_search:hover{color:var(--color-search-background-hover)}#clear_search.empty *{display:none}html.no-js #clear_search.hide_if_nojs{display:none}#q,#send_search{display:block;margin:0;padding:.8rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:2}#q{width:100%;padding-left:1rem;padding-right:0!important;border-radius:.8rem 0 0 .8rem}#q::-ms-clear,#q::-webkit-search-cancel-button{display:none}#send_search{border-radius:0 .8rem .8rem 0}#send_search:hover{cursor:pointer;background-color:var(--color-search-background-hover);color:var(--color-search-background)}.no-js #clear_search,.no-js #send_search{width:auto!important;border-left:1px solid var(--color-search-border)}.search_filters{margin-top:.6rem;margin-right:0;margin-bottom:0;margin-left:10.6rem;display:flex;overflow-x:auto;overscroll-behavior-inline:contain}.search_filters select{background-color:inherit}.search_filters select:focus,.search_filters select:hover{color:var(--color-base-font)}@media screen and (max-width:79.75em){#search_header{padding:1.5em .5rem 0 .5rem;column-gap:.5rem}.search_filters{margin-top:.6rem;margin-right:0;margin-bottom:0;margin-left:3.5rem}#categories{font-size:90%;clear:both}#categories .checkbox_container{margin:auto;margin-top:2px}}@media screen and (max-width:79.75em) and (hover:none){#main_index #categories_container,#main_results #categories_container{width:max-content}#main_index #categories_container .category,#main_results #categories_container .category{display:inline-block;width:auto}#main_index #categories,#main_results #categories{width:100%;text-align:left;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch}}@media screen and (max-width:50em){#search_header{width:100%;margin:0;padding:.1rem 0 0 0;column-gap:0;row-gap:0;grid-template-areas:"logo search" "categories categories"}.search_logo{padding:0}.search_box{width:98%;display:flex;margin:0 auto}#q{width:100%;flex:1}.search_filters{margin:0}.category{display:inline-block;width:auto;margin:0}.category label{padding:1rem!important;margin:0!important}.category label svg{display:none}#search_view:focus-within{display:block;background-color:var(--color-search-background);position:absolute;top:0;height:100%;width:100%;z-index:10000}#search_view:focus-within .search_box{border-bottom:1px solid var(--color-search-border);width:100%;border-radius:0;box-shadow:none}#search_view:focus-within .search_box #send_search{margin-right:0!important}#search_view:focus-within .search_box *{border:none;border-radius:0;box-shadow:none}#main_results #q:placeholder-shown~#send_search{margin-right:2.6rem;transition:margin .1s}}@media screen and (max-width:20rem){#search_header{grid-template-areas:"search search" "categories categories"}#search_logo{display:none}}#categories{-webkit-touch-callout:none;user-select:none}#categories::-webkit-scrollbar{width:0;height:0}#categories_container{position:relative}@media screen and (min-width:50em){.center-aligment-yes #main_results{--center-page-width:48rem}}@media screen and (min-width:62rem){.center-aligment-yes #main_results{--center-page-width:60rem}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{--center-page-width:73rem}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-yes #main_results #results{grid-template-columns:60% calc(40% - 5rem);margin-left:0;margin-right:0}.center-aligment-yes #main_results #urls{margin-left:3rem}.center-aligment-yes #main_results #sidebar{margin-right:1rem}.center-aligment-yes #main_results #backToTop{left:calc(60% + 1rem)}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search{width:100%;display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search_header{grid-template-columns:calc(50% - 4.5rem - var(--center-page-width)/ 2) 3rem var(--center-page-width);grid-template-areas:"na logo search" "na spacer categories";column-gap:1.2rem;width:100%;padding-left:0;padding-right:0}.center-aligment-yes #main_results .search_filters{margin-left:.5rem;width:var(--center-page-width)}.center-aligment-yes #main_results #results{margin-right:2rem;margin-left:10rem}.center-aligment-yes #main_results #results.image-detail-open,.center-aligment-yes #main_results #results.only_template_images{align-self:flex-start}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open){margin-left:1.5rem;grid-template-columns:calc(var(--center-page-width) - 5rem - 25rem) 25rem}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open) #backToTop{left:calc(50% - 25rem - 5rem + 1rem + var(--center-page-width)/ 2)}.center-aligment-yes #main_results #results .result .content{max-width:inherit}.center-aligment-yes #main_results #urls{margin-left:0}.center-aligment-yes #main_results #sidebar{margin-right:0}}.ion-icon{display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(1,1)}.ion-icon-small{width:1rem;height:1rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(1,1)}.ion-icon-big{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(1,1)}html{font-family:sans-serif;font-size:.9em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;color:var(--color-base-font);background-color:var(--color-base-background);padding:0;margin:0}body,main{padding:0;margin:0}body{display:flex;flex-direction:column;height:100vh;margin:0}main{width:100%;margin-bottom:2rem;flex:1}.page_with_header{margin:2em auto;width:85em}footer{clear:both;min-height:4rem;padding:1rem 0;width:100%;text-align:center;background-color:var(--color-footer-background);border-top:1px solid var(--color-footer-border);overflow:hidden}footer p{font-size:.9em}.page_with_header .logo{height:40px}#results button[type=submit],input[type=submit]{padding:.7rem;display:inline-block;background:var(--color-btn-background);color:var(--color-btn-font);border-radius:10px;border:0;cursor:pointer}a{text-decoration:none;color:var(--color-url-font)}a:visited{color:var(--color-url-visited-font)}a:visited .highlight{color:var(--color-url-visited-font)}article[data-vim-selected]{background:var(--color-result-vim-selected);border-left:.2rem solid var(--color-result-vim-arrow);border-radius:0 10px 10px 0}article.result-images[data-vim-selected]{background:var(--color-result-vim-arrow);border:none;border-radius:10px}article.result-images[data-vim-selected] .image_thumbnail{filter:opacity(60%)}article.result-images[data-vim-selected] span.source,article.result-images[data-vim-selected] span.title{color:var(--color-result-image-span-font-selected)}article[data-vim-selected].category-files,article[data-vim-selected].category-map,article[data-vim-selected].category-music,article[data-vim-selected].category-news,article[data-vim-selected].category-social,article[data-vim-selected].category-videos{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{margin:.125rem 0;padding:1rem;border-left:.2rem solid transparent}.result h3{font-size:1.2rem;word-wrap:break-word;margin:.4rem 0 .4rem 0;padding:0}.result h3 a{color:var(--color-result-link-font);font-weight:400;font-size:1.1em}.result h3 a:visited{color:var(--color-result-link-visited-font)}.result h3 a:focus,.result h3 a:hover{text-decoration:underline;border:none;outline:0}.result .cache_link,.result .proxyfied_link{font-size:.9em!important}.result .content,.result .stat{font-size:.9em;margin:0;padding:0;max-width:54em;word-wrap:break-word;line-height:1.24}.result .content .highlight,.result .stat .highlight{color:var(--color-result-description-highlight-font);background:inherit;font-weight:700}.result .altlink a{font-size:.9em;margin:0 10px 0 0;padding:5px 10px;border-radius:5px;background:var(--color-show-btn-background);color:var(--color-show-btn-font);cursor:pointer}.result .altlink a:hover{background:var(--color-btn-background);color:var(--color-btn-font)}.result .codelines .highlight{color:inherit;background:inherit;font-weight:400}.result .url_wrapper{display:flex;font-size:1rem;color:var(--color-result-url-font);flex-wrap:nowrap;overflow:hidden;flex-direction:row;margin:0;padding:0}.result .url_wrapper .url_o1{white-space:nowrap;flex-shrink:1}.result .url_wrapper .url_o1::after{content:" ";width:1ch;display:inline-block}.result .url_wrapper .url_o2{overflow:hidden;white-space:nowrap;flex-basis:content;flex-grow:0;flex-shrink:1;text-align:right}.result .url_wrapper .url_o2 .url_i2{float:right}.result .published_date,.result .result_author,.result .result_length,.result .result_shipping,.result .result_source_country{font-size:.8em;color:var(--color-result-publishdate-font)}.result .result_price{font-size:1.2em;color:var(--color-result-description-highlight-font)}.result img.thumbnail{float:left;padding-top:.6rem;padding-right:1rem;width:20rem;height:unset}.result img.image{float:left;padding-top:.6rem;padding-right:1rem;width:7rem;max-height:7rem;object-fit:scale-down;object-position:right top}.result .break{clear:both}.result-paper .attributes{display:table;border-spacing:.125rem}.result-paper .attributes div{display:table-row}.result-paper .attributes div span{font-size:.9rem;margin-top:.25rem;display:table-cell}.result-paper .attributes div span time{font-size:.9rem}.result-paper .attributes div span:first-child{color:var(--color-base-font);min-width:10rem}.result-paper .attributes div span:nth-child(2){color:var(--color-result-publishdate-font)}.result-paper .content{margin-top:.25rem}.result-paper .comments{font-size:.9rem;margin:.25rem 0 0 0;padding:0;word-wrap:break-word;line-height:1.24;font-style:italic}.template_group_images{display:flex;flex-wrap:wrap}.template_group_images::after{flex-grow:10;content:""}.category-files,.category-map,.category-music,.category-news,.category-social,.category-videos{border:1px solid var(--color-result-border);margin:1rem .5rem 0 .5rem!important;border-radius:10px}.category-social .image{width:auto!important;min-width:48px;min-height:48px;padding:0 5px 25px 0!important}.audio-control audio{width:100%;padding:10px 0 0 0}.embedded-content iframe{width:100%;padding:10px 0 0 0}.result-videos .content{overflow:hidden}.result-videos .embedded-video iframe{width:100%;aspect-ratio:16/9;padding:10px 0 0 0}@supports not (aspect-ratio:1 / 1){.result-videos .embedded-video iframe{height:calc(45rem * 9 / 16)}}.engines{float:right;display:flex;flex-wrap:wrap;justify-content:flex-end;color:var(--color-result-engines-font)}.engines span{font-size:smaller;margin-top:0;margin-bottom:0;margin-right:.5rem;margin-left:0}.small_font{font-size:.8em}.highlight{color:var(--color-result-link-font-highlight);background:inherit}.empty_element{font-style:italic}.result-images{flex-grow:1;padding:.5rem .5rem 3rem .5rem;margin:.25rem;border:none!important;height:12rem}.result-images>a{position:relative}.result-images img{margin:0;padding:0;border:none;height:100%;width:100%;object-fit:cover;vertical-align:bottom;background:var(--color-result-image-background)}.result-images span.source,.result-images span.title{display:block;position:absolute;width:100%;font-size:.9rem;color:var(--color-result-image-span-font);padding:.5rem 0 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.result-images span.source{padding:1.8rem 0 0 0;font-size:.7rem}.result-map img.image{float:right!important;height:100px!important;width:auto!important}.result-map table{font-size:.9em;width:auto;border-collapse:separate;border-spacing:0 .35rem}.result-map table th{font-weight:inherit;width:17rem;vertical-align:top;text-align:left}.result-map table td{vertical-align:top;text-align:left}.hidden{display:none!important}#results{margin-top:1rem;margin-right:2rem;margin-bottom:0;margin-left:10rem;display:grid;grid-template-columns:45rem 25rem;grid-template-rows:min-content min-content 1fr min-content;gap:0 5rem;grid-template-areas:"corrections sidebar" "answers sidebar" "urls sidebar" "pagination sidebar"}#results #sidebar :first-child,#results #urls :first-child{margin-top:0}#urls{padding:0;grid-area:urls}#suggestions .wrapper{display:flex;flex-flow:column;justify-content:flex-end}#suggestions .wrapper form{display:inline-block;flex:1 1 50%}#infoboxes input,#suggestions input{padding:0;margin:3px;font-size:.9em;display:inline-block;background:0 0;color:var(--color-result-search-url-font);cursor:pointer;width:calc(100%);text-overflow:ellipsis;overflow:hidden;text-align:left}#infoboxes .infobox .url a,#infoboxes input[type=submit],#suggestions .infobox .url a,#suggestions input[type=submit]{color:var(--color-result-link-font);text-decoration:none;font-size:.9rem}#infoboxes .infobox .url a:hover,#infoboxes input[type=submit]:hover,#suggestions .infobox .url a:hover,#suggestions input[type=submit]:hover{text-decoration:underline}#corrections{grid-area:corrections;display:flex;flex-flow:row wrap;margin:0 0 1em 0}#corrections h4,#corrections input[type=submit]{display:inline-block;padding:.5rem;margin:.5rem}#corrections input[type=submit]{font-size:.8rem;border-radius:5px}#apis .title,#search_url .title,#suggestions .title{margin:2em 0 .5em 0;color:var(--color-base-font)}#answers{grid-area:answers;background:var(--color-answer-background);padding:1rem;margin:1rem 0;margin-top:0;color:var(--color-answer-font);border-radius:10px}#answers h4{display:none}#answers span{overflow-wrap:anywhere}#infoboxes form{min-width:210px}#sidebar{grid-area:sidebar;word-wrap:break-word;color:var(--color-sidebar-font)}#sidebar .infobox{margin:10px 0 10px;border:1px solid var(--color-sidebar-border);padding:1rem;font-size:.9em;border-radius:10px}#sidebar .infobox h2{margin:0 0 .5em 0}#sidebar .infobox img{max-width:100%;max-height:12em;display:block;margin:0 auto;padding:0}#sidebar .infobox dt{font-weight:700}#sidebar .infobox .attributes dl{margin:.5em 0}#sidebar .infobox .attributes dt{display:inline;margin-top:.5em;margin-right:.25em;margin-bottom:.5em;margin-left:0;padding:0}#sidebar .infobox .attributes dd{display:inline;margin:.5em 0;padding:0}#sidebar .infobox input{font-size:1em}#sidebar .infobox br{clear:both}#sidebar .infobox .attributes,#sidebar .infobox .urls{clear:both}#search_url{margin-top:8px}#search_url div.selectable_url pre{width:200em}#links_on_top{position:absolute;right:1.8rem;text-align:right;top:2.2rem;padding:0;border:0;display:flex;align-items:center;font-size:1em;color:var(--color-search-font)}#links_on_top a{display:flex;align-items:center;margin-left:1em}#links_on_top a svg{font-size:1.2em;margin-right:.125em}#links_on_top a,#links_on_top a:active *,#links_on_top a:hover *,#links_on_top a:link *,#links_on_top a:visited *{color:var(--color-search-font)}#pagination{grid-area:pagination}#pagination br{clear:both}#apis{margin-top:8px;clear:both}#backToTop{border:1px solid var(--color-backtotop-border);margin:0;padding:0;font-size:1em;background:var(--color-backtotop-background);position:fixed;bottom:8rem;left:56.3rem;transition:opacity .5s;opacity:0;border-radius:10px}#backToTop a{display:block;margin:0;padding:.7em}#backToTop a,#backToTop a:active,#backToTop a:hover,#backToTop a:visited{color:var(--color-backtotop-font)}#results.scrolling #backToTop{opacity:1}@media screen and (max-width:calc(79.75em - 0.5px)){#links_on_top span{display:none}}@media screen and (max-width:52rem){body.results_endpoint #links_on_top .link_on_top_about,body.results_endpoint #links_on_top .link_on_top_donate{display:none}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-no #links_on_top span{display:none}.center-aligment-no .page_with_header{margin:2rem .5rem;width:auto}.center-aligment-no #infoboxes{position:inherit;max-width:inherit}.center-aligment-no #infoboxes .infobox{clear:both}.center-aligment-no #infoboxes .infobox img{float:left;max-width:10em;margin-top:.5em;margin-right:.5em;margin-bottom:.5em;margin-left:0}.center-aligment-no #sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}.center-aligment-no #sidebar input{border:0}.center-aligment-no #apis{display:none}.center-aligment-no #search_url{display:none}.center-aligment-no .result .thumbnail{max-width:98%}.center-aligment-no .result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.center-aligment-no .result .engines{float:right;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.center-aligment-no .result-images{border-bottom:none!important}.center-aligment-no .image_result{max-width:98%}.center-aligment-no .image_result img{max-width:98%}.center-aligment-no #backToTop{display:none}.center-aligment-no #pagination{margin:2rem 0 0 0!important}.center-aligment-no #main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}}#main_results div#results.only_template_images{margin:1rem .5rem 0 .5rem;display:grid;grid-template-columns:100%;grid-template-rows:min-content min-content min-content 1fr min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}#main_results div#results.only_template_images #sidebar{display:none}#main_results div#results.only_template_images #urls{margin:0;display:flex;flex-wrap:wrap}#main_results div#results.only_template_images #urls::after{flex-grow:10;content:""}#main_results div#results.only_template_images #backToTop{left:auto;right:1rem}#main_results div#results.only_template_images #pagination{margin-right:4rem}@media screen and (max-width:50em){#links_on_top span{display:none}.page_with_header{margin:2rem .5rem;width:auto}#infoboxes{position:inherit;max-width:inherit}#infoboxes .infobox{clear:both}#infoboxes .infobox img{float:left;max-width:10em;margin-top:.5em;margin-right:.5em;margin-bottom:.5em;margin-left:0}#sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}#sidebar input{border:0}#apis{display:none}#search_url{display:none}.result .thumbnail{max-width:98%}.result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.result .engines{float:right;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.result-images{border-bottom:none!important}.image_result{max-width:98%}.image_result img{max-width:98%}#backToTop{display:none}#pagination{margin:2rem 0 0 0!important}#main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}html{background-color:var(--color-base-background-mobile)}#main_results div#results{grid-template-columns:100%;margin:1rem 0 0 0}#links_on_top{top:.8rem;right:.7rem}#main_index #links_on_top{top:.5rem;right:.5rem}#results{margin:0;padding:0}#pagination{margin:2rem 1rem 0 1rem!important}article[data-vim-selected]{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{background:var(--color-result-background);margin:1rem 0}.result-images{margin:0;height:6rem;background:var(--color-base-background-mobile)}.infobox{border:none!important;background-color:var(--color-sidebar-background)}.result-paper .attributes{display:block}.result-paper .attributes div{display:block}.result-paper .attributes div span{display:inline}.result-paper .attributes div span:first-child{font-weight:700}.result-paper .attributes div span:nth-child(2){margin-left:.5rem}}@media screen and (max-width:35em){.result-videos img.thumbnail{float:none!important}.result-videos .content{overflow:inherit}}pre code{white-space:pre-wrap}/*# sourceMappingURL=searxng.min.css.map */ \ No newline at end of file +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--color-base-font:#444;--color-base-font-rgb:68,68,68;--color-base-background:#fff;--color-base-background-mobile:#f2f5f8;--color-url-font:#334999;--color-url-visited-font:#9822c3;--color-header-background:#fdfbff;--color-header-border:#ddd;--color-footer-background:#fdfbff;--color-footer-border:#ddd;--color-sidebar-border:#ddd;--color-sidebar-font:#000;--color-sidebar-background:#fff;--color-backtotop-font:#444;--color-backtotop-border:#ddd;--color-backtotop-background:#fff;--color-btn-background:#3050ff;--color-btn-font:#fff;--color-show-btn-background:#bbb;--color-show-btn-font:#000;--color-search-border:#bbb;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#fff;--color-search-font:#222;--color-search-background-hover:#3050ff;--color-error:#db3434;--color-error-background:#fae1e1;--color-warning:#dbba34;--color-warning-background:#faf5e1;--color-success:#42db34;--color-success-background:#e3fae1;--color-categories-item-selected-font:#3050ff;--color-categories-item-border-selected:#3050ff;--color-autocomplete-font:#000;--color-autocomplete-border:#bbb;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#fff;--color-autocomplete-background-hover:#e3e3e3;--color-answer-font:#444;--color-answer-background:#fff;--color-result-background:#fff;--color-result-border:#ddd;--color-result-url-font:#000;--color-result-vim-selected:#f7f7f7;--color-result-vim-arrow:#000bbb;--color-result-description-highlight-font:#000;--color-result-link-font:#000bbb;--color-result-link-font-highlight:#000bbb;--color-result-link-visited-font:#9822c3;--color-result-publishdate-font:#777;--color-result-engines-font:#545454;--color-result-search-url-border:#ddd;--color-result-search-url-font:#000;--color-result-image-span-font:#444;--color-result-image-span-font-selected:#fff;--color-result-image-background:#fff;--color-settings-tr-hover:#ebebeb;--color-settings-engine-description-font:#545454;--color-settings-engine-group-background:#0001;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#242424;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#545454;--color-toolkit-kbd-font:#fff;--color-toolkit-kbd-background:#000;--color-toolkit-dialog-border:#ddd;--color-toolkit-dialog-background:#fff;--color-toolkit-tabs-label-border:#fff;--color-toolkit-tabs-section-border:#ddd;--color-toolkit-select-background:#e1e1e1;--color-toolkit-select-border:#ddd;--color-toolkit-select-background-hover:#bbb;--color-toolkit-input-text-font:#222;--color-toolkit-checkbox-onoff-off-background:#ddd;--color-toolkit-checkbox-onoff-on-background:#ddd;--color-toolkit-checkbox-onoff-on-mark-background:#3050ff;--color-toolkit-checkbox-onoff-on-mark-color:#fff;--color-toolkit-checkbox-onoff-off-mark-background:#aaa;--color-toolkit-checkbox-onoff-off-mark-color:#fff;--color-toolkit-checkbox-label-background:#ddd;--color-toolkit-checkbox-label-border:#ddd;--color-toolkit-checkbox-input-border:#3050ff;--color-toolkit-engine-tooltip-border:#ddd;--color-toolkit-engine-tooltip-background:#fff;--color-toolkit-loader-border:rgba(0, 0, 0, 0.2);--color-toolkit-loader-borderleft:rgba(255, 255, 255, 0);--color-doc-code:#300;--color-doc-code-background:#fdd}@media (prefers-color-scheme:dark){:root.theme-auto{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}}:root.theme-dark{--color-base-font:#bbb;--color-base-font-rgb:187,187,187;--color-base-background:#222428;--color-base-background-mobile:#222428;--color-url-font:#8af;--color-url-visited-font:#c09cd9;--color-header-background:#1e1e22;--color-header-border:#333;--color-footer-background:#1e1e22;--color-footer-border:#333;--color-sidebar-border:#555;--color-sidebar-font:#fff;--color-sidebar-background:#292c34;--color-backtotop-font:#bbb;--color-backtotop-border:#333;--color-backtotop-background:#2b2e36;--color-btn-background:#58f;--color-btn-font:#222;--color-show-btn-background:#555;--color-show-btn-font:#fff;--color-search-border:#555;--color-search-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-search-background:#2b2e36;--color-search-font:#fff;--color-search-background-hover:#58f;--color-error:#f55b5b;--color-error-background:#390a0a;--color-warning:#f1d561;--color-warning-background:#39300a;--color-success:#79f56e;--color-success-background:#0e390a;--color-categories-item-selected-font:#58f;--color-categories-item-border-selected:#58f;--color-autocomplete-font:#fff;--color-autocomplete-border:#555;--color-autocomplete-shadow:0 2px 8px rgba(34, 38, 46, 0.25);--color-autocomplete-background:#2b2e36;--color-autocomplete-background-hover:#1e1e22;--color-answer-font:#bbb;--color-answer-background:#26292f;--color-result-background:#26292f;--color-result-border:#333;--color-result-url-font:#fff;--color-result-vim-selected:#1f1f23cc;--color-result-vim-arrow:#8af;--color-result-description-highlight-font:#fff;--color-result-link-font:#8af;--color-result-link-font-highlight:#8af;--color-result-link-visited-font:#c09cd9;--color-result-publishdate-font:#888;--color-result-engines-font:#a4a4a4;--color-result-search-url-border:#555;--color-result-search-url-font:#fff;--color-result-detail-font:#fff;--color-result-detail-label-font:lightgray;--color-result-detail-background:#1a1a1c;--color-result-detail-hr:#555;--color-result-detail-link:#8af;--color-result-detail-loader-border:rgba(255, 255, 255, 0.2);--color-result-detail-loader-borderleft:rgba(0, 0, 0, 0);--color-result-image-span-font:#bbb;--color-result-image-span-font-selected:#222;--color-result-image-background:#222;--color-settings-tr-hover:#2c2c32;--color-settings-engine-description-font:#909090;--color-settings-engine-group-background:#1b1b21;--color-toolkit-badge-font:#fff;--color-toolkit-badge-background:#555;--color-toolkit-kbd-font:#000;--color-toolkit-kbd-background:#fff;--color-toolkit-dialog-border:#555;--color-toolkit-dialog-background:#1e1e22;--color-toolkit-tabs-label-border:#222;--color-toolkit-tabs-section-border:#555;--color-toolkit-select-background:#313338;--color-toolkit-select-border:#555;--color-toolkit-select-background-hover:#373b49;--color-toolkit-input-text-font:#fff;--color-toolkit-checkbox-onoff-off-background:#313338;--color-toolkit-checkbox-onoff-on-background:#313338;--color-toolkit-checkbox-onoff-on-mark-background:#58f;--color-toolkit-checkbox-onoff-on-mark-color:#222;--color-toolkit-checkbox-onoff-off-mark-background:#ddd;--color-toolkit-checkbox-onoff-off-mark-color:#222;--color-toolkit-checkbox-label-background:#222;--color-toolkit-checkbox-label-border:#333;--color-toolkit-checkbox-input-border:#58f;--color-toolkit-engine-tooltip-border:#333;--color-toolkit-engine-tooltip-background:#222;--color-toolkit-loader-border:rgba(255, 255, 255, 0.2);--color-toolkit-loader-borderleft:rgba(0, 0, 0, 0);--color-doc-code:#fdd;--color-doc-code-background:#300}.code-highlight pre{overflow:auto;background-color:inherit;color:inherit;border:inherit}.code-highlight .linenos{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;margin-right:8px;text-align:right}.code-highlight .linenos::selection{background:0 0}.code-highlight .linenos::-moz-selection{background:0 0}.code-highlight pre{line-height:125%}.code-highlight td.linenos .normal{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight span.linenos{color:inherit;background-color:transparent;padding-left:5px;padding-right:5px}.code-highlight td.linenos .special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight span.linenos.special{color:#000;background-color:#ffffc0;padding-left:5px;padding-right:5px}.code-highlight .hll{background-color:#ffc}.code-highlight{background:#f8f8f8}.code-highlight .c{color:#3D7B7B;font-style:italic}.code-highlight .err{border:1px solid red}.code-highlight .k{color:green;font-weight:700}.code-highlight .o{color:#666}.code-highlight .ch{color:#3D7B7B;font-style:italic}.code-highlight .cm{color:#3D7B7B;font-style:italic}.code-highlight .cp{color:#9C6500}.code-highlight .cpf{color:#3D7B7B;font-style:italic}.code-highlight .c1{color:#3D7B7B;font-style:italic}.code-highlight .cs{color:#3D7B7B;font-style:italic}.code-highlight .gd{color:#A00000}.code-highlight .ge{font-style:italic}.code-highlight .gr{color:#E40000}.code-highlight .gh{color:navy;font-weight:700}.code-highlight .gi{color:#008400}.code-highlight .go{color:#717171}.code-highlight .gp{color:navy;font-weight:700}.code-highlight .gs{font-weight:700}.code-highlight .gu{color:purple;font-weight:700}.code-highlight .gt{color:#04D}.code-highlight .kc{color:green;font-weight:700}.code-highlight .kd{color:green;font-weight:700}.code-highlight .kn{color:green;font-weight:700}.code-highlight .kp{color:green}.code-highlight .kr{color:green;font-weight:700}.code-highlight .kt{color:#B00040}.code-highlight .m{color:#666}.code-highlight .s{color:#BA2121}.code-highlight .na{color:#687822}.code-highlight .nb{color:green}.code-highlight .nc{color:#00F;font-weight:700}.code-highlight .no{color:#800}.code-highlight .nd{color:#A2F}.code-highlight .ni{color:#717171;font-weight:700}.code-highlight .ne{color:#CB3F38;font-weight:700}.code-highlight .nf{color:#00F}.code-highlight .nl{color:#767600}.code-highlight .nn{color:#00F;font-weight:700}.code-highlight .nt{color:green;font-weight:700}.code-highlight .nv{color:#19177C}.code-highlight .ow{color:#A2F;font-weight:700}.code-highlight .w{color:#bbb}.code-highlight .mb{color:#666}.code-highlight .mf{color:#666}.code-highlight .mh{color:#666}.code-highlight .mi{color:#666}.code-highlight .mo{color:#666}.code-highlight .sa{color:#BA2121}.code-highlight .sb{color:#BA2121}.code-highlight .sc{color:#BA2121}.code-highlight .dl{color:#BA2121}.code-highlight .sd{color:#BA2121;font-style:italic}.code-highlight .s2{color:#BA2121}.code-highlight .se{color:#AA5D1F;font-weight:700}.code-highlight .sh{color:#BA2121}.code-highlight .si{color:#A45A77;font-weight:700}.code-highlight .sx{color:green}.code-highlight .sr{color:#A45A77}.code-highlight .s1{color:#BA2121}.code-highlight .ss{color:#19177C}.code-highlight .bp{color:green}.code-highlight .fm{color:#00F}.code-highlight .vc{color:#19177C}.code-highlight .vg{color:#19177C}.code-highlight .vi{color:#19177C}.code-highlight .vm{color:#19177C}.code-highlight .il{color:#666}html.no-js .hide_if_nojs{display:none}html.js .show_if_nojs{display:none}.center{text-align:center}.right{float:right}.left{float:left}.invisible{display:none!important}.list-unstyled{list-style-type:none}.list-unstyled li{margin-top:4px;margin-bottom:4px}.danger{background-color:var(--color-error-background)}.warning{background:var(--color-warning-background)}.success{background:var(--color-success-background)}.badge{display:inline-block;color:var(--color-toolkit-badge-font);background-color:var(--color-toolkit-badge-background);text-align:center;white-space:nowrap;vertical-align:baseline;min-width:10px;padding:1px 5px;border-radius:5px}kbd{padding:2px 4px;margin:1px;font-size:90%;color:var(--color-toolkit-kbd-font);background:var(--color-toolkit-kbd-background)}table{width:100%}table.striped tr{border-bottom:1px solid var(--color-settings-tr-hover)}th{padding:.4em}td{padding:0 4px}tr:hover{background:var(--color-settings-tr-hover)!important}div.selectable_url{display:block;border:1px solid var(--color-result-search-url-border);padding:4px;color:var(--color-result-search-url-font);margin:.1em;overflow:hidden;height:1.2em;line-height:1.2em;border-radius:5px}div.selectable_url pre{display:block;font-size:.8em;word-break:break-all;margin:.1em;user-select:all}.dialog-error{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:left;border-radius:10px;color:var(--color-error);background:var(--color-error-background);border-color:var(--color-error)}.dialog-error .close{float:right;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-error ol,.dialog-error p,.dialog-error ul{margin:1px 0 0 0}.dialog-error table{width:auto}.dialog-error tr{vertical-align:text-top}.dialog-error tr:hover{background:0 0!important}.dialog-error td{padding:0 1em 0 0;padding-top:0;padding-right:1rem;padding-bottom:0;padding-left:0}.dialog-error h4{margin-top:.3em;margin-bottom:.3em}.dialog-warning{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:left;border-radius:10px;color:var(--color-warning);background:var(--color-warning-background);border-color:var(--color-warning)}.dialog-warning .close{float:right;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-warning ol,.dialog-warning p,.dialog-warning ul{margin:1px 0 0 0}.dialog-warning table{width:auto}.dialog-warning tr{vertical-align:text-top}.dialog-warning tr:hover{background:0 0!important}.dialog-warning td{padding:0 1em 0 0;padding-top:0;padding-right:1rem;padding-bottom:0;padding-left:0}.dialog-warning h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal{position:relative;display:flex;padding:1rem;margin:0 0 1em 0;border:1px solid var(--color-toolkit-dialog-border);text-align:left;border-radius:10px;display:block;background:var(--color-toolkit-dialog-background);position:fixed;top:50%;left:50%;margin:0 auto;transform:translate(-50%,-50%);z-index:10000000}.dialog-modal .close{float:right;position:relative;top:-3px;color:inherit;font-size:1.5em}.dialog-modal ol,.dialog-modal p,.dialog-modal ul{margin:1px 0 0 0}.dialog-modal table{width:auto}.dialog-modal tr{vertical-align:text-top}.dialog-modal tr:hover{background:0 0!important}.dialog-modal td{padding:0 1em 0 0;padding-top:0;padding-right:1rem;padding-bottom:0;padding-left:0}.dialog-modal h4{margin-top:.3em;margin-bottom:.3em}.dialog-modal h3{margin-top:0}.btn-collapse{cursor:pointer}.scrollx{overflow-x:auto;overflow-y:hidden;display:block;padding:0;margin:0;border:none}.tabs .tabs>label{font-size:90%}ul.tabs{border-bottom:1px solid var(--color-toolkit-tabs-section-border);list-style:none;padding-left:0}ul.tabs li{display:flex}.tabs{display:flex;flex-wrap:wrap;width:100%;min-width:100%}.tabs>*{order:2}.tabs>input[type=radio]{display:none}.tabs>label,.tabs>li>a{order:1;padding:.7em;margin:0 .7em;letter-spacing:.5px;text-transform:uppercase;border:solid var(--color-toolkit-tabs-label-border);border-width:0 0 2px 0;color:unset;-webkit-touch-callout:none;user-select:none;cursor:pointer}.tabs>label.active,.tabs>li>a.active{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}.tabs>label:hover,.tabs>li>a:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}.tabs>section{min-width:100%;padding:.7rem 0;box-sizing:border-box;border-top:1px solid var(--color-toolkit-tabs-section-border);display:none}.tabs>label:last-of-type{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font);letter-spacing:-.1px}.tabs>section:last-of-type{display:block}html body .tabs>input:checked~section{display:none}html body .tabs>input:checked~label{position:inherited;background:inherit;border-bottom:2px solid transparent;font-weight:400;color:inherit}html body .tabs>input:checked~label:hover{border-bottom:2px solid var(--color-categories-item-border-selected)}html body .tabs>input:checked+label{border-bottom:2px solid var(--color-categories-item-border-selected);background:var(--color-categories-item-selected);color:var(--color-categories-item-selected-font)}html body .tabs>input:checked+label+section{display:block}select{height:2.4rem;margin-top:0;margin-right:1rem;margin-bottom:0;margin-left:0;padding:.2rem!important;color:var(--color-search-font);font-size:.9rem;z-index:2}select:focus,select:hover{cursor:pointer}@supports ((background-position-x:100%) and ((appearance:none) or (-webkit-appearance:none) or (-moz-appearance:none))){select{appearance:none;-webkit-appearance:none;-moz-appearance:none;border-width:0 2rem 0 0;border-color:transparent;background:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat;background-position-x:calc(100% + 2rem);background-size:2rem;background-origin:content-box;background-color:var(--color-toolkit-select-background);outline:medium none;text-overflow:ellipsis;border-radius:5px}select:focus,select:hover{background-color:var(--color-toolkit-select-background-hover)}select option{background-color:var(--color-base-background)}@media (prefers-color-scheme:dark){html.theme-auto select,html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}html.theme-dark select{background-image:url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E")}}input.checkbox-onoff[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;display:inline-block;width:2.5em;height:.7em;box-shadow:none!important;margin:0 16px;border-radius:10px;position:relative}input.checkbox-onoff[type=checkbox]:focus,input.checkbox-onoff[type=checkbox]:hover{outline:0}input.checkbox-onoff[type=checkbox]:focus::after{content:"";position:absolute;width:3.5em;height:1.65em;border:1px solid var(--color-btn-background);border-radius:12px;box-shadow:var(--color-btn-background) 0 0 3px;z-index:10000;top:-.55em;left:-.6em}input.checkbox-onoff[type=checkbox]::before{position:absolute;top:-.5em;display:flex;justify-content:center;align-items:center;font-size:.75em;width:1.875em;height:1.875em;border-radius:50%}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked,input.checkbox-onoff[type=checkbox]{background:var(--color-toolkit-checkbox-onoff-off-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]:checked::before,input.checkbox-onoff[type=checkbox]::before{left:-.5em;content:"\2715";color:var(--color-toolkit-checkbox-onoff-off-mark-color);background:var(--color-toolkit-checkbox-onoff-off-mark-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox],input.checkbox-onoff[type=checkbox]:checked{background:var(--color-toolkit-checkbox-onoff-on-background)}.reversed-checkbox input.checkbox-onoff[type=checkbox]::before,input.checkbox-onoff[type=checkbox]:checked::before{left:calc(100% - 1.5em);content:"\2713";color:var(--color-toolkit-checkbox-onoff-on-mark-color);background:var(--color-toolkit-checkbox-onoff-on-mark-background)}@supports (transform:rotate(-45deg)){input[type=checkbox]:not(.checkbox-onoff){-webkit-appearance:none;-moz-appearance:none;appearance:none;width:20px;height:20px;cursor:pointer;position:relative;top:0;left:0;border:2px solid var(--color-toolkit-checkbox-input-border);border-radius:.3em}input[type=checkbox]:not(.checkbox-onoff)::after{content:'';width:9px;height:5px;position:absolute;top:3px;left:2px;border:3px solid var(--color-toolkit-checkbox-label-border);border-top:none;border-right:none;background:0 0;opacity:0;transform:rotate(-45deg)}input[type=checkbox]:not(.checkbox-onoff):checked::after{border-color:var(--color-toolkit-checkbox-input-border);opacity:1}input[type=checkbox][disabled]:not(.checkbox-onoff){border:inherit;background-color:transparent!important;cursor:inherit}input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after{opacity:.5}}@media screen and (max-width:50em){.tabs>label{width:100%}}.loader,.loader::after{border-radius:50%;width:2em;height:2em}.loader{margin:1em auto;font-size:10px;position:relative;text-indent:-9999em;border-top:.5em solid var(--color-toolkit-loader-border);border-right:.5em solid var(--color-toolkit-loader-border);border-bottom:.5em solid var(--color-toolkit-loader-border);border-left:.5em solid var(--color-toolkit-loader-borderleft);-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:load8 1.2s infinite linear;animation:load8 1.2s infinite linear}@-webkit-keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load8{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.engine-tooltip{display:none;position:absolute;padding:.5rem 1rem;margin:0 0 0 2rem;border:1px solid var(--color-toolkit-engine-tooltip-border);background:var(--color-toolkit-engine-tooltip-background);font-size:14px;font-weight:400;z-index:1000000;text-align:left;border-radius:10px}.engine-tooltip:hover,td:hover .engine-tooltip,th:hover .engine-tooltip{display:inline-block}.stacked-bar-chart{margin:0;padding:0 .125rem 0 4rem;width:100%;width:-moz-available;width:-webkit-fill-available;width:fill;flex-direction:row;flex-wrap:nowrap;align-items:center;display:inline-flex}.stacked-bar-chart-value{width:3rem;display:inline-block;position:absolute;padding:0 .5rem;text-align:right}.stacked-bar-chart-base{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset}.stacked-bar-chart-median{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:var(--color-base-font);border:1px solid rgba(var(--color-base-font-rgb),.9);padding:.3rem 0}.stacked-bar-chart-rate80{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border:1px solid rgba(var(--color-base-font-rgb),.3);padding:.3rem 0}.stacked-bar-chart-rate95{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-bottom:1px dotted rgba(var(--color-base-font-rgb),.5);padding:0}.stacked-bar-chart-rate100{display:flex;flex-shrink:0;flex-grow:0;flex-basis:unset;background:0 0;border-left:1px solid rgba(var(--color-base-font-rgb),.9);padding:.4rem 0;width:1px}/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */.autocomplete{position:absolute;width:44rem;max-height:0;overflow-y:hidden;text-align:left;border-radius:10px}.autocomplete:active,.autocomplete:focus,.autocomplete:hover{background-color:var(--color-autocomplete-background)}.autocomplete:empty{display:none}.autocomplete>ul{list-style-type:none;margin:0;padding:0}.autocomplete>ul>li{cursor:pointer;padding:.5rem 1rem}.autocomplete>ul>li.active,.autocomplete>ul>li:active,.autocomplete>ul>li:focus,.autocomplete>ul>li:hover{background-color:var(--color-autocomplete-background-hover)}.autocomplete>ul>li.active a:active,.autocomplete>ul>li.active a:focus,.autocomplete>ul>li.active a:hover,.autocomplete>ul>li:active a:active,.autocomplete>ul>li:active a:focus,.autocomplete>ul>li:active a:hover,.autocomplete>ul>li:focus a:active,.autocomplete>ul>li:focus a:focus,.autocomplete>ul>li:focus a:hover,.autocomplete>ul>li:hover a:active,.autocomplete>ul>li:hover a:focus,.autocomplete>ul>li:hover a:hover{text-decoration:none}.autocomplete>ul>li.locked{cursor:inherit}.autocomplete.open{display:block;background-color:var(--color-autocomplete-background);color:var(--color-autocomplete-font);max-height:32rem;overflow-y:auto;z-index:100;margin-top:3.5rem;border-radius:.8rem;box-shadow:0 2px 8px rgba(34,38,46,.25)}.autocomplete.open:empty{display:none}@media screen and (max-width:50em){.autocomplete{width:100%}.autocomplete>ul>li{padding:1rem}}#main_results #results.image-detail-open.only_template_images{width:min(98%,59.25rem)!important}#main_results #results.only_template_images.image-detail-open #backToTop{left:56.75rem!important;right:inherit}article.result-images .detail{display:none}#results.image-detail-open article.result-images[data-vim-selected] .detail{display:flex;flex-direction:column;position:fixed;left:60rem;right:0;top:7.6rem;transition:top 64ms ease-in 0s;bottom:0;background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-background);z-index:10000;padding:4rem 3rem 3rem 3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:block;flex:1;text-align:left;width:100%;border:none;text-decoration:none}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{padding:0;margin:0;border:none;object-fit:contain;width:inherit;height:inherit;max-width:100%;min-height:inherit;max-height:calc(100vh - 25rem - 7rem);background:inherit}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels{color:var(--color-result-detail-font);max-height:16rem;min-height:16rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels hr{border-top:1px solid var(--color-result-detail-hr);border-bottom:none}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4{height:2rem;overflow:hidden;text-overflow:ellipsis;font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{color:var(--color-result-detail-label-font);font-size:.9rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{display:inline-block;width:12rem}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p{text-align:left}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content{height:2rem;overflow:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url:hover{position:relative;overflow:inherit!important;background:var(--color-result-detail-background);text-overflow:inherit!important}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:active,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:visited{color:var(--color-result-detail-link)}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover{text-decoration:underline}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close{top:1rem;left:1rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{top:1rem;right:6rem;padding-top:.4rem;padding-right:.5rem;padding-bottom:.4rem;padding-left:.3rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{top:1rem;right:2rem;padding:.4rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous{border-radius:50%;display:block;width:1.5rem;height:1.5rem;position:absolute;filter:opacity(40%);z-index:2000002}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span{display:block;width:1.5rem;height:1.5rem;text-align:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span::before,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span::before{vertical-align:sub}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:visited,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:active,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:visited{color:var(--color-result-detail-font);background:var(--color-result-detail-background);border:1px solid var(--color-result-detail-font)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:focus,#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover{filter:opacity(80%)}#results.image-detail-open article.result-images[data-vim-selected] .detail .loader{position:absolute;top:1rem;right:50%;border-top:.5em solid var(--color-result-detail-loader-border);border-right:.5em solid var(--color-result-detail-loader-border);border-bottom:.5em solid var(--color-result-detail-loader-border);border-left:.5em solid var(--color-result-detail-loader-borderleft)}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail{top:0}#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail a.result-images-source img{max-height:calc(100vh - 25rem)}@media screen and (max-width:79.75em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;left:0}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source{display:flex;flex-direction:column;justify-content:center}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 24rem)}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next{right:1rem}}@media screen and (max-width:50em){#results.image-detail-open article.result-images[data-vim-selected] .detail{top:0;left:0;padding:1rem}#results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img{width:100%;max-height:calc(100vh - 20rem);margin:0}#results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span{width:inherit;margin-right:1rem}}.dialog-modal{animation-name:dialogmodal;animation-duration:.13s}@keyframes dialogmodal{0%{opacity:0}50%{opacity:.5;transform:translate(-50%,-50%) scale(1.05)}}input.checkbox-onoff[type=checkbox]::before{transition:left .25s}iframe[src^="https://w.soundcloud.com"]{height:120px}iframe[src^="https://www.deezer.com"]{height:94px}iframe[src^="https://www.mixcloud.com"]{height:250px}iframe[src^="https://bandcamp.com/EmbeddedPlayer"]{height:350px}iframe[src^="https://bandcamp.com/EmbeddedPlayer/track"]{height:120px}iframe[src^="https://genius.com/songs"]{height:65px}.info-page code{font-family:monospace;color:var(--color-doc-code);background-color:var(--color-doc-code-background);padding:2px 5px;border-radius:5px}.stats_endpoint .github-issue-button{display:block;padding:8px 16px;font-family:sans-serif;font-size:16px;color:#fff;background-color:#238636;border:#2ea043;border-radius:10px!important;box-shadow:transparent 0 0 0 0}.stats_endpoint .github-issue-button:hover{background-color:#2ea043}.stats_endpoint .issue-hide{display:none}.stats_endpoint input[type=checked]{position:absolute}.stats_endpoint label{margin:1rem 1rem 1rem 0}.stats_endpoint .step_content{margin:1rem 1rem 1rem 2rem}.stats_endpoint .step1,.stats_endpoint .step2{visibility:hidden}.stats_endpoint .step1_delay{transition:visibility 0s linear 4s}.stats_endpoint #step1:checked~.step1,.stats_endpoint #step2:checked~.step2{visibility:visible}.engine-stats{border-spacing:0;border-collapse:collapse}.engine-stats tr td,.engine-stats tr th{border-bottom:1px solid var(--color-result-border);padding:.25rem}.engine-stats table.engine-tooltip{border-spacing:0;border-collapse:collapse}.engine-stats table.engine-tooltip td,.engine-stats table.engine-tooltip th{border:none}.engine-stats .engine-name{width:20rem}.engine-stats .engine-score{width:7rem;text-align:right}.engine-stats .engine-reliability{text-align:right}failed-test,table.engine-error td.engine-error-type,table.engine-error th.engine-error-type{width:10rem}.engine-errors{margin-top:3rem}.engine-errors table.engine-error{max-width:1280px;margin:1rem 0 3rem 0;border:1px solid var(--color-result-border);text-align:left}.engine-errors table.engine-error tr td,.engine-errors table.engine-error tr th{padding:.5rem}.engine-errors table.engine-error span.log_parameters{border-right:1px solid solid var(--color-result-border);padding:0 1rem 0 0;margin:0 0 0 .5rem}.bar-chart-value{width:3em;display:inline-block;text-align:right;padding-right:.5rem}.bar-chart-graph{width:calc(100% - 5rem);display:inline-block}.bar-chart-bar{border:3px solid #5bc0de;margin:1px 0}.bar-chart-serie1{border:3px solid #5bc0de;margin:1px 0;float:left}.bar-chart-serie2{border:3px solid #deb15b;margin:1px 0;float:left}.bar0{width:0;border:0}.bar1{width:1%}.bar2{width:2%}.bar3{width:3%}.bar4{width:4%}.bar5{width:5%}.bar6{width:6%}.bar7{width:7%}.bar8{width:8%}.bar9{width:9%}.bar10{width:10%}.bar11{width:11%}.bar12{width:12%}.bar13{width:13%}.bar14{width:14%}.bar15{width:15%}.bar16{width:16%}.bar17{width:17%}.bar18{width:18%}.bar19{width:19%}.bar20{width:20%}.bar21{width:21%}.bar22{width:22%}.bar23{width:23%}.bar24{width:24%}.bar25{width:25%}.bar26{width:26%}.bar27{width:27%}.bar28{width:28%}.bar29{width:29%}.bar30{width:30%}.bar31{width:31%}.bar32{width:32%}.bar33{width:33%}.bar34{width:34%}.bar35{width:35%}.bar36{width:36%}.bar37{width:37%}.bar38{width:38%}.bar39{width:39%}.bar40{width:40%}.bar41{width:41%}.bar42{width:42%}.bar43{width:43%}.bar44{width:44%}.bar45{width:45%}.bar46{width:46%}.bar47{width:47%}.bar48{width:48%}.bar49{width:49%}.bar50{width:50%}.bar51{width:51%}.bar52{width:52%}.bar53{width:53%}.bar54{width:54%}.bar55{width:55%}.bar56{width:56%}.bar57{width:57%}.bar58{width:58%}.bar59{width:59%}.bar60{width:60%}.bar61{width:61%}.bar62{width:62%}.bar63{width:63%}.bar64{width:64%}.bar65{width:65%}.bar66{width:66%}.bar67{width:67%}.bar68{width:68%}.bar69{width:69%}.bar70{width:70%}.bar71{width:71%}.bar72{width:72%}.bar73{width:73%}.bar74{width:74%}.bar75{width:75%}.bar76{width:76%}.bar77{width:77%}.bar78{width:78%}.bar79{width:79%}.bar80{width:80%}.bar81{width:81%}.bar82{width:82%}.bar83{width:83%}.bar84{width:84%}.bar85{width:85%}.bar86{width:86%}.bar87{width:87%}.bar88{width:88%}.bar89{width:89%}.bar90{width:90%}.bar91{width:91%}.bar92{width:92%}.bar93{width:93%}.bar94{width:94%}.bar95{width:95%}.bar96{width:96%}.bar97{width:97%}.bar98{width:98%}.bar99{width:99%}.bar100{width:100%}.osm-map-box{height:300px;width:100%;margin:10px 0}#main_index{margin-top:26vh}.index{text-align:center}.index .title{background:url(../img/searxng.png) no-repeat;min-height:4rem;margin:4rem auto;background-position:center;background-size:contain}.index h1{font-size:4em;visibility:hidden}.index #search,.index #search_header{margin:0 auto;background:inherit;border:inherit;padding:0;display:block}.index .search_filters{display:block;margin:1em 0}.index .category label{padding:6px 10px;border-bottom:initial!important}@media screen and (max-width:79.75em){div.title h1{font-size:1em}#main_index{margin-top:6em}}#tab-content-query table td,#tab-content-query table th{text-align:right!important;height:3rem}#main_preferences form{width:100%}#main_preferences fieldset{margin:8px;border:none}#main_preferences legend{margin:0;padding:5px 0 0 0;display:block;float:left;width:300px}#main_preferences .value{margin:0;padding:0;float:left;width:15em}#main_preferences .value input[type=text],#main_preferences .value select{font-size:inherit!important;margin-top:0;margin-right:1rem;margin-bottom:0;margin-left:0}#main_preferences .value select{width:14rem}#main_preferences .value input[type=text]{width:13.25rem;color:var(--color-toolkit-input-text-font);border:none;background:none repeat scroll 0 0 var(--color-toolkit-select-background);padding:.2rem .4rem;height:2rem;border-radius:5px}#main_preferences .value input[type=text]:focus,#main_preferences .value input[type=text]:hover{background-color:var(--color-toolkit-select-background-hover)}#main_preferences .value input:focus,#main_preferences .value select:focus{outline:0;box-shadow:0 0 1px 1px var(--color-btn-background)}#main_preferences .description{margin:0;padding:5px 0 0 0;float:right;width:50%;color:var(--color-settings-engine-description-font);font-size:90%}#main_preferences table{border-collapse:collapse}#main_preferences table td{text-align:center}#main_preferences .category{margin-right:.5rem}#main_preferences .category label{border:2px solid transparent;padding:.2rem .4rem;border-radius:5px}#main_preferences .category input[type=checkbox]:checked+label{border:2px solid var(--color-categories-item-border-selected)}#main_preferences table.table_engines td{height:3.75rem}#main_preferences table.table_engines th.name label{cursor:pointer}#main_preferences table.table_engines th.name .engine-tooltip{margin-top:1.8rem;left:calc((100% - 85em)/ 2 + 10em);max-width:40rem}#main_preferences table.table_engines th.name .engine-tooltip .engine-description{margin-top:.5rem}#main_preferences table.table_engines .engine-group{text-align:left;font-weight:400;background:var(--color-settings-engine-group-background)}#main_preferences table.table_engines .name,#main_preferences table.table_engines .shortcut{text-align:left}#main_preferences table.cookies{width:100%;direction:ltr}#main_preferences table.cookies td,#main_preferences table.cookies th{text-align:left;font-family:monospace;font-size:1rem;padding:.5em;vertical-align:top}#main_preferences table.cookies td:first-child{word-break:keep-all;width:14rem;padding-right:1rem}#main_preferences table.cookies td:last-child{word-break:break-all}#main_preferences table.cookies>tbody>tr:nth-child(even)>td,#main_preferences table.cookies>tbody>tr:nth-child(even)>th{background-color:var(--color-settings-tr-hover)}#main_preferences .preferences_back{background:none repeat scroll 0 0 var(--color-btn-background);color:var(--color-btn-font);border:0 none;border-radius:10px;cursor:pointer;display:inline-block;margin:2px 4px;padding:.7em}#main_preferences .preferences_back a{color:var(--color-settings-return-font)}#main_preferences .preferences_back a::first-letter{text-transform:uppercase}#main_preferences div.selectable_url pre{width:100%}@media screen and (max-width:79.75em){.preferences_back{clear:both}.engine-tooltip{left:10em!important}}#search{padding:0;margin:0}#search_header{padding-top:1.5em;padding-right:2em;padding-left:7rem;margin:0;background:var(--color-header-background);border-bottom:1px solid var(--color-header-border);display:grid;column-gap:1.2rem;row-gap:1rem;grid-template-columns:3rem 1fr;grid-template-areas:"logo search" "spacer categories"}.category{display:inline-block;position:relative;margin-right:1rem;padding:0}.category input{display:none}.category label{cursor:pointer;padding:.2rem 0;display:inline-flex;text-transform:capitalize;font-size:.9em;border-bottom:2px solid transparent;-webkit-touch-callout:none;user-select:none}.category label svg{padding-right:.2rem}.category label div.category_name{margin:auto 0}.category input[type=checkbox]:checked+label{color:var(--color-categories-item-selected-font);border-bottom:2px solid var(--color-categories-item-border-selected)}#search_logo{grid-area:logo;display:flex;align-items:center;justify-content:center}#search_logo svg{flex:1;width:30px;height:30px;margin:.5rem 0 auto 0}.search_categories{grid-area:categories}.search_categories .help{display:none}.search_categories:hover .help{display:block;position:absolute;background:var(--color-base-background);padding:1rem .6rem .6rem 0;z-index:1000;width:100%;left:-.1rem}#search_view{grid-area:search}.search_box{border-radius:.8rem;width:44rem;display:inline-flex;flex-direction:row;white-space:nowrap;box-shadow:var(--color-search-shadow)}#clear_search{display:block;border-collapse:separate;box-sizing:border-box;width:1.8rem;margin:0;padding:.8rem .2rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:10000}#clear_search:hover{color:var(--color-search-background-hover)}#clear_search.empty *{display:none}html.no-js #clear_search.hide_if_nojs{display:none}#q,#send_search{display:block;margin:0;padding:.8rem;background:none repeat scroll 0 0 var(--color-search-background);border:none;outline:0;color:var(--color-search-font);font-size:1.1rem;z-index:2}#q{width:100%;padding-left:1rem;padding-right:0!important;border-radius:.8rem 0 0 .8rem}#q::-ms-clear,#q::-webkit-search-cancel-button{display:none}#send_search{border-radius:0 .8rem .8rem 0}#send_search:hover{cursor:pointer;background-color:var(--color-search-background-hover);color:var(--color-search-background)}.no-js #clear_search,.no-js #send_search{width:auto!important;border-left:1px solid var(--color-search-border)}.search_filters{margin-top:.6rem;margin-right:0;margin-bottom:0;margin-left:10.6rem;display:flex;overflow-x:auto;overscroll-behavior-inline:contain}.search_filters select{background-color:inherit}.search_filters select:focus,.search_filters select:hover{color:var(--color-base-font)}@media screen and (max-width:79.75em){#search_header{padding:1.5em .5rem 0 .5rem;column-gap:.5rem}.search_filters{margin-top:.6rem;margin-right:0;margin-bottom:0;margin-left:3.5rem}#categories{font-size:90%;clear:both}#categories .checkbox_container{margin:auto;margin-top:2px}}@media screen and (max-width:79.75em) and (hover:none){#main_index #categories_container,#main_results #categories_container{width:max-content}#main_index #categories_container .category,#main_results #categories_container .category{display:inline-block;width:auto}#main_index #categories,#main_results #categories{width:100%;text-align:left;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch}}@media screen and (max-width:50em){#search_header{width:100%;margin:0;padding:.1rem 0 0 0;column-gap:0;row-gap:0;grid-template-areas:"logo search" "categories categories"}.search_logo{padding:0}.search_box{width:98%;display:flex;margin:0 auto}#q{width:100%;flex:1}.search_filters{margin:0}.category{display:inline-block;width:auto;margin:0}.category label{padding:1rem!important;margin:0!important}.category label svg{display:none}#search_view:focus-within{display:block;background-color:var(--color-search-background);position:absolute;top:0;height:100%;width:100%;z-index:10000}#search_view:focus-within .search_box{border-bottom:1px solid var(--color-search-border);width:100%;border-radius:0;box-shadow:none}#search_view:focus-within .search_box #send_search{margin-right:0!important}#search_view:focus-within .search_box *{border:none;border-radius:0;box-shadow:none}#main_results #q:placeholder-shown~#send_search{margin-right:2.6rem;transition:margin .1s}}@media screen and (max-width:20rem){#search_header{grid-template-areas:"search search" "categories categories"}#search_logo{display:none}}#categories{-webkit-touch-callout:none;user-select:none}#categories::-webkit-scrollbar{width:0;height:0}#categories_container{position:relative}@media screen and (min-width:50em){.center-aligment-yes #main_results{--center-page-width:48rem}}@media screen and (min-width:62rem){.center-aligment-yes #main_results{--center-page-width:60rem}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{--center-page-width:73rem}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-yes #main_results #results{grid-template-columns:60% calc(40% - 5rem);margin-left:0;margin-right:0}.center-aligment-yes #main_results #urls{margin-left:3rem}.center-aligment-yes #main_results #sidebar{margin-right:1rem}.center-aligment-yes #main_results #backToTop{left:calc(60% + 1rem)}}@media screen and (min-width:79.75em){.center-aligment-yes #main_results{display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search{width:100%;display:flex;flex-direction:column;align-items:center}.center-aligment-yes #main_results #search_header{grid-template-columns:calc(50% - 4.5rem - var(--center-page-width)/ 2) 3rem var(--center-page-width);grid-template-areas:"na logo search" "na spacer categories";column-gap:1.2rem;width:100%;padding-left:0;padding-right:0}.center-aligment-yes #main_results .search_filters{margin-left:.5rem;width:var(--center-page-width)}.center-aligment-yes #main_results #results{margin-right:2rem;margin-left:10rem}.center-aligment-yes #main_results #results.image-detail-open,.center-aligment-yes #main_results #results.only_template_images{align-self:flex-start}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open){margin-left:1.5rem;grid-template-columns:calc(var(--center-page-width) - 5rem - 25rem) 25rem}.center-aligment-yes #main_results #results:not(.only_template_images):not(.image-detail-open) #backToTop{left:calc(50% - 25rem - 5rem + 1rem + var(--center-page-width)/ 2)}.center-aligment-yes #main_results #results .result .content{max-width:inherit}.center-aligment-yes #main_results #urls{margin-left:0}.center-aligment-yes #main_results #sidebar{margin-right:0}}.ion-icon{display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(1,1)}.ion-icon-small{width:1rem;height:1rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(1,1)}.ion-icon-big{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:bottom;line-height:1;text-decoration:inherit;transform:scale(1,1)}html{font-family:sans-serif;font-size:.9em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;color:var(--color-base-font);background-color:var(--color-base-background);padding:0;margin:0}body,main{padding:0;margin:0}body{display:flex;flex-direction:column;height:100vh;margin:0}main{width:100%;margin-bottom:2rem;flex:1}.page_with_header{margin:2em auto;width:85em}footer{clear:both;min-height:4rem;padding:1rem 0;width:100%;text-align:center;background-color:var(--color-footer-background);border-top:1px solid var(--color-footer-border);overflow:hidden}footer p{font-size:.9em}.page_with_header .logo{height:40px}#results button[type=submit],input[type=submit]{padding:.7rem;display:inline-block;background:var(--color-btn-background);color:var(--color-btn-font);border-radius:10px;border:0;cursor:pointer}a{text-decoration:none;color:var(--color-url-font)}a:visited{color:var(--color-url-visited-font)}a:visited .highlight{color:var(--color-url-visited-font)}article[data-vim-selected]{background:var(--color-result-vim-selected);border-left:.2rem solid var(--color-result-vim-arrow);border-radius:0 10px 10px 0}article.result-images[data-vim-selected]{background:var(--color-result-vim-arrow);border:none;border-radius:10px}article.result-images[data-vim-selected] .image_thumbnail{filter:opacity(60%)}article.result-images[data-vim-selected] span.source,article.result-images[data-vim-selected] span.title{color:var(--color-result-image-span-font-selected)}article[data-vim-selected].category-files,article[data-vim-selected].category-map,article[data-vim-selected].category-music,article[data-vim-selected].category-news,article[data-vim-selected].category-social,article[data-vim-selected].category-videos{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{margin:.125rem 0;padding:1rem;border-left:.2rem solid transparent}.result h3{font-size:1.2rem;word-wrap:break-word;margin:.4rem 0 .4rem 0;padding:0}.result h3 a{color:var(--color-result-link-font);font-weight:400;font-size:1.1em}.result h3 a:visited{color:var(--color-result-link-visited-font)}.result h3 a:focus,.result h3 a:hover{text-decoration:underline;border:none;outline:0}.result .cache_link,.result .proxyfied_link{font-size:.9em!important}.result .content,.result .stat{font-size:.9em;margin:0;padding:0;max-width:54em;word-wrap:break-word;line-height:1.24}.result .content .highlight,.result .stat .highlight{color:var(--color-result-description-highlight-font);background:inherit;font-weight:700}.result .altlink a{font-size:.9em;margin:0 10px 0 0;padding:5px 10px;border-radius:5px;background:var(--color-show-btn-background);color:var(--color-show-btn-font);cursor:pointer}.result .altlink a:hover{background:var(--color-btn-background);color:var(--color-btn-font)}.result .codelines .highlight{color:inherit;background:inherit;font-weight:400}.result .url_wrapper{display:flex;font-size:1rem;color:var(--color-result-url-font);flex-wrap:nowrap;overflow:hidden;flex-direction:row;margin:0;padding:0}.result .url_wrapper .url_o1{white-space:nowrap;flex-shrink:1}.result .url_wrapper .url_o1::after{content:" ";width:1ch;display:inline-block}.result .url_wrapper .url_o2{overflow:hidden;white-space:nowrap;flex-basis:content;flex-grow:0;flex-shrink:1;text-align:right}.result .url_wrapper .url_o2 .url_i2{float:right}.result .published_date,.result .result_author,.result .result_length,.result .result_shipping,.result .result_source_country{font-size:.8em;color:var(--color-result-publishdate-font)}.result .result_price{font-size:1.2em;color:var(--color-result-description-highlight-font)}.result img.thumbnail{float:left;padding-top:.6rem;padding-right:1rem;width:20rem;height:unset}.result img.image{float:left;padding-top:.6rem;padding-right:1rem;width:7rem;max-height:7rem;object-fit:scale-down;object-position:right top}.result .break{clear:both}.result-paper .attributes{display:table;border-spacing:.125rem}.result-paper .attributes div{display:table-row}.result-paper .attributes div span{font-size:.9rem;margin-top:.25rem;display:table-cell}.result-paper .attributes div span time{font-size:.9rem}.result-paper .attributes div span:first-child{color:var(--color-base-font);min-width:10rem}.result-paper .attributes div span:nth-child(2){color:var(--color-result-publishdate-font)}.result-paper .content{margin-top:.25rem}.result-paper .comments{font-size:.9rem;margin:.25rem 0 0 0;padding:0;word-wrap:break-word;line-height:1.24;font-style:italic}.template_group_images{display:flex;flex-wrap:wrap}.template_group_images::after{flex-grow:10;content:""}.category-files,.category-map,.category-music,.category-news,.category-social,.category-videos{border:1px solid var(--color-result-border);margin:0 .5rem 1rem .5rem!important;border-radius:10px}.category-social .image{width:auto!important;min-width:48px;min-height:48px;padding:0 5px 25px 0!important}.audio-control audio{width:100%;padding:10px 0 0 0}.embedded-content iframe{width:100%;padding:10px 0 0 0}.result-videos .content{overflow:hidden}.result-videos .embedded-video iframe{width:100%;aspect-ratio:16/9;padding:10px 0 0 0}@supports not (aspect-ratio:1 / 1){.result-videos .embedded-video iframe{height:calc(45rem * 9 / 16)}}.engines{float:right;display:flex;flex-wrap:wrap;justify-content:flex-end;color:var(--color-result-engines-font)}.engines span{font-size:smaller;margin-top:0;margin-bottom:0;margin-right:.5rem;margin-left:0}.small_font{font-size:.8em}.highlight{color:var(--color-result-link-font-highlight);background:inherit}.empty_element{font-style:italic}.result-images{flex-grow:1;padding:.5rem .5rem 3rem .5rem;margin:.25rem;border:none!important;height:12rem}.result-images>a{position:relative}.result-images img{margin:0;padding:0;border:none;height:100%;width:100%;object-fit:cover;vertical-align:bottom;background:var(--color-result-image-background)}.result-images span.source,.result-images span.title{display:block;position:absolute;width:100%;font-size:.9rem;color:var(--color-result-image-span-font);padding:.5rem 0 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.result-images span.source{padding:1.8rem 0 0 0;font-size:.7rem}.result-map img.image{float:right!important;height:100px!important;width:auto!important}.result-map table{font-size:.9em;width:auto;border-collapse:separate;border-spacing:0 .35rem}.result-map table th{font-weight:inherit;width:17rem;vertical-align:top;text-align:left}.result-map table td{vertical-align:top;text-align:left}.hidden{display:none!important}#results{margin-top:1rem;margin-right:2rem;margin-bottom:0;margin-left:10rem;display:grid;grid-template-columns:45rem 25rem;grid-template-rows:min-content min-content 1fr min-content;gap:0 5rem;grid-template-areas:"corrections sidebar" "answers sidebar" "urls sidebar" "pagination sidebar"}#results #sidebar :first-child,#results #urls :first-child{margin-top:0}#urls{padding:0;grid-area:urls}#suggestions .wrapper{display:flex;flex-flow:column;justify-content:flex-end}#suggestions .wrapper form{display:inline-block;flex:1 1 50%}#infoboxes input,#suggestions input{padding:0;margin:3px;font-size:.9em;display:inline-block;background:0 0;color:var(--color-result-search-url-font);cursor:pointer;width:calc(100%);text-overflow:ellipsis;overflow:hidden;text-align:left}#infoboxes .infobox .url a,#infoboxes input[type=submit],#suggestions .infobox .url a,#suggestions input[type=submit]{color:var(--color-result-link-font);text-decoration:none;font-size:.9rem}#infoboxes .infobox .url a:hover,#infoboxes input[type=submit]:hover,#suggestions .infobox .url a:hover,#suggestions input[type=submit]:hover{text-decoration:underline}#corrections{grid-area:corrections;display:flex;flex-flow:row wrap;margin:0 0 1em 0}#corrections h4,#corrections input[type=submit]{display:inline-block;padding:.5rem;margin:.5rem}#corrections input[type=submit]{font-size:.8rem;border-radius:5px}#apis .title,#search_url .title,#suggestions .title{margin:2em 0 .5em 0;color:var(--color-base-font)}#answers{grid-area:answers;background:var(--color-answer-background);padding:1rem;margin:1rem 0;margin-top:0;color:var(--color-answer-font);border-radius:10px}#answers h4{display:none}#answers span{overflow-wrap:anywhere}#infoboxes form{min-width:210px}#sidebar{grid-area:sidebar;word-wrap:break-word;color:var(--color-sidebar-font)}#sidebar .infobox{margin:10px 0 10px;border:1px solid var(--color-sidebar-border);padding:1rem;font-size:.9em;border-radius:10px}#sidebar .infobox h2{margin:0 0 .5em 0}#sidebar .infobox img{max-width:100%;max-height:12em;display:block;margin:0 auto;padding:0}#sidebar .infobox dt{font-weight:700}#sidebar .infobox .attributes dl{margin:.5em 0}#sidebar .infobox .attributes dt{display:inline;margin-top:.5em;margin-right:.25em;margin-bottom:.5em;margin-left:0;padding:0}#sidebar .infobox .attributes dd{display:inline;margin:.5em 0;padding:0}#sidebar .infobox input{font-size:1em}#sidebar .infobox br{clear:both}#sidebar .infobox .attributes,#sidebar .infobox .urls{clear:both}#search_url{margin-top:8px}#search_url div.selectable_url pre{width:200em}#links_on_top{position:absolute;right:1.8rem;text-align:right;top:2.2rem;padding:0;border:0;display:flex;align-items:center;font-size:1em;color:var(--color-search-font)}#links_on_top a{display:flex;align-items:center;margin-left:1em}#links_on_top a svg{font-size:1.2em;margin-right:.125em}#links_on_top a,#links_on_top a:active *,#links_on_top a:hover *,#links_on_top a:link *,#links_on_top a:visited *{color:var(--color-search-font)}#pagination{grid-area:pagination}#pagination br{clear:both}.numbered_pagination{display:flex;flex-direction:row;justify-content:center;align-items:center;overflow:hidden}.page_number{background:0 0!important;color:var(--color-result-link-font)!important;text-decoration:underline}.page_number_current{background:0 0;color:var(--color-result-link-visited-font);border:none}#apis{margin-top:8px;clear:both}#backToTop{border:1px solid var(--color-backtotop-border);margin:0;padding:0;font-size:1em;background:var(--color-backtotop-background);position:fixed;bottom:8rem;left:56.3rem;transition:opacity .5s;opacity:0;border-radius:10px}#backToTop a{display:block;margin:0;padding:.7em}#backToTop a,#backToTop a:active,#backToTop a:hover,#backToTop a:visited{color:var(--color-backtotop-font)}#results.scrolling #backToTop{opacity:1}@media screen and (max-width:calc(79.75em - 0.5px)){#links_on_top span{display:none}}@media screen and (max-width:52rem){body.results_endpoint #links_on_top .link_on_top_about,body.results_endpoint #links_on_top .link_on_top_donate{display:none}}@media screen and (min-width:50em) and (max-width:79.75em){.center-aligment-no #links_on_top span{display:none}.center-aligment-no .page_with_header{margin:2rem .5rem;width:auto}.center-aligment-no #infoboxes{position:inherit;max-width:inherit}.center-aligment-no #infoboxes .infobox{clear:both}.center-aligment-no #infoboxes .infobox img{float:left;max-width:10em;margin-top:.5em;margin-right:.5em;margin-bottom:.5em;margin-left:0}.center-aligment-no #sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}.center-aligment-no #sidebar input{border:0}.center-aligment-no #apis{display:none}.center-aligment-no #search_url{display:none}.center-aligment-no .result .thumbnail{max-width:98%}.center-aligment-no .result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.center-aligment-no .result .engines{float:right;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.center-aligment-no .result-images{border-bottom:none!important}.center-aligment-no .image_result{max-width:98%}.center-aligment-no .image_result img{max-width:98%}.center-aligment-no #backToTop{display:none}.center-aligment-no #pagination{margin:2rem 0 0 0!important}.center-aligment-no #main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}}#main_results div#results.only_template_images{margin:1rem .5rem 0 .5rem;display:grid;grid-template-columns:100%;grid-template-rows:min-content min-content min-content 1fr min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}#main_results div#results.only_template_images #sidebar{display:none}#main_results div#results.only_template_images #urls{margin:0;display:flex;flex-wrap:wrap}#main_results div#results.only_template_images #urls::after{flex-grow:10;content:""}#main_results div#results.only_template_images #backToTop{left:auto;right:1rem}#main_results div#results.only_template_images #pagination{margin-right:4rem}@media screen and (max-width:50em){#links_on_top span{display:none}.page_with_header{margin:2rem .5rem;width:auto}#infoboxes{position:inherit;max-width:inherit}#infoboxes .infobox{clear:both}#infoboxes .infobox img{float:left;max-width:10em;margin-top:.5em;margin-right:.5em;margin-bottom:.5em;margin-left:0}#sidebar{margin:0 .5rem .125rem .5rem;padding:0;float:none;border:none;width:auto}#sidebar input{border:0}#apis{display:none}#search_url{display:none}.result .thumbnail{max-width:98%}.result .url span.url{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.result .engines{float:right;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 0 3px 0}.result-images{border-bottom:none!important}.image_result{max-width:98%}.image_result img{max-width:98%}#backToTop{display:none}#pagination{margin:2rem 0 0 0!important}#main_results div#results{margin:1rem auto 0 auto;justify-content:center;display:grid;grid-template-columns:45rem;grid-template-rows:min-content min-content min-content 1fr min-content min-content;gap:0;grid-template-areas:"corrections" "answers" "sidebar" "urls" "pagination"}html{background-color:var(--color-base-background-mobile)}#main_results div#results{grid-template-columns:100%;margin:1rem 0 0 0}#links_on_top{top:.8rem;right:.7rem}#main_index #links_on_top{top:.5rem;right:.5rem}#results{margin:0;padding:0}#pagination{margin:2rem 1rem 0 1rem!important}article[data-vim-selected]{border:1px solid var(--color-result-vim-arrow);border-radius:10px}.result{background:var(--color-result-background);margin:1rem 0}.result-images{margin:0;height:6rem;background:var(--color-base-background-mobile)}.infobox{border:none!important;background-color:var(--color-sidebar-background)}.numbered_pagination{display:none}.result-paper .attributes{display:block}.result-paper .attributes div{display:block}.result-paper .attributes div span{display:inline}.result-paper .attributes div span:first-child{font-weight:700}.result-paper .attributes div span:nth-child(2){margin-left:.5rem}}@media screen and (max-width:35em){.result-videos img.thumbnail{float:none!important}.result-videos .content{overflow:inherit}}pre code{white-space:pre-wrap}/*# sourceMappingURL=searxng.min.css.map */ \ No newline at end of file diff --git a/searx/static/themes/simple/css/searxng.min.css.map b/searx/static/themes/simple/css/searxng.min.css.map index bd13a92dd..cefb8c918 100644 --- a/searx/static/themes/simple/css/searxng.min.css.map +++ b/searx/static/themes/simple/css/searxng.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["node_modules/normalize.css/normalize.css","src/less/definitions.less","src/less/code.less","src/generated/pygments.less","src/less/toolkit.less","src/less/mixins.less","src/less/style-ltr.less","src/less/autocomplete.less","src/less/detail.less","src/less/animations.less","src/less/embedded.less","src/less/info.less","src/less/new_issue.less","src/less/stats.less","src/less/result_templates.less","src/less/index.less","src/less/preferences.less","src/less/search.less","src/less/style-center.less","src/less/style.less"],"names":[],"mappings":"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,aAGF,eACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,MACE,MAAA,EACA,OAAA,EV/FD,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,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","sourcesContent":["/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}\n","/*\n * SearXNG, A privacy-respecting, hackable metasearch engine\n *\n * To change the colors of the site, simple edit this variables\n */\n\n/// Light Theme\n:root {\n /// Base Colors\n --color-base-font: #444;\n --color-base-font-rgb: 68, 68, 68;\n --color-base-background: #fff;\n --color-base-background-mobile: #f2f5f8;\n --color-url-font: #334999;\n --color-url-visited-font: #9822c3;\n /// Header Colors\n --color-header-background: #fdfbff;\n --color-header-border: #ddd;\n /// Footer Colors\n --color-footer-background: #fdfbff;\n --color-footer-border: #ddd;\n /// Sidebar Colors\n --color-sidebar-border: #ddd;\n --color-sidebar-font: #000;\n --color-sidebar-background: #fff;\n /// BackToTop Colors\n --color-backtotop-font: #444;\n --color-backtotop-border: #ddd;\n --color-backtotop-background: #fff;\n /// Button Colors\n --color-btn-background: #3050ff;\n --color-btn-font: #fff;\n --color-show-btn-background: #bbb;\n --color-show-btn-font: #000;\n /// Search Input Colors\n --color-search-border: #bbb;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #fff;\n --color-search-font: #222;\n --color-search-background-hover: #3050ff;\n /// Modal Colors\n --color-error: #db3434;\n --color-error-background: lighten(#db3434, 40%);\n --color-warning: #dbba34;\n --color-warning-background: lighten(#dbba34, 40%);\n --color-success: #42db34;\n --color-success-background: lighten(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #3050ff;\n --color-categories-item-border-selected: #3050ff;\n /// Autocomplete Colors\n --color-autocomplete-font: #000;\n --color-autocomplete-border: #bbb;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #fff;\n --color-autocomplete-background-hover: #e3e3e3;\n /// Answer Colors\n --color-answer-font: #444; // same as --color-base-font\n --color-answer-background: #fff;\n /// Results Colors\n --color-result-background: #fff;\n --color-result-border: #ddd;\n --color-result-url-font: #000;\n --color-result-vim-selected: #f7f7f7;\n --color-result-vim-arrow: #000bbb;\n --color-result-description-highlight-font: #000;\n --color-result-link-font: #000bbb;\n --color-result-link-font-highlight: #000bbb;\n --color-result-link-visited-font: #9822c3;\n --color-result-publishdate-font: #777;\n --color-result-engines-font: #545454;\n --color-result-search-url-border: #ddd;\n --color-result-search-url-font: #000;\n // Images Colors\n --color-result-image-span-font: #444;\n --color-result-image-span-font-selected: #fff;\n --color-result-image-background: #fff;\n /// Settings Colors\n --color-settings-tr-hover: #ebebeb;\n --color-settings-engine-description-font: #545454;\n --color-settings-engine-group-background: #0001;\n /// Detail modal\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #242424;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #545454;\n --color-toolkit-kbd-font: #fff;\n --color-toolkit-kbd-background: #000;\n --color-toolkit-dialog-border: #ddd;\n --color-toolkit-dialog-background: #fff;\n --color-toolkit-tabs-label-border: #fff;\n --color-toolkit-tabs-section-border: #ddd;\n --color-toolkit-select-background: #e1e1e1;\n --color-toolkit-select-border: #ddd;\n --color-toolkit-select-background-hover: #bbb;\n --color-toolkit-input-text-font: #222;\n --color-toolkit-checkbox-onoff-off-background: #ddd;\n --color-toolkit-checkbox-onoff-on-background: #ddd;\n --color-toolkit-checkbox-onoff-on-mark-background: #3050ff;\n --color-toolkit-checkbox-onoff-on-mark-color: #fff;\n --color-toolkit-checkbox-onoff-off-mark-background: #aaa;\n --color-toolkit-checkbox-onoff-off-mark-color: #fff;\n --color-toolkit-checkbox-label-background: #ddd;\n --color-toolkit-checkbox-label-border: #ddd;\n --color-toolkit-checkbox-input-border: #3050ff;\n --color-toolkit-engine-tooltip-border: #ddd;\n --color-toolkit-engine-tooltip-background: #fff;\n --color-toolkit-loader-border: rgba(0, 0, 0, 0.2);\n --color-toolkit-loader-borderleft: rgba(255, 255, 255, 0);\n --color-doc-code: #300;\n --color-doc-code-background: #fdd;\n}\n\n.dark-themes() {\n /// Base Colors\n --color-base-font: #bbb;\n --color-base-font-rgb: 187, 187, 187;\n --color-base-background: #222428;\n --color-base-background-mobile: #222428;\n --color-url-font: #8af;\n --color-url-visited-font: #c09cd9;\n /// Header Colors\n --color-header-background: #1e1e22;\n --color-header-border: #333;\n /// Footer Colors\n --color-footer-background: #1e1e22;\n --color-footer-border: #333;\n /// Sidebar Colors\n --color-sidebar-border: #555;\n --color-sidebar-font: #fff;\n --color-sidebar-background: #292c34;\n /// BackToTop Colors\n --color-backtotop-font: #bbb;\n --color-backtotop-border: #333;\n --color-backtotop-background: #2b2e36;\n /// Button Colors\n --color-btn-background: #58f;\n --color-btn-font: #222;\n --color-show-btn-background: #555;\n --color-show-btn-font: #fff;\n /// Search Input Colors\n --color-search-border: #555;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #2b2e36;\n --color-search-font: #fff;\n --color-search-background-hover: #58f;\n /// Modal Colors\n --color-error: #f55b5b;\n --color-error-background: darken(#db3434, 40%);\n --color-warning: #f1d561;\n --color-warning-background: darken(#dbba34, 40%);\n --color-success: #79f56e;\n --color-success-background: darken(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #58f;\n --color-categories-item-border-selected: #58f;\n /// Autocomplete Colors\n --color-autocomplete-font: #fff;\n --color-autocomplete-border: #555;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #2b2e36;\n --color-autocomplete-background-hover: #1e1e22;\n /// Answer Colors\n --color-answer-font: #bbb; // same as --color-base-font\n --color-answer-background: #26292f;\n /// Results Colors\n --color-result-background: #26292f;\n --color-result-border: #333;\n --color-result-url-font: #fff;\n --color-result-vim-selected: #1f1f23cc;\n --color-result-vim-arrow: #8af;\n --color-result-description-highlight-font: #fff;\n --color-result-link-font: #8af;\n --color-result-link-font-highlight: #8af;\n --color-result-link-visited-font: #c09cd9;\n --color-result-publishdate-font: #888;\n --color-result-engines-font: #a4a4a4;\n --color-result-search-url-border: #555;\n --color-result-search-url-font: #fff;\n /// Detail modal : same as the light version\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #1a1a1c;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n // Images Colors\n --color-result-image-span-font: #bbb;\n --color-result-image-span-font-selected: #222;\n --color-result-image-background: #222;\n /// Settings Colors\n --color-settings-tr-hover: #2c2c32;\n --color-settings-engine-description-font: darken(#dcdcdc, 30%);\n --color-settings-engine-group-background: #1b1b21;\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #555;\n --color-toolkit-kbd-font: #000;\n --color-toolkit-kbd-background: #fff;\n --color-toolkit-dialog-border: #555;\n --color-toolkit-dialog-background: #1e1e22;\n --color-toolkit-tabs-label-border: #222;\n --color-toolkit-tabs-section-border: #555;\n --color-toolkit-select-background: #313338;\n --color-toolkit-select-border: #555;\n --color-toolkit-select-background-hover: #373b49;\n --color-toolkit-input-text-font: #fff;\n --color-toolkit-checkbox-onoff-off-background: #313338;\n --color-toolkit-checkbox-onoff-on-background: #313338;\n --color-toolkit-checkbox-onoff-on-mark-background: #58f;\n --color-toolkit-checkbox-onoff-on-mark-color: #222;\n --color-toolkit-checkbox-onoff-off-mark-background: #ddd;\n --color-toolkit-checkbox-onoff-off-mark-color: #222;\n --color-toolkit-checkbox-label-background: #222;\n --color-toolkit-checkbox-label-border: #333;\n --color-toolkit-checkbox-input-border: #58f;\n --color-toolkit-engine-tooltip-border: #333;\n --color-toolkit-engine-tooltip-background: #222;\n --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);\n --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);\n --color-doc-code: #fdd;\n --color-doc-code-background: #300;\n}\n\n/// Dark Theme (autoswitch based on device pref)\n@media (prefers-color-scheme: dark) {\n :root.theme-auto {\n .dark-themes();\n }\n}\n\n// Dark Theme by preferences\n:root.theme-dark {\n .dark-themes();\n}\n\n/// General Size\n@results-width: 45rem;\n@results-sidebar-width: 25rem;\n@results-offset: 10rem;\n@results-tablet-offset: 0.5rem;\n@results-gap: 5rem;\n@results-margin: 0.125rem;\n@result-padding: 1rem;\n@results-image-row-height: 12rem;\n@results-image-row-height-phone: 6rem;\n@search-width: 44rem;\n// heigh of #search, see detail.less\n@search-height: 7.6rem;\n\n/// Device Size\n/// @desktop > @tablet\n@tablet: 79.75em; // see https://github.com/searxng/searxng/issues/874\n@phone: 50em;\n@small-phone: 35em;\n@ultra-small-phone: 20rem;\n\n/// From style.less\n@stacked-bar-chart: rgb(0, 0, 0);\n\n/// Load fonts from this directory.\n@icon-font-path: \"../../../fonts/\";\n//** File name for all font files.\n@icon-font-name: \"glyphicons-halflings-regular\";\n//** Element ID within SVG icon file.\n@icon-font-svg-id: \"glyphicons_halflingsregular\";\n\n// decoration of the select HTML elements\n@select-light-svg-path: \"../svg/select-light.svg\";\n@select-dark-svg-path: \"../svg/select-dark.svg\";\n",".code-highlight pre {\n overflow: auto;\n background-color: inherit;\n color: inherit;\n border: inherit;\n}\n\n// stylelint-disable no-invalid-position-at-import-rule\n@import \"../generated/pygments.less\";\n","/*\n this file is generated automatically by searxng_extra/update/update_pygments.py\n using pygments version 2.14.0\n*/\n\n.code-highlight .linenos {\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n cursor: default;\n\n &::selection {\n background: transparent; /* WebKit/Blink Browsers */\n }\n &::-moz-selection {\n background: transparent; /* Gecko Browsers */\n }\n\n margin-right: 8px;\n text-align: right;\n}\n\n.code-highlight pre { line-height: 125%; }\n.code-highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight .hll { background-color: #ffffcc }\n.code-highlight { background: #f8f8f8; }\n.code-highlight .c { color: #3D7B7B; font-style: italic } /* Comment */\n.code-highlight .err { border: 1px solid #FF0000 } /* Error */\n.code-highlight .k { color: #008000; font-weight: bold } /* Keyword */\n.code-highlight .o { color: #666666 } /* Operator */\n.code-highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */\n.code-highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */\n.code-highlight .cp { color: #9C6500 } /* Comment.Preproc */\n.code-highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */\n.code-highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */\n.code-highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */\n.code-highlight .gd { color: #A00000 } /* Generic.Deleted */\n.code-highlight .ge { font-style: italic } /* Generic.Emph */\n.code-highlight .gr { color: #E40000 } /* Generic.Error */\n.code-highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */\n.code-highlight .gi { color: #008400 } /* Generic.Inserted */\n.code-highlight .go { color: #717171 } /* Generic.Output */\n.code-highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\n.code-highlight .gs { font-weight: bold } /* Generic.Strong */\n.code-highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\n.code-highlight .gt { color: #0044DD } /* Generic.Traceback */\n.code-highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\n.code-highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\n.code-highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\n.code-highlight .kp { color: #008000 } /* Keyword.Pseudo */\n.code-highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\n.code-highlight .kt { color: #B00040 } /* Keyword.Type */\n.code-highlight .m { color: #666666 } /* Literal.Number */\n.code-highlight .s { color: #BA2121 } /* Literal.String */\n.code-highlight .na { color: #687822 } /* Name.Attribute */\n.code-highlight .nb { color: #008000 } /* Name.Builtin */\n.code-highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */\n.code-highlight .no { color: #880000 } /* Name.Constant */\n.code-highlight .nd { color: #AA22FF } /* Name.Decorator */\n.code-highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */\n.code-highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */\n.code-highlight .nf { color: #0000FF } /* Name.Function */\n.code-highlight .nl { color: #767600 } /* Name.Label */\n.code-highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\n.code-highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */\n.code-highlight .nv { color: #19177C } /* Name.Variable */\n.code-highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\n.code-highlight .w { color: #bbbbbb } /* Text.Whitespace */\n.code-highlight .mb { color: #666666 } /* Literal.Number.Bin */\n.code-highlight .mf { color: #666666 } /* Literal.Number.Float */\n.code-highlight .mh { color: #666666 } /* Literal.Number.Hex */\n.code-highlight .mi { color: #666666 } /* Literal.Number.Integer */\n.code-highlight .mo { color: #666666 } /* Literal.Number.Oct */\n.code-highlight .sa { color: #BA2121 } /* Literal.String.Affix */\n.code-highlight .sb { color: #BA2121 } /* Literal.String.Backtick */\n.code-highlight .sc { color: #BA2121 } /* Literal.String.Char */\n.code-highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */\n.code-highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\n.code-highlight .s2 { color: #BA2121 } /* Literal.String.Double */\n.code-highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */\n.code-highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */\n.code-highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */\n.code-highlight .sx { color: #008000 } /* Literal.String.Other */\n.code-highlight .sr { color: #A45A77 } /* Literal.String.Regex */\n.code-highlight .s1 { color: #BA2121 } /* Literal.String.Single */\n.code-highlight .ss { color: #19177C } /* Literal.String.Symbol */\n.code-highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */\n.code-highlight .fm { color: #0000FF } /* Name.Function.Magic */\n.code-highlight .vc { color: #19177C } /* Name.Variable.Class */\n.code-highlight .vg { color: #19177C } /* Name.Variable.Global */\n.code-highlight .vi { color: #19177C } /* Name.Variable.Instance */\n.code-highlight .vm { color: #19177C } /* Name.Variable.Magic */\n.code-highlight .il { color: #666666 } /* Literal.Number.Integer.Long */\n","// other solution : http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/13857783#13857783\n\n// stylelint-disable no-descending-specificity\n\nhtml.no-js .hide_if_nojs {\n display: none;\n}\n\nhtml.js .show_if_nojs {\n display: none;\n}\n\n.center {\n text-align: center;\n}\n\n.right {\n float: right;\n}\n\n.left {\n float: left;\n}\n\n.invisible {\n display: none !important;\n}\n\n.list-unstyled {\n list-style-type: none;\n\n li {\n margin-top: 4px;\n margin-bottom: 4px;\n }\n}\n\n.danger {\n background-color: var(--color-error-background);\n}\n\n.warning {\n background: var(--color-warning-background);\n}\n\n.success {\n background: var(--color-success-background);\n}\n\n.badge {\n display: inline-block;\n color: var(--color-toolkit-badge-font);\n background-color: var(--color-toolkit-badge-background);\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n min-width: 10px;\n padding: 1px 5px;\n border-radius: 5px;\n}\n\n// kbd\nkbd {\n padding: 2px 4px;\n margin: 1px;\n font-size: 90%;\n color: var(--color-toolkit-kbd-font);\n background: var(--color-toolkit-kbd-background);\n}\n\n// table\ntable {\n width: 100%;\n\n &.striped {\n tr {\n border-bottom: 1px solid var(--color-settings-tr-hover);\n }\n }\n}\n\nth {\n padding: 0.4em;\n}\n\ntd {\n padding: 0 4px;\n}\n\ntr {\n &:hover {\n background: var(--color-settings-tr-hover) !important;\n }\n}\n\n// pre\n.pre() {\n display: block;\n font-size: 0.8em;\n word-break: break-all;\n margin: 0.1em;\n user-select: all;\n}\n\ndiv.selectable_url {\n display: block;\n border: 1px solid var(--color-result-search-url-border);\n padding: 4px;\n color: var(--color-result-search-url-font);\n margin: 0.1em;\n overflow: hidden;\n height: 1.2em;\n line-height: 1.2em;\n .rounded-corners-tiny;\n\n pre {\n .pre();\n }\n}\n\n// dialog\n.dialog() {\n position: relative;\n display: flex;\n padding: 1rem;\n margin: 0 0 1em 0;\n border: 1px solid var(--color-toolkit-dialog-border);\n .ltr-text-align-left();\n .rounded-corners;\n\n .close {\n .ltr-float-right();\n position: relative;\n top: -3px;\n color: inherit;\n font-size: 1.5em;\n }\n\n ul,\n ol,\n p {\n margin: 1px 0 0 0;\n }\n\n table {\n width: auto;\n }\n\n tr {\n vertical-align: text-top;\n\n &:hover {\n background: transparent !important;\n }\n }\n\n td {\n padding: 0 1em 0 0;\n padding-top: 0;\n .ltr-padding-right(1rem);\n padding-bottom: 0;\n .ltr-padding-left(0);\n }\n\n h4 {\n margin-top: 0.3em;\n margin-bottom: 0.3em;\n }\n}\n\n.dialog-error {\n .dialog();\n\n color: var(--color-error);\n background: var(--color-error-background);\n border-color: var(--color-error);\n}\n\n.dialog-warning {\n .dialog();\n\n color: var(--color-warning);\n background: var(--color-warning-background);\n border-color: var(--color-warning);\n}\n\n.dialog-modal {\n .dialog();\n\n display: block;\n background: var(--color-toolkit-dialog-background);\n position: fixed;\n top: 50%;\n left: 50%;\n margin: 0 auto;\n transform: translate(-50%, -50%);\n z-index: 10000000;\n\n h3 {\n margin-top: 0;\n }\n}\n\n// btn-collapse\n.btn-collapse {\n cursor: pointer;\n}\n\n//\n.scrollx {\n overflow-x: auto;\n overflow-y: hidden;\n display: block;\n padding: 0;\n margin: 0;\n border: none;\n}\n\n/* -- tabs -- */\n.tabs .tabs > label {\n font-size: 90%;\n}\n\nul.tabs {\n border-bottom: 1px solid var(--color-toolkit-tabs-section-border);\n list-style: none;\n padding-left: 0;\n\n li {\n display: flex;\n }\n}\n\n.tabs {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n min-width: 100%;\n\n & > * {\n order: 2;\n }\n\n & > input[type=radio] {\n display: none;\n }\n\n & > label,\n & > li > a {\n order: 1;\n padding: 0.7em;\n margin: 0 0.7em;\n letter-spacing: 0.5px;\n text-transform: uppercase;\n border: solid var(--color-toolkit-tabs-label-border);\n border-width: 0 0 2px 0;\n color: unset;\n\n .disable-user-select();\n\n cursor: pointer;\n\n &.active {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n }\n\n & > label:hover,\n & > li > a:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n\n & > section {\n min-width: 100%;\n padding: 0.7rem 0;\n box-sizing: border-box;\n border-top: 1px solid var(--color-toolkit-tabs-section-border);\n display: none;\n }\n\n // default selection\n & > label:last-of-type {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n letter-spacing: -0.1px;\n }\n\n & > section:last-of-type {\n display: block;\n }\n}\n\nhtml body .tabs > input:checked {\n ~ section {\n display: none;\n }\n\n ~ label {\n position: inherited;\n background: inherit;\n border-bottom: 2px solid transparent;\n font-weight: normal;\n color: inherit;\n\n &:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n }\n\n + label {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n\n + label + section {\n display: block;\n }\n}\n\n/* -- select -- */\nselect {\n height: 2.4rem;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n padding: 0.2rem !important;\n color: var(--color-search-font);\n font-size: 0.9rem;\n z-index: 2;\n\n &:hover,\n &:focus {\n cursor: pointer;\n }\n}\n\n@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {\n select {\n appearance: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n border-width: 0 2rem 0 0;\n border-color: transparent;\n background: data-uri('image/svg+xml;charset=UTF-8', @select-light-svg-path) no-repeat;\n background-position-x: calc(100% + 2rem);\n background-size: 2rem;\n background-origin: content-box;\n background-color: var(--color-toolkit-select-background);\n outline: medium none;\n text-overflow: ellipsis;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n\n option {\n background-color: var(--color-base-background);\n }\n }\n\n @media (prefers-color-scheme: dark) {\n html.theme-auto select,\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n }\n\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n}\n\n/* -- checkbox-onoff -- */\ninput.checkbox-onoff[type=\"checkbox\"] {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n cursor: pointer;\n display: inline-block;\n width: 2.5em;\n height: 0.7em;\n box-shadow: none !important;\n margin: 0 16px;\n border-radius: 10px;\n position: relative;\n\n /* focus & hover */\n &:focus,\n &:hover {\n outline: none;\n }\n\n &:focus::after {\n content: \"\";\n position: absolute;\n width: 3.5em;\n height: 1.65em;\n border: 1px solid var(--color-btn-background);\n border-radius: 12px;\n box-shadow: var(--color-btn-background) 0 0 3px;\n z-index: 10000;\n top: -0.55em;\n left: -0.6em;\n }\n\n &::before {\n position: absolute;\n top: -0.5em;\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: 0.75em;\n width: 1.875em;\n height: 1.875em;\n border-radius: 50%;\n }\n}\n\n/* check mark\nreversed-checkbox displays unchecked checkedboxes as checked, and vice versa.\nsee https://github.com/searxng/searxng/blob/3408d061aab9abc6168fec9bbc6deab71b236dac/searx/templates/simple/preferences.html#L313\n*/\ninput.checkbox-onoff[type=\"checkbox\"],\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"]:checked {\n background: var(--color-toolkit-checkbox-onoff-off-background);\n\n &::before {\n left: -0.5em;\n content: \"\\2715\";\n color: var(--color-toolkit-checkbox-onoff-off-mark-color);\n background: var(--color-toolkit-checkbox-onoff-off-mark-background);\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]:checked,\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"] {\n background: var(--color-toolkit-checkbox-onoff-on-background);\n\n &::before {\n left: calc(100% - 1.5em);\n content: \"\\2713\";\n color: var(--color-toolkit-checkbox-onoff-on-mark-color);\n background: var(--color-toolkit-checkbox-onoff-on-mark-background);\n }\n}\n\n/* -- checkbox -- */\n@supports (transform: rotate(-45deg)) {\n input[type=checkbox]:not(.checkbox-onoff) {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n\n width: 20px;\n height: 20px;\n cursor: pointer;\n position: relative;\n top: 0;\n left: 0;\n border: 2px solid var(--color-toolkit-checkbox-input-border);\n .rounded-corners(0.3em);\n\n &::after {\n content: '';\n width: 9px;\n height: 5px;\n position: absolute;\n top: 3px;\n left: 2px;\n border: 3px solid var(--color-toolkit-checkbox-label-border);\n border-top: none;\n border-right: none;\n background: transparent;\n opacity: 0;\n transform: rotate(-45deg);\n }\n\n &:checked::after {\n border-color: var(--color-toolkit-checkbox-input-border);\n opacity: 1;\n }\n }\n\n // disabled : can't be focused, show only the check mark\n input[type=checkbox][disabled]:not(.checkbox-onoff) {\n border: inherit;\n background-color: transparent !important;\n cursor: inherit;\n }\n\n // if not checked and possible to checked then display a \"light\" check mark on hover\n input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after {\n opacity: 0.5;\n }\n}\n\n@media screen and (max-width: @phone) {\n .tabs > label {\n width: 100%;\n }\n}\n\n/* -- loader -- */\n.loader,\n.loader::after {\n border-radius: 50%;\n width: 2em;\n height: 2em;\n}\n\n.loader {\n margin: 1em auto;\n font-size: 10px;\n position: relative;\n text-indent: -9999em;\n border-top: 0.5em solid var(--color-toolkit-loader-border);\n border-right: 0.5em solid var(--color-toolkit-loader-border);\n border-bottom: 0.5em solid var(--color-toolkit-loader-border);\n border-left: 0.5em solid var(--color-toolkit-loader-borderleft);\n -webkit-transform: translateZ(0);\n -ms-transform: translateZ(0);\n transform: translateZ(0);\n -webkit-animation: load8 1.2s infinite linear;\n animation: load8 1.2s infinite linear;\n}\n\n@-webkit-keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n/* -- engine-tooltip -- */\n.engine-tooltip {\n display: none;\n position: absolute;\n padding: 0.5rem 1rem;\n margin: 0 0 0 2rem;\n border: 1px solid var(--color-toolkit-engine-tooltip-border);\n background: var(--color-toolkit-engine-tooltip-background);\n font-size: 14px;\n font-weight: normal;\n z-index: 1000000;\n text-align: left;\n .rounded-corners;\n}\n\nth:hover .engine-tooltip,\ntd:hover .engine-tooltip,\n.engine-tooltip:hover {\n display: inline-block;\n}\n\n/* -- stacked bar chart -- */\n.stacked-bar-chart {\n margin: 0;\n padding: 0 0.125rem 0 4rem;\n width: 100%;\n width: -moz-available;\n width: -webkit-fill-available;\n width: fill;\n flex-direction: row;\n flex-wrap: nowrap;\n align-items: center;\n display: inline-flex;\n}\n\n.stacked-bar-chart-value {\n width: 3rem;\n display: inline-block;\n position: absolute;\n padding: 0 0.5rem;\n text-align: right;\n}\n\n.stacked-bar-chart-base {\n display: flex;\n flex-shrink: 0;\n flex-grow: 0;\n flex-basis: unset;\n}\n\n.stacked-bar-chart-median {\n .stacked-bar-chart-base();\n\n background: var(--color-base-font);\n border: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate80 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border: 1px solid rgba(var(--color-base-font-rgb), 0.3);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate95 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-bottom: 1px dotted rgba(var(--color-base-font-rgb), 0.5);\n padding: 0;\n}\n\n.stacked-bar-chart-rate100 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-left: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.4rem 0;\n width: 1px;\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n// Mixins\n.text-size-adjust (@property: 100%) {\n -webkit-text-size-adjust: @property;\n -ms-text-size-adjust: @property;\n -moz-text-size-adjust: @property;\n text-size-adjust: @property;\n}\n\n.rounded-corners (@radius: 10px) {\n border-radius: @radius;\n}\n\n.rounded-right-corners (@radius: 0 10px 10px 0) {\n border-radius: @radius;\n}\n\n.rounded-corners-tiny (@radius: 5px) {\n border-radius: @radius;\n}\n\n// disable user selection\n.disable-user-select () {\n -webkit-touch-callout: none;\n user-select: none;\n}\n\n.show-content-button() {\n padding: 5px 10px;\n .rounded-corners-tiny;\n background: var(--color-show-btn-background);\n color: var(--color-show-btn-font);\n cursor: pointer;\n\n &:hover {\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n }\n}\n",".ltr-left(@offset) {\n left: @offset;\n}\n\n.ltr-right(@offset) {\n right: @offset;\n}\n\n.ltr-margin-right(@offset) {\n margin-right: @offset;\n}\n\n.ltr-margin-left(@offset) {\n margin-left: @offset;\n}\n\n.ltr-border-right(@offset) {\n border-right: @offset;\n}\n\n.ltr-border-left(@offset) {\n border-left: @offset;\n}\n\n.ltr-padding-right(@offset) {\n padding-right: @offset;\n}\n\n.ltr-padding-left(@offset) {\n padding-left: @offset;\n}\n\n.ltr-float-left() {\n float: left;\n}\n\n.ltr-float-right() {\n float: right;\n}\n\n.ltr-text-align-right() {\n text-align: right;\n}\n\n.ltr-rounded-left-corners(@radius) {\n border-radius: @radius 0 0 @radius;\n}\n\n.ltr-rounded-top-left-corners(@radius) {\n border-radius: @radius 0 0 0;\n}\n\n.ltr-rounded-bottom-left-corners(@radius) {\n border-radius: 0 0 0 @radius;\n}\n\n.ltr-rounded-right-corners(@radius) {\n border-radius: 0 @radius @radius 0;\n}\n\n.ltr-rounded-top-right-corners(@radius) {\n border-radius: 0 @radius 0 0;\n}\n\n.ltr-rounded-bottom-right-corners(@radius) {\n border-radius: 0 0 @radius 0;\n}\n\n.ltr-text-align-left() {\n text-align: left;\n}\n\n.ltr-border-left-width(@offset) {\n border-left-width: @offset;\n}\n\n.ltr-border-right-width(@offset) {\n border-right-width: @offset;\n}\n\n.ltr-transform() {\n transform: scale(1, 1);\n}\n\n@import \"style.less\";\n","/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */\n\n.autocomplete {\n position: absolute;\n width: @search-width;\n max-height: 0;\n overflow-y: hidden;\n .ltr-text-align-left();\n\n .rounded-corners;\n\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background);\n }\n\n &:empty {\n display: none;\n }\n\n > ul {\n list-style-type: none;\n margin: 0;\n padding: 0;\n\n > li {\n cursor: pointer;\n padding: 0.5rem 1rem;\n\n &.active,\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background-hover);\n\n a:active,\n a:focus,\n a:hover {\n text-decoration: none;\n }\n }\n\n &.locked {\n cursor: inherit;\n }\n }\n }\n\n &.open {\n display: block;\n background-color: var(--color-autocomplete-background);\n color: var(--color-autocomplete-font);\n max-height: 32rem;\n overflow-y: auto;\n z-index: 100;\n margin-top: 3.5rem;\n border-radius: 0.8rem;\n box-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n\n &:empty {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n .autocomplete {\n width: 100%;\n\n > ul > li {\n padding: 1rem;\n }\n }\n}\n","#main_results #results.image-detail-open.only_template_images {\n width: min(98%, 59.25rem) !important;\n}\n\n#main_results #results.only_template_images.image-detail-open #backToTop {\n .ltr-left(56.75rem) !important;\n .ltr-right(inherit);\n}\n\narticle.result-images .detail {\n display: none;\n}\n\n#results.image-detail-open article.result-images[data-vim-selected] .detail {\n display: flex;\n flex-direction: column;\n position: fixed;\n .ltr-left(60rem);\n .ltr-right(0);\n top: @search-height;\n transition: top 0.064s ease-in 0s;\n bottom: 0;\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-background);\n z-index: 10000;\n padding: 4rem 3rem 3rem 3rem;\n\n a.result-images-source {\n display: block;\n flex: 1;\n text-align: left;\n width: 100%;\n border: none;\n text-decoration: none;\n\n img {\n padding: 0;\n margin: 0;\n border: none;\n object-fit: contain;\n width: inherit;\n height: inherit;\n max-width: 100%;\n min-height: inherit;\n max-height: calc(100vh - 25rem - 7rem);\n background: inherit;\n }\n }\n\n .result-images-labels {\n color: var(--color-result-detail-font);\n max-height: 16rem;\n min-height: 16rem;\n\n hr {\n border-top: 1px solid var(--color-result-detail-hr);\n border-bottom: none;\n }\n\n h4 {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n font-size: 0.9rem;\n }\n\n p {\n color: var(--color-result-detail-label-font);\n font-size: 0.9rem;\n\n span {\n display: inline-block;\n width: 12rem;\n }\n }\n\n h4,\n p,\n a {\n .ltr-text-align-left();\n }\n\n p.result-content {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-url {\n white-space: nowrap;\n overflow-x: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-content:hover,\n p.result-url:hover {\n position: relative;\n overflow: inherit !important;\n background: var(--color-result-detail-background);\n text-overflow: inherit !important;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-result-detail-link);\n }\n\n a:hover {\n text-decoration: underline;\n }\n }\n\n a.result-detail-close {\n top: 1rem;\n .ltr-left(1rem);\n padding: 0.4rem;\n }\n\n a.result-detail-previous {\n top: 1rem;\n .ltr-right(6rem);\n // center the icon by moving it slightly on the left\n padding-top: 0.4rem;\n .ltr-padding-right(0.5rem);\n padding-bottom: 0.4rem;\n .ltr-padding-left(0.3rem);\n }\n\n a.result-detail-next {\n top: 1rem;\n .ltr-right(2rem);\n padding: 0.4rem;\n }\n\n a.result-detail-close,\n a.result-detail-next,\n a.result-detail-previous {\n border-radius: 50%;\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n position: absolute;\n filter: opacity(40%);\n z-index: 2000002;\n\n span {\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n text-align: center;\n }\n }\n\n a.result-detail-next,\n a.result-detail-previous {\n span::before {\n // vertical center small icons\n vertical-align: sub;\n }\n }\n\n a.result-detail-close,\n a.result-detail-close:visited,\n a.result-detail-close:hover,\n a.result-detail-close:active,\n a.result-detail-previous,\n a.result-detail-previous:visited,\n a.result-detail-previous:hover,\n a.result-detail-previous:active,\n a.result-detail-next,\n a.result-detail-next:visited,\n a.result-detail-next:hover,\n a.result-detail-next:active {\n color: var(--color-result-detail-font);\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-font);\n }\n\n a.result-detail-close:focus,\n a.result-detail-close:hover,\n a.result-detail-previous:focus,\n a.result-detail-previous:hover,\n a.result-detail-next:focus,\n a.result-detail-next:hover {\n filter: opacity(80%);\n }\n\n .loader {\n position: absolute;\n top: 1rem;\n .ltr-right(50%);\n border-top: 0.5em solid var(--color-result-detail-loader-border);\n border-right: 0.5em solid var(--color-result-detail-loader-border);\n border-bottom: 0.5em solid var(--color-result-detail-loader-border);\n border-left: 0.5em solid var(--color-result-detail-loader-borderleft);\n }\n}\n\n#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail {\n top: 0;\n\n a.result-images-source img {\n max-height: calc(100vh - 25rem);\n }\n}\n\n@media screen and (max-width: @tablet) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n\n a.result-images-source {\n display: flex;\n flex-direction: column;\n justify-content: center;\n\n img {\n width: 100%;\n max-height: calc(100vh - 24rem);\n }\n }\n\n a.result-detail-next {\n .ltr-right(1rem);\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n padding: 1rem;\n\n a.result-images-source img {\n width: 100%;\n max-height: calc(100vh - 20rem);\n margin: 0;\n }\n\n .result-images-labels p span {\n width: inherit;\n .ltr-margin-right(1rem);\n }\n }\n}\n",".dialog-modal {\n animation-name: dialogmodal;\n animation-duration: 0.13s;\n\n @keyframes dialogmodal {\n 0% {\n opacity: 0;\n }\n\n 50% {\n opacity: 0.5;\n transform: translate(-50%, -50%) scale(1.05);\n }\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]::before {\n transition: left 0.25s;\n}\n","iframe[src^=\"https://w.soundcloud.com\"] {\n height: 120px;\n}\n\niframe[src^=\"https://www.deezer.com\"] {\n // The real size is 92px, but 94px are needed to avoid an inner scrollbar of\n // the embedded HTML.\n height: 94px;\n}\n\niframe[src^=\"https://www.mixcloud.com\"] {\n // the embedded player from mixcloud has some quirks: initial there is an\n // issue with an image URL that is blocked since it is an a Cross-Origin\n // request. The alternative text (Mixcloud Logo then cause an\n // scrollbar in the inner of the iframe we can't avoid. Another quirk comes\n // when pressing the play button, somtimes the shown player has an height of\n // 200px, somtimes 250px.\n height: 250px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer\"] {\n // show playlist\n height: 350px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer/track\"] {\n // hide playlist\n height: 120px;\n}\n\niframe[src^=\"https://genius.com/songs\"] {\n height: 65px;\n}\n",".info-page {\n code {\n font-family: monospace;\n color: var(--color-doc-code);\n background-color: var(--color-doc-code-background);\n padding: 2px 5px;\n .rounded-corners(5px);\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n.stats_endpoint {\n .github-issue-button {\n display: block;\n padding: 8px 16px;\n font-family: sans-serif;\n font-size: 16px;\n color: white;\n background-color: #238636;\n border: #2ea043;\n border-radius: 10px !important;\n box-shadow: rgba(0, 0, 0, 0) 0 0 0 0;\n }\n\n .github-issue-button:hover {\n background-color: #2ea043;\n }\n\n .issue-hide {\n display: none;\n }\n\n input[type=checked] {\n position: absolute;\n }\n\n label {\n margin: 1rem 1rem 1rem 0;\n }\n\n .step_content {\n margin: 1rem 1rem 1rem 2rem;\n }\n\n .step1,\n .step2 {\n visibility: hidden;\n }\n\n .step1_delay {\n transition: visibility 0s linear 4s;\n }\n\n #step1:checked ~ .step1,\n #step2:checked ~ .step2 {\n visibility: visible;\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.engine-stats {\n border-spacing: 0;\n border-collapse: collapse;\n\n tr td,\n tr th {\n border-bottom: 1px solid var(--color-result-border);\n padding: 0.25rem;\n }\n\n table.engine-tooltip {\n border-spacing: 0;\n border-collapse: collapse;\n\n td,\n th {\n border: none;\n }\n }\n\n .engine-name {\n width: 20rem;\n }\n\n .engine-score {\n width: 7rem;\n text-align: right;\n }\n\n .engine-reliability {\n text-align: right;\n }\n}\n\ntable.engine-error th.engine-error-type,\ntable.engine-error td.engine-error-type,\nfailed-test {\n width: 10rem;\n}\n\n.engine-errors {\n margin-top: 3rem;\n\n table.engine-error {\n max-width: 1280px;\n margin: 1rem 0 3rem 0;\n border: 1px solid var(--color-result-border);\n .ltr-text-align-left();\n\n tr th,\n tr td {\n padding: 0.5rem;\n }\n\n & span.log_parameters {\n border-right: 1px solid solid var(--color-result-border);\n padding: 0 1rem 0 0;\n margin: 0 0 0 0.5rem;\n }\n }\n}\n\n.bar-chart-value {\n width: 3em;\n display: inline-block;\n text-align: right;\n padding-right: 0.5rem;\n}\n\n.bar-chart-graph {\n width: calc(100% - 5rem);\n display: inline-block;\n}\n\n.bar-chart-bar {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n}\n\n.bar-chart-serie1 {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n float: left;\n}\n\n.bar-chart-serie2 {\n border: 3px solid #deb15b;\n margin: 1px 0;\n float: left;\n}\n\n.bar0 {\n width: 0;\n border: 0;\n}\n\n.generate-bar(100);\n\n.generate-bar(@n, @i: 1) when (@i =< @n) {\n .bar@{i} {\n width: (@i * 100% / @n);\n }\n .generate-bar(@n, (@i + 1));\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.osm-map-box {\n height: 300px;\n width: 100%;\n margin: 10px 0;\n}\n","#main_index {\n margin-top: 26vh;\n}\n\n.index {\n text-align: center;\n\n .title {\n background: url('../img/searxng.png') no-repeat;\n min-height: 4rem;\n margin: 4rem auto;\n background-position: center;\n background-size: contain;\n }\n\n h1 {\n font-size: 4em;\n visibility: hidden;\n }\n\n #search,\n #search_header {\n margin: 0 auto;\n background: inherit;\n border: inherit;\n padding: 0;\n display: block;\n }\n\n .search_filters {\n display: block;\n margin: 1em 0;\n }\n\n .category label {\n padding: 6px 10px;\n border-bottom: initial !important;\n }\n}\n\n@media screen and (max-width: @tablet) {\n div.title {\n h1 {\n font-size: 1em;\n }\n }\n\n #main_index {\n margin-top: 6em;\n }\n}\n","#tab-content-query table td,\n#tab-content-query table th {\n .ltr-text-align-right() !important;\n height: 3rem;\n}\n\n#main_preferences {\n form {\n width: 100%;\n }\n\n fieldset {\n margin: 8px;\n border: none;\n }\n\n legend {\n margin: 0;\n padding: 5px 0 0 0;\n display: block;\n .ltr-float-left();\n width: 300px;\n }\n\n .value {\n margin: 0;\n padding: 0;\n .ltr-float-left();\n width: 15em;\n\n select,\n input[type=\"text\"] {\n font-size: inherit !important;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n }\n\n select {\n width: 14rem;\n }\n\n input[type=\"text\"] {\n width: 13.25rem;\n color: var(--color-toolkit-input-text-font);\n border: none;\n background: none repeat scroll 0 0 var(--color-toolkit-select-background);\n padding: 0.2rem 0.4rem;\n height: 2rem;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n }\n\n select:focus,\n input:focus {\n outline: none;\n box-shadow: 0 0 1px 1px var(--color-btn-background);\n }\n }\n\n .description {\n margin: 0;\n padding: 5px 0 0 0;\n .ltr-float-right();\n width: 50%;\n color: var(--color-settings-engine-description-font);\n font-size: 90%;\n }\n\n table {\n border-collapse: collapse;\n }\n\n table td {\n text-align: center;\n }\n\n .category {\n .ltr-margin-right(0.5rem);\n\n label {\n border: 2px solid transparent;\n padding: 0.2rem 0.4rem;\n .rounded-corners-tiny;\n }\n }\n\n .category input[type=\"checkbox\"]:checked + label {\n border: 2px solid var(--color-categories-item-border-selected);\n }\n\n table.table_engines {\n td {\n height: 3.75rem;\n }\n\n th.name {\n /* stylelint-disable */\n label {\n cursor: pointer;\n }\n /* stylelint-enable */\n\n .engine-tooltip {\n margin-top: 1.8rem;\n .ltr-left(calc((100% - 85em) / 2 + 10em));\n max-width: 40rem;\n\n .engine-description {\n margin-top: 0.5rem;\n }\n }\n }\n\n .engine-group {\n .ltr-text-align-left();\n font-weight: normal;\n background: var(--color-settings-engine-group-background);\n }\n\n .name,\n .shortcut {\n .ltr-text-align-left();\n }\n }\n\n table.cookies {\n width: 100%;\n direction: ltr;\n\n th,\n td {\n text-align: left;\n font-family: monospace;\n font-size: 1rem;\n padding: 0.5em;\n vertical-align: top;\n }\n\n td:first-child {\n word-break: keep-all;\n width: 14rem;\n padding-right: 1rem;\n }\n\n td:last-child {\n word-break: break-all;\n }\n\n & > tbody > tr:nth-child(even) > th,\n & > tbody > tr:nth-child(even) > td {\n background-color: var(--color-settings-tr-hover);\n }\n }\n\n .preferences_back {\n background: none repeat scroll 0 0 var(--color-btn-background);\n color: var(--color-btn-font);\n border: 0 none;\n .rounded-corners;\n\n cursor: pointer;\n display: inline-block;\n margin: 2px 4px;\n padding: 0.7em;\n\n a {\n color: var(--color-settings-return-font);\n }\n\n a::first-letter {\n text-transform: uppercase;\n }\n }\n\n div.selectable_url {\n pre {\n width: 100%;\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n .preferences_back {\n clear: both;\n }\n\n .engine-tooltip {\n .ltr-left(10em) !important;\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*/\n\n#search {\n padding: 0;\n margin: 0;\n}\n\n#search_header {\n padding-top: 1.5em;\n .ltr-padding-right(2em);\n .ltr-padding-left(@results-offset - 3rem);\n margin: 0;\n background: var(--color-header-background);\n border-bottom: 1px solid var(--color-header-border);\n display: grid;\n column-gap: 1.2rem;\n row-gap: 1rem;\n grid-template-columns: 3rem 1fr;\n grid-template-areas:\n \"logo search\"\n \"spacer categories\";\n}\n\n.category {\n display: inline-block;\n position: relative;\n .ltr-margin-right(1rem);\n padding: 0;\n\n input {\n display: none;\n }\n\n label {\n svg {\n padding-right: 0.2rem;\n }\n\n cursor: pointer;\n padding: 0.2rem 0;\n display: inline-flex;\n text-transform: capitalize;\n font-size: 0.9em;\n border-bottom: 2px solid transparent;\n .disable-user-select;\n\n div.category_name {\n margin: auto 0;\n }\n }\n\n input[type=\"checkbox\"]:checked + label {\n color: var(--color-categories-item-selected-font);\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n}\n\n#search_logo {\n grid-area: logo;\n display: flex;\n align-items: center;\n justify-content: center;\n\n svg {\n flex: 1;\n width: 30px;\n height: 30px;\n margin: 0.5rem 0 auto 0;\n }\n}\n\n.search_categories {\n grid-area: categories;\n\n .help {\n display: none;\n }\n\n &:hover .help {\n display: block;\n position: absolute;\n background: var(--color-base-background);\n padding: 1rem 0.6rem 0.6rem 0;\n z-index: 1000;\n width: 100%;\n left: -0.1rem;\n }\n}\n\n#search_view {\n grid-area: search;\n}\n\n.search_box {\n border-radius: 0.8rem;\n width: @search-width;\n display: inline-flex;\n flex-direction: row;\n white-space: nowrap;\n box-shadow: var(--color-search-shadow);\n}\n\n#clear_search {\n display: block;\n border-collapse: separate;\n box-sizing: border-box;\n width: 1.8rem;\n margin: 0;\n padding: 0.8rem 0.2rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 10000;\n\n &:hover {\n color: var(--color-search-background-hover);\n }\n\n &.empty * {\n display: none;\n }\n}\n\nhtml.no-js #clear_search.hide_if_nojs {\n display: none;\n}\n\n#q,\n#send_search {\n display: block;\n margin: 0;\n padding: 0.8rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 2;\n}\n\n#q {\n width: 100%;\n .ltr-padding-left(1rem);\n .ltr-padding-right(0) !important;\n .ltr-rounded-left-corners(0.8rem);\n}\n\n#q::-ms-clear,\n#q::-webkit-search-cancel-button {\n display: none;\n}\n\n#send_search {\n .ltr-rounded-right-corners(0.8rem);\n\n &:hover {\n cursor: pointer;\n background-color: var(--color-search-background-hover);\n color: var(--color-search-background);\n }\n}\n\n.no-js #clear_search,\n.no-js #send_search {\n width: auto !important;\n .ltr-border-left(1px solid var(--color-search-border));\n}\n\n.search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset + 0.6rem);\n display: flex;\n overflow-x: auto;\n overscroll-behavior-inline: contain;\n\n select {\n background-color: inherit;\n\n &:hover,\n &:focus {\n color: var(--color-base-font);\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n #search_header {\n padding: 1.5em @results-tablet-offset 0 @results-tablet-offset;\n column-gap: @results-tablet-offset;\n }\n\n .search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-tablet-offset + 3rem);\n }\n\n #categories {\n font-size: 90%;\n clear: both;\n\n .checkbox_container {\n margin: auto;\n margin-top: 2px;\n }\n }\n}\n\n@media screen and (max-width: @tablet) and (hover: none) {\n #main_index,\n #main_results {\n #categories_container {\n width: max-content;\n\n .category {\n display: inline-block;\n width: auto;\n }\n }\n\n #categories {\n width: 100%;\n .ltr-text-align-left();\n overflow-x: scroll;\n overflow-y: hidden;\n -webkit-overflow-scrolling: touch;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #search_header {\n width: 100%;\n margin: 0;\n padding: 0.1rem 0 0 0;\n column-gap: 0;\n row-gap: 0;\n grid-template-areas:\n \"logo search\"\n \"categories categories\";\n }\n\n .search_logo {\n padding: 0;\n }\n\n .search_box {\n width: 98%;\n display: flex;\n margin: 0 auto;\n }\n\n #q {\n width: 100%;\n flex: 1;\n }\n\n .search_filters {\n margin: 0;\n }\n\n .category {\n display: inline-block;\n width: auto;\n margin: 0;\n\n label {\n padding: 1rem !important;\n margin: 0 !important;\n\n svg {\n display: none;\n }\n }\n }\n\n #search_view:focus-within {\n display: block;\n background-color: var(--color-search-background);\n position: absolute;\n top: 0;\n height: 100%;\n width: 100%;\n z-index: 10000;\n\n .search_box {\n border-bottom: 1px solid var(--color-search-border);\n width: 100%;\n border-radius: 0;\n box-shadow: none;\n\n #send_search {\n .ltr-margin-right(0) !important; // Delete when send_search button is disabled on mobile.\n }\n\n * {\n border: none;\n border-radius: 0;\n box-shadow: none;\n }\n }\n }\n\n #main_results #q:placeholder-shown ~ #send_search {\n .ltr-margin-right(2.6rem);\n transition: margin 0.1s;\n }\n}\n\n@media screen and (max-width: @ultra-small-phone) {\n #search_header {\n grid-template-areas:\n \"search search\"\n \"categories categories\";\n }\n\n #search_logo {\n display: none;\n }\n}\n\n#categories {\n .disable-user-select;\n\n &::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n}\n\n#categories_container {\n position: relative;\n}\n","/*\n--center-page-width overrides the less variable @results-width when the results are centered\nsee the CSS rules for #results in style.less ( grid-template-columns and gap).\n\nIn this file, the --center-page-width values comes from the Oscar theme (Bootstrap 3).\n\nAll rules starts with \".center-aligment-yes #main_results\" to be enabled only\non the /search URL and when the \"center alignment\" preference is enabled.\n*/\n\n@media screen and (min-width: @phone) {\n .center-aligment-yes #main_results {\n --center-page-width: 48rem;\n }\n}\n\n@media screen and (min-width: 62rem) {\n .center-aligment-yes #main_results {\n --center-page-width: 60rem;\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n --center-page-width: 73rem;\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // any change must be reset in @media screen and (min-width: @tablet) { ... }\n .center-aligment-yes #main_results {\n #results {\n grid-template-columns: 60% calc(40% - @results-gap);\n margin-left: 0;\n margin-right: 0;\n }\n\n #urls {\n .ltr-margin-left(3rem);\n }\n\n #sidebar {\n .ltr-margin-right(1rem);\n }\n\n #backToTop {\n .ltr-left(calc(60% + 1rem));\n }\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n display: flex;\n flex-direction: column;\n align-items: center;\n\n #search {\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n }\n\n #search_header {\n grid-template-columns: calc(50% - 4.5rem - var(--center-page-width) / 2) 3rem var(--center-page-width);\n grid-template-areas: \"na logo search\" \"na spacer categories\";\n column-gap: 1.2rem; // from search.less\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n }\n\n .search_filters {\n .ltr-margin-left(0.5rem);\n width: var(--center-page-width);\n }\n\n #results {\n // from style.less (when screen width = @tablet, reset layout from tablet)\n .ltr-margin-right(2rem);\n .ltr-margin-left(@results-offset);\n //\n\n &.only_template_images,\n &.image-detail-open {\n // * grid-template-columns and .ltr-margin-left are set in style.less\n // * With .image-detail-open.only_template_images, the width is set in detail.less\n // * #results is going to be centered because of the #main_results rules,\n // align-self aligns the results on the left or right according to the language.\n align-self: flex-start;\n }\n\n &:not(.only_template_images):not(.image-detail-open) {\n // the gap is set in style.less\n .ltr-margin-left(1.5rem);\n grid-template-columns: calc(var(--center-page-width) - @results-gap - @results-sidebar-width) @results-sidebar-width;\n\n #backToTop {\n .ltr-left(calc(50% - @results-sidebar-width - @results-gap + 1rem + var(--center-page-width) / 2));\n }\n }\n\n .result .content {\n max-width: inherit;\n }\n }\n\n // from style.less (when screen width = @tablet, reset layout from tablet)\n #urls {\n .ltr-margin-left(0);\n }\n\n #sidebar {\n .ltr-margin-right(0);\n }\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*\n* To convert \"style.less\" to \"style.css\" run: $make styles\n*/\n\n// stylelint-disable no-descending-specificity\n\n@import (inline) \"../../node_modules/normalize.css/normalize.css\";\n@import \"definitions.less\";\n@import \"mixins.less\";\n@import \"code.less\";\n@import \"toolkit.less\";\n@import \"autocomplete.less\";\n@import \"detail.less\";\n@import \"animations.less\";\n@import \"embedded.less\";\n@import \"info.less\";\n@import \"new_issue.less\";\n@import \"stats.less\";\n@import \"result_templates.less\";\n\n// for index.html template\n@import \"index.less\";\n\n// for preferences.html template\n@import \"preferences.less\";\n\n// Search-Field\n@import \"search.less\";\n\n// to center the results\n@import \"style-center.less\";\n\n// ion-icon\n.ion-icon {\n display: inline-block;\n vertical-align: bottom;\n line-height: 1;\n text-decoration: inherit;\n .ltr-transform();\n}\n\n.ion-icon-small {\n width: 1rem;\n height: 1rem;\n .ion-icon;\n}\n\n.ion-icon-big {\n width: 1.5rem;\n height: 1.5rem;\n .ion-icon;\n}\n\n// Main LESS-Code\nhtml {\n font-family: sans-serif;\n font-size: 0.9em;\n .text-size-adjust;\n\n color: var(--color-base-font);\n background-color: var(--color-base-background);\n padding: 0;\n margin: 0;\n}\n\nbody,\nmain {\n padding: 0;\n margin: 0;\n}\n\nbody {\n display: flex;\n flex-direction: column;\n height: 100vh;\n margin: 0;\n}\n\nmain {\n width: 100%;\n margin-bottom: 2rem;\n flex: 1;\n}\n\n.page_with_header {\n margin: 2em auto;\n width: 85em;\n}\n\nfooter {\n clear: both;\n min-height: 4rem;\n padding: 1rem 0;\n width: 100%;\n text-align: center;\n background-color: var(--color-footer-background);\n border-top: 1px solid var(--color-footer-border);\n overflow: hidden;\n\n p {\n font-size: 0.9em;\n }\n}\n\n.page_with_header .logo {\n height: 40px;\n}\n\ninput[type=\"submit\"],\n#results button[type=\"submit\"] {\n padding: 0.7rem;\n display: inline-block;\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n .rounded-corners;\n\n border: 0;\n cursor: pointer;\n}\n\na {\n text-decoration: none;\n color: var(--color-url-font);\n\n &:visited {\n color: var(--color-url-visited-font);\n\n .highlight {\n color: var(--color-url-visited-font);\n }\n }\n}\n\narticle[data-vim-selected] {\n background: var(--color-result-vim-selected);\n .ltr-border-left(0.2rem solid var(--color-result-vim-arrow));\n .ltr-rounded-right-corners(10px);\n}\n\narticle.result-images[data-vim-selected] {\n background: var(--color-result-vim-arrow);\n border: none;\n .rounded-corners;\n\n .image_thumbnail {\n filter: opacity(60%);\n }\n\n span.title,\n span.source {\n color: var(--color-result-image-span-font-selected);\n }\n}\n\narticle[data-vim-selected].category-videos,\narticle[data-vim-selected].category-news,\narticle[data-vim-selected].category-map,\narticle[data-vim-selected].category-music,\narticle[data-vim-selected].category-files,\narticle[data-vim-selected].category-social {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n}\n\n.result {\n margin: @results-margin 0;\n padding: @result-padding;\n .ltr-border-left(0.2rem solid transparent);\n\n h3 {\n font-size: 1.2rem;\n word-wrap: break-word;\n margin: 0.4rem 0 0.4rem 0;\n padding: 0;\n\n a {\n color: var(--color-result-link-font);\n font-weight: normal;\n font-size: 1.1em;\n\n &:visited {\n color: var(--color-result-link-visited-font);\n }\n\n &:focus,\n &:hover {\n text-decoration: underline;\n border: none;\n outline: none;\n }\n }\n }\n\n .cache_link,\n .proxyfied_link {\n font-size: 0.9em !important;\n }\n\n .content,\n .stat {\n font-size: 0.9em;\n margin: 0;\n padding: 0;\n max-width: 54em;\n word-wrap: break-word;\n line-height: 1.24;\n\n .highlight {\n color: var(--color-result-description-highlight-font);\n background: inherit;\n font-weight: bold;\n }\n }\n\n .altlink a {\n font-size: 0.9em;\n margin: 0 10px 0 0;\n .show-content-button;\n }\n\n .codelines {\n .highlight {\n color: inherit;\n background: inherit;\n font-weight: normal;\n }\n }\n\n .url_wrapper {\n display: flex;\n font-size: 1rem;\n color: var(--color-result-url-font);\n flex-wrap: nowrap;\n overflow: hidden;\n flex-direction: row;\n margin: 0;\n padding: 0;\n\n .url_o1 {\n white-space: nowrap;\n flex-shrink: 1;\n }\n\n .url_o1::after {\n content: \" \";\n width: 1ch;\n display: inline-block;\n }\n\n .url_o2 {\n overflow: hidden;\n white-space: nowrap;\n flex-basis: content;\n flex-grow: 0;\n flex-shrink: 1;\n text-align: right;\n\n .url_i2 {\n float: right;\n }\n }\n }\n\n .published_date,\n .result_length,\n .result_author,\n .result_shipping,\n .result_source_country {\n font-size: 0.8em;\n color: var(--color-result-publishdate-font);\n }\n\n .result_price {\n font-size: 1.2em;\n color: var(--color-result-description-highlight-font);\n }\n\n img {\n &.thumbnail {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 20rem;\n height: unset; // remove heigth value that was needed for lazy loading\n }\n\n &.image {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 7rem;\n max-height: 7rem;\n object-fit: scale-down;\n object-position: right top;\n }\n }\n\n .break {\n clear: both;\n }\n}\n\n.result-paper {\n .attributes {\n display: table;\n border-spacing: 0.125rem;\n\n div {\n display: table-row;\n\n span {\n font-size: 0.9rem;\n margin-top: 0.25rem;\n display: table-cell;\n\n time {\n font-size: 0.9rem;\n }\n }\n\n span:first-child {\n color: var(--color-base-font);\n min-width: 10rem;\n }\n\n span:nth-child(2) {\n color: var(--color-result-publishdate-font);\n }\n }\n }\n\n .content {\n margin-top: 0.25rem;\n }\n\n .comments {\n font-size: 0.9rem;\n margin: 0.25rem 0 0 0;\n padding: 0;\n word-wrap: break-word;\n line-height: 1.24;\n font-style: italic;\n }\n}\n\n.template_group_images {\n display: flex;\n flex-wrap: wrap;\n}\n\n.template_group_images::after {\n flex-grow: 10;\n content: \"\";\n}\n\n.category-videos,\n.category-news,\n.category-map,\n.category-music,\n.category-files,\n.category-social {\n border: 1px solid var(--color-result-border);\n margin: 1rem @results-tablet-offset 0 @results-tablet-offset !important;\n .rounded-corners;\n}\n\n.category-social .image {\n width: auto !important;\n min-width: 48px;\n min-height: 48px;\n padding: 0 5px 25px 0 !important;\n}\n\n.audio-control audio {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.embedded-content iframe {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.result-videos .content {\n overflow: hidden;\n}\n\n.result-videos .embedded-video iframe {\n width: 100%;\n aspect-ratio: 16 / 9;\n padding: 10px 0 0 0;\n}\n\n@supports not (aspect-ratio: 1 / 1) {\n // support older browsers which do not have aspect-ratio\n // https://caniuse.com/?search=aspect-ratio\n .result-videos .embedded-video iframe {\n height: calc(@results-width * 9 / 16);\n }\n}\n\n.engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n color: var(--color-result-engines-font);\n\n span {\n font-size: smaller;\n margin-top: 0;\n margin-bottom: 0;\n .ltr-margin-right(0.5rem);\n .ltr-margin-left(0);\n }\n}\n\n.small_font {\n font-size: 0.8em;\n}\n\n.highlight {\n color: var(--color-result-link-font-highlight);\n background: inherit;\n}\n\n.empty_element {\n font-style: italic;\n}\n\n.result-images {\n flex-grow: 1;\n padding: 0.5rem 0.5rem 3rem 0.5rem;\n margin: 0.25rem;\n border: none !important;\n height: @results-image-row-height;\n\n & > a {\n position: relative;\n }\n\n img {\n margin: 0;\n padding: 0;\n border: none;\n height: 100%;\n width: 100%;\n object-fit: cover;\n vertical-align: bottom;\n background: var(--color-result-image-background);\n }\n\n span.title,\n span.source {\n display: block;\n position: absolute;\n\n width: 100%;\n font-size: 0.9rem;\n color: var(--color-result-image-span-font);\n padding: 0.5rem 0 0 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n span.source {\n padding: 1.8rem 0 0 0;\n font-size: 0.7rem;\n }\n}\n\n.result-map {\n img.image {\n .ltr-float-right() !important;\n height: 100px !important;\n width: auto !important;\n }\n\n table {\n font-size: 0.9em;\n width: auto;\n border-collapse: separate;\n border-spacing: 0 0.35rem;\n\n th {\n font-weight: inherit;\n width: 17rem;\n vertical-align: top;\n .ltr-text-align-left();\n }\n\n td {\n vertical-align: top;\n .ltr-text-align-left();\n }\n }\n}\n\n.hidden {\n display: none !important;\n}\n\n#results {\n margin-top: 1rem;\n .ltr-margin-right(2rem);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset);\n display: grid;\n grid-template-columns: @results-width @results-sidebar-width;\n grid-template-rows: min-content min-content 1fr min-content;\n gap: 0 @results-gap;\n grid-template-areas:\n \"corrections sidebar\"\n \"answers sidebar\"\n \"urls sidebar\"\n \"pagination sidebar\";\n}\n\n#results #sidebar *:first-child,\n#results #urls *:first-child {\n margin-top: 0;\n}\n\n#urls {\n padding: 0;\n grid-area: urls;\n}\n\n#suggestions {\n .wrapper {\n display: flex;\n flex-flow: column;\n justify-content: flex-end;\n\n form {\n display: inline-block;\n flex: 1 1 50%;\n }\n }\n}\n\n#suggestions,\n#infoboxes {\n input {\n padding: 0;\n margin: 3px;\n font-size: 0.9em;\n display: inline-block;\n background: transparent;\n color: var(--color-result-search-url-font);\n cursor: pointer;\n width: calc(100%);\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: left;\n }\n\n input[type=\"submit\"],\n .infobox .url a {\n color: var(--color-result-link-font);\n text-decoration: none;\n font-size: 0.9rem;\n\n &:hover {\n text-decoration: underline;\n }\n }\n}\n\n#corrections {\n grid-area: corrections;\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1em 0;\n\n h4,\n input[type=\"submit\"] {\n display: inline-block;\n padding: 0.5rem;\n margin: 0.5rem;\n }\n\n input[type=\"submit\"] {\n font-size: 0.8rem;\n .rounded-corners-tiny;\n }\n}\n\n#suggestions .title,\n#search_url .title,\n#apis .title {\n margin: 2em 0 0.5em 0;\n color: var(--color-base-font);\n}\n\n#answers {\n grid-area: answers;\n background: var(--color-answer-background);\n padding: @result-padding;\n margin: 1rem 0;\n margin-top: 0;\n color: var(--color-answer-font);\n .rounded-corners;\n\n h4 {\n display: none;\n }\n\n span {\n overflow-wrap: anywhere;\n }\n}\n\n#infoboxes {\n form {\n min-width: 210px;\n }\n}\n\n#sidebar {\n grid-area: sidebar;\n word-wrap: break-word;\n color: var(--color-sidebar-font);\n\n .infobox {\n margin: 10px 0 10px;\n border: 1px solid var(--color-sidebar-border);\n padding: 1rem;\n font-size: 0.9em;\n .rounded-corners;\n\n h2 {\n margin: 0 0 0.5em 0;\n }\n\n img {\n max-width: 100%;\n max-height: 12em;\n display: block;\n margin: 0 auto;\n padding: 0;\n }\n\n dt {\n font-weight: bold;\n }\n\n .attributes {\n dl {\n margin: 0.5em 0;\n }\n\n dt {\n display: inline;\n margin-top: 0.5em;\n .ltr-margin-right(0.25em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n padding: 0;\n }\n\n dd {\n display: inline;\n margin: 0.5em 0;\n padding: 0;\n }\n }\n\n input {\n font-size: 1em;\n }\n\n br {\n clear: both;\n }\n\n .attributes,\n .urls {\n clear: both;\n }\n }\n}\n\n#search_url {\n margin-top: 8px;\n\n div.selectable_url {\n pre {\n width: 200em;\n }\n }\n}\n\n#links_on_top {\n position: absolute;\n .ltr-right(1.8rem);\n .ltr-text-align-right();\n top: 2.2rem;\n padding: 0;\n border: 0;\n display: flex;\n align-items: center;\n font-size: 1em;\n color: var(--color-search-font);\n\n a {\n display: flex;\n align-items: center;\n margin-left: 1em;\n\n svg {\n font-size: 1.2em;\n .ltr-margin-right(0.125em);\n }\n }\n\n a,\n a:link *,\n a:hover *,\n a:visited *,\n a:active * {\n color: var(--color-search-font);\n }\n}\n\n#pagination {\n grid-area: pagination;\n\n br {\n clear: both;\n }\n}\n\n#apis {\n margin-top: 8px;\n clear: both;\n}\n\n#backToTop {\n border: 1px solid var(--color-backtotop-border);\n margin: 0;\n padding: 0;\n font-size: 1em;\n background: var(--color-backtotop-background);\n position: fixed;\n bottom: 8rem;\n .ltr-left(@results-width + @results-offset + (0.5 * @results-gap - 1.2em));\n transition: opacity 0.5s;\n opacity: 0;\n .rounded-corners;\n\n a {\n display: block;\n margin: 0;\n padding: 0.7em;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-backtotop-font);\n }\n}\n\n#results.scrolling #backToTop {\n opacity: 1;\n}\n\n/*\n tablet layout\n*/\n\n.results-tablet() {\n #links_on_top {\n span {\n display: none;\n }\n }\n\n .page_with_header {\n margin: 2rem 0.5rem;\n width: auto;\n }\n\n #infoboxes {\n position: inherit;\n max-width: inherit;\n\n .infobox {\n clear: both;\n\n img {\n .ltr-float-left();\n max-width: 10em;\n margin-top: 0.5em;\n .ltr-margin-right(0.5em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n }\n }\n }\n\n #sidebar {\n margin: 0 @results-tablet-offset @results-margin @results-tablet-offset;\n padding: 0;\n float: none;\n border: none;\n width: auto;\n\n input {\n border: 0;\n }\n }\n\n #apis {\n display: none;\n }\n\n #search_url {\n display: none;\n }\n\n .result {\n .thumbnail {\n max-width: 98%;\n }\n\n .url {\n span.url {\n display: block;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n width: 100%;\n }\n }\n\n .engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n padding: 0 0 3px 0;\n }\n }\n\n .result-images {\n border-bottom: none !important;\n }\n\n .image_result {\n max-width: 98%;\n\n img {\n max-width: 98%;\n }\n }\n\n #backToTop {\n display: none;\n }\n\n #pagination {\n margin: 2rem 0 0 0 !important;\n }\n\n #main_results div#results {\n margin: 1rem auto 0 auto;\n justify-content: center;\n display: grid;\n grid-template-columns: @results-width;\n grid-template-rows: min-content min-content min-content 1fr min-content min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n }\n}\n\n@media screen and (max-width: calc(@tablet - 0.5px)) {\n #links_on_top {\n span {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: 52rem) {\n body.results_endpoint {\n #links_on_top {\n .link_on_top_about,\n .link_on_top_donate {\n display: none;\n }\n }\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // when .center-aligment-yes, see style-center.less\n // the media query includes \"min-width: @phone\"\n // because the phone layout includes the tablet layout unconditionally.\n .center-aligment-no {\n .results-tablet();\n }\n}\n\n/* Misc */\n\n#main_results div#results.only_template_images {\n margin: 1rem @results-tablet-offset 0 @results-tablet-offset;\n display: grid;\n grid-template-columns: 100%;\n grid-template-rows: min-content min-content min-content 1fr min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n\n #sidebar {\n display: none;\n }\n\n #urls {\n margin: 0;\n display: flex;\n flex-wrap: wrap;\n }\n\n #urls::after {\n flex-grow: 10;\n content: \"\";\n }\n\n #backToTop {\n .ltr-left(auto);\n .ltr-right(1rem);\n }\n\n #pagination {\n .ltr-margin-right(4rem);\n }\n}\n\n/*\n phone layout\n*/\n\n@media screen and (max-width: @phone) {\n // based on the tablet layout\n .results-tablet();\n\n html {\n background-color: var(--color-base-background-mobile);\n }\n\n #main_results div#results {\n grid-template-columns: 100%;\n margin: 1rem 0 0 0;\n }\n\n #links_on_top {\n top: 0.8rem;\n .ltr-right(0.7rem);\n }\n\n #main_index #links_on_top {\n top: 0.5rem;\n .ltr-right(0.5rem);\n }\n\n #results {\n margin: 0;\n padding: 0;\n }\n\n #pagination {\n margin: 2rem 1rem 0 1rem !important;\n }\n\n article[data-vim-selected] {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n }\n\n .result {\n background: var(--color-result-background);\n margin: 1rem 0;\n }\n\n .result-images {\n margin: 0;\n height: @results-image-row-height-phone;\n background: var(--color-base-background-mobile);\n }\n\n .infobox {\n border: none !important;\n background-color: var(--color-sidebar-background);\n }\n\n .result-paper {\n .attributes {\n display: block;\n\n div {\n display: block;\n\n span {\n display: inline;\n }\n\n span:first-child {\n font-weight: bold;\n }\n\n span:nth-child(2) {\n .ltr-margin-left(0.5rem);\n }\n }\n }\n }\n}\n\n/*\n small-phone layout\n*/\n\n@media screen and (max-width: @small-phone) {\n .result-videos {\n img.thumbnail {\n float: none !important;\n }\n\n .content {\n overflow: inherit;\n }\n }\n}\n\npre code {\n white-space: pre-wrap;\n}\n"]} \ No newline at end of file +{"version":3,"sources":["node_modules/normalize.css/normalize.css","src/less/definitions.less","src/less/code.less","src/generated/pygments.less","src/less/toolkit.less","src/less/mixins.less","src/less/style-ltr.less","src/less/autocomplete.less","src/less/detail.less","src/less/animations.less","src/less/embedded.less","src/less/info.less","src/less/new_issue.less","src/less/stats.less","src/less/result_templates.less","src/less/index.less","src/less/preferences.less","src/less/search.less","src/less/style-center.less","src/less/style.less"],"names":[],"mappings":"4EAUA,KACE,YAAa,KACb,yBAAqC,KAUvC,KACE,OAAQ,EAOV,KACE,QAAS,MAQX,GACE,UAAW,IACX,OAAQ,MAAO,EAWjB,GACE,WAAY,YACZ,OAAmB,EACnB,SAA6B,QAQ/B,IACE,YAAa,UAAW,UACxB,UAAsB,IAUxB,EACE,iBAAkB,YAQpB,YACE,cAAe,KACf,gBAA4B,UAC5B,gBAAoC,UAAU,OAOhD,EACA,OACE,YAAa,OAQf,KACA,IACA,KACE,YAAa,UAAW,UACxB,UAAsB,IAOxB,MACE,UAAW,IAQb,IACA,IACE,UAAW,IACX,YAAa,EACb,SAAU,SACV,eAAgB,SAGlB,IACE,OAAQ,OAGV,IACE,IAAK,MAUP,IACE,aAAc,KAWhB,OACA,MACA,SACA,OACA,SACE,YAAa,QACb,UAAsB,KACtB,YAAgC,KAChC,OAAmC,EAQrC,OACA,MACE,SAAqB,QAQvB,OACA,OACE,eAA2B,KAQ7B,cACA,aACA,cAHA,OAIE,mBAAoB,OAQtB,gCACA,+BACA,gCAHA,yBAIE,aAAc,KACd,QAAS,EAQX,6BACA,4BACA,6BAHA,sBAIE,QAAS,IAAI,OAAO,WAOtB,SACE,QAAS,MAAO,MAAO,OAUzB,OACE,WAAY,WACZ,MAAkB,QAClB,QAA4B,MAC5B,UAAsC,KACtC,QAA4C,EAC5C,YAAwD,OAO1D,SACE,eAAgB,SAOlB,SACE,SAAU,KAQZ,gBACA,aACE,WAAY,WACZ,QAAoB,EAOtB,yCACA,yCACE,OAAQ,KAQV,cACE,mBAAoB,UACpB,eAA2B,KAO7B,yCACE,mBAAoB,KAQtB,6BACE,mBAAoB,OACpB,KAAiB,QAUnB,QACE,QAAS,MAOX,QACE,QAAS,UAUX,SACE,QAAS,KAOX,SACE,QAAS,KCpVX,MAEE,kBAAA,KACA,sBAAA,GAAA,GAAA,GACA,wBAAA,KACA,+BAAA,QACA,iBAAA,QACA,yBAAA,QAEA,0BAAA,QACA,sBAAA,KAEA,0BAAA,QACA,sBAAA,KAEA,uBAAA,KACA,qBAAA,KACA,2BAAA,KAEA,uBAAA,KACA,yBAAA,KACA,6BAAA,KAEA,uBAAA,QACA,iBAAA,KACA,4BAAA,KACA,sBAAA,KAEA,sBAAA,KACA,sBAAA,EAAA,IAAA,IAAA,uBACA,0BAAA,KACA,oBAAA,KACA,gCAAA,QAEA,cAAA,QACA,yBAAA,QACA,gBAAA,QACA,2BAAA,QACA,gBAAA,QACA,2BAAA,QAEA,sCAAA,QACA,wCAAA,QAEA,0BAAA,KACA,4BAAA,KACA,4BAAA,EAAA,IAAA,IAAA,uBACA,gCAAA,KACA,sCAAA,QAEA,oBAAA,KACA,0BAAA,KAEA,0BAAA,KACA,sBAAA,KACA,wBAAA,KACA,4BAAA,QACA,yBAAA,QACA,0CAAA,KACA,yBAAA,QACA,mCAAA,QACA,iCAAA,QACA,gCAAA,KACA,4BAAA,QACA,iCAAA,KACA,+BAAA,KAEA,+BAAA,KACA,wCAAA,KACA,gCAAA,KAEA,0BAAA,QACA,yCAAA,QACA,yCAAA,MAEA,2BAAA,KACA,iCAAA,UACA,iCAAA,QACA,yBAAA,KACA,2BAAA,KACA,oCAAA,yBACA,wCAAA,iBAEA,2BAAA,KACA,iCAAA,QACA,yBAAA,KACA,+BAAA,KACA,8BAAA,KACA,kCAAA,KACA,kCAAA,KACA,oCAAA,KACA,kCAAA,QACA,8BAAA,KACA,wCAAA,KACA,gCAAA,KACA,8CAAA,KACA,6CAAA,KACA,kDAAA,QACA,6CAAA,KACA,mDAAA,KACA,8CAAA,KACA,0CAAA,KACA,sCAAA,KACA,sCAAA,QACA,sCAAA,KACA,0CAAA,KACA,8BAAA,mBACA,kCAAA,uBACA,iBAAA,KACA,4BAAA,KAoHkC,mCAC7B,iBAhHL,kBAAA,KACA,sBAAA,IAAA,IAAA,IACA,wBAAA,QACA,+BAAA,QACA,iBAAA,KACA,yBAAA,QAEA,0BAAA,QACA,sBAAA,KAEA,0BAAA,QACA,sBAAA,KAEA,uBAAA,KACA,qBAAA,KACA,2BAAA,QAEA,uBAAA,KACA,yBAAA,KACA,6BAAA,QAEA,uBAAA,KACA,iBAAA,KACA,4BAAA,KACA,sBAAA,KAEA,sBAAA,KACA,sBAAA,EAAA,IAAA,IAAA,uBACA,0BAAA,QACA,oBAAA,KACA,gCAAA,KAEA,cAAA,QACA,yBAAA,QACA,gBAAA,QACA,2BAAA,QACA,gBAAA,QACA,2BAAA,QAEA,sCAAA,KACA,wCAAA,KAEA,0BAAA,KACA,4BAAA,KACA,4BAAA,EAAA,IAAA,IAAA,uBACA,gCAAA,QACA,sCAAA,QAEA,oBAAA,KACA,0BAAA,QAEA,0BAAA,QACA,sBAAA,KACA,wBAAA,KACA,4BAAA,UACA,yBAAA,KACA,0CAAA,KACA,yBAAA,KACA,mCAAA,KACA,iCAAA,QACA,gCAAA,KACA,4BAAA,QACA,iCAAA,KACA,+BAAA,KAEA,2BAAA,KACA,iCAAA,UACA,iCAAA,QACA,yBAAA,KACA,2BAAA,KACA,oCAAA,yBACA,wCAAA,iBAEA,+BAAA,KACA,wCAAA,KACA,gCAAA,KAEA,0BAAA,QACA,yCAAA,QACA,yCAAA,QAEA,2BAAA,KACA,iCAAA,KACA,yBAAA,KACA,+BAAA,KACA,8BAAA,KACA,kCAAA,QACA,kCAAA,KACA,oCAAA,KACA,kCAAA,QACA,8BAAA,KACA,wCAAA,QACA,gCAAA,KACA,8CAAA,QACA,6CAAA,QACA,kDAAA,KACA,6CAAA,KACA,mDAAA,KACA,8CAAA,KACA,0CAAA,KACA,sCAAA,KACA,sCAAA,KACA,sCAAA,KACA,0CAAA,KACA,8BAAA,yBACA,kCAAA,iBACA,iBAAA,KACA,4BAAA,MAWG,iBAtHH,kBAAA,KACA,sBAAA,IAAA,IAAA,IACA,wBAAA,QACA,+BAAA,QACA,iBAAA,KACA,yBAAA,QAEA,0BAAA,QACA,sBAAA,KAEA,0BAAA,QACA,sBAAA,KAEA,uBAAA,KACA,qBAAA,KACA,2BAAA,QAEA,uBAAA,KACA,yBAAA,KACA,6BAAA,QAEA,uBAAA,KACA,iBAAA,KACA,4BAAA,KACA,sBAAA,KAEA,sBAAA,KACA,sBAAA,EAAA,IAAA,IAAA,uBACA,0BAAA,QACA,oBAAA,KACA,gCAAA,KAEA,cAAA,QACA,yBAAA,QACA,gBAAA,QACA,2BAAA,QACA,gBAAA,QACA,2BAAA,QAEA,sCAAA,KACA,wCAAA,KAEA,0BAAA,KACA,4BAAA,KACA,4BAAA,EAAA,IAAA,IAAA,uBACA,gCAAA,QACA,sCAAA,QAEA,oBAAA,KACA,0BAAA,QAEA,0BAAA,QACA,sBAAA,KACA,wBAAA,KACA,4BAAA,UACA,yBAAA,KACA,0CAAA,KACA,yBAAA,KACA,mCAAA,KACA,iCAAA,QACA,gCAAA,KACA,4BAAA,QACA,iCAAA,KACA,+BAAA,KAEA,2BAAA,KACA,iCAAA,UACA,iCAAA,QACA,yBAAA,KACA,2BAAA,KACA,oCAAA,yBACA,wCAAA,iBAEA,+BAAA,KACA,wCAAA,KACA,gCAAA,KAEA,0BAAA,QACA,yCAAA,QACA,yCAAA,QAEA,2BAAA,KACA,iCAAA,KACA,yBAAA,KACA,+BAAA,KACA,8BAAA,KACA,kCAAA,QACA,kCAAA,KACA,oCAAA,KACA,kCAAA,QACA,8BAAA,KACA,wCAAA,QACA,gCAAA,KACA,8CAAA,QACA,6CAAA,QACA,kDAAA,KACA,6CAAA,KACA,mDAAA,KACA,8CAAA,KACA,0CAAA,KACA,sCAAA,KACA,sCAAA,KACA,sCAAA,KACA,0CAAA,KACA,8BAAA,yBACA,kCAAA,iBACA,iBAAA,KACA,4BAAA,KCpOc,oBACd,SAAA,KACA,iBAAA,QACA,MAAA,QACA,OAAA,QCCc,yBACZ,sBAAA,KACA,oBAAA,KACA,mBAAA,KACA,iBAAA,KACA,gBAAA,KACA,YAAA,KACA,OAAA,QASA,aAAA,IACA,WAAA,MARC,oCACG,WAAA,IAEH,yCACG,WAAA,IAOQ,oBAAM,YAAA,KACK,mCAAU,MAAA,QAAgB,iBAAA,YAA+B,aAAA,IAAmB,cAAA,IACnF,6BAAW,MAAA,QAAgB,iBAAA,YAA+B,aAAA,IAAmB,cAAA,IACtE,oCAAW,MAAA,KAAgB,iBAAA,QAA2B,aAAA,IAAmB,cAAA,IACxE,qCAAW,MAAA,KAAgB,iBAAA,QAA2B,aAAA,IAAmB,cAAA,IACrF,qBAAO,iBAAA,KACvB,gBAAkB,WAAA,QACF,mBAAK,MAAA,QAAgB,WAAA,OACrB,qBAAO,OAAA,IAAA,MAAA,IACP,mBAAK,MAAA,MAAgB,YAAA,IACrB,mBAAK,MAAA,KACL,oBAAM,MAAA,QAAgB,WAAA,OACtB,oBAAM,MAAA,QAAgB,WAAA,OACtB,oBAAM,MAAA,QACN,qBAAO,MAAA,QAAgB,WAAA,OACvB,oBAAM,MAAA,QAAgB,WAAA,OACtB,oBAAM,MAAA,QAAgB,WAAA,OACtB,oBAAM,MAAA,QACN,oBAAM,WAAA,OACN,oBAAM,MAAA,QACN,oBAAM,MAAA,KAAgB,YAAA,IACtB,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,KAAgB,YAAA,IACtB,oBAAM,YAAA,IACN,oBAAM,MAAA,OAAgB,YAAA,IACtB,oBAAM,MAAA,KACN,oBAAM,MAAA,MAAgB,YAAA,IACtB,oBAAM,MAAA,MAAgB,YAAA,IACtB,oBAAM,MAAA,MAAgB,YAAA,IACtB,oBAAM,MAAA,MACN,oBAAM,MAAA,MAAgB,YAAA,IACtB,oBAAM,MAAA,QACN,mBAAK,MAAA,KACL,mBAAK,MAAA,QACL,oBAAM,MAAA,QACN,oBAAM,MAAA,MACN,oBAAM,MAAA,KAAgB,YAAA,IACtB,oBAAM,MAAA,KACN,oBAAM,MAAA,KACN,oBAAM,MAAA,QAAgB,YAAA,IACtB,oBAAM,MAAA,QAAgB,YAAA,IACtB,oBAAM,MAAA,KACN,oBAAM,MAAA,QACN,oBAAM,MAAA,KAAgB,YAAA,IACtB,oBAAM,MAAA,MAAgB,YAAA,IACtB,oBAAM,MAAA,QACN,oBAAM,MAAA,KAAgB,YAAA,IACtB,mBAAK,MAAA,KACL,oBAAM,MAAA,KACN,oBAAM,MAAA,KACN,oBAAM,MAAA,KACN,oBAAM,MAAA,KACN,oBAAM,MAAA,KACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QAAgB,WAAA,OACtB,oBAAM,MAAA,QACN,oBAAM,MAAA,QAAgB,YAAA,IACtB,oBAAM,MAAA,QACN,oBAAM,MAAA,QAAgB,YAAA,IACtB,oBAAM,MAAA,MACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,MACN,oBAAM,MAAA,KACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,QACN,oBAAM,MAAA,KC9FX,yBACT,QAAA,KAGM,sBACN,QAAA,KAGF,QACE,WAAA,OAGF,OACE,MAAA,MAGF,MACE,MAAA,KAGF,WACE,QAAA,eAGF,eACE,gBAAA,KAEA,kBACE,WAAA,IACA,cAAA,IAIJ,QACE,iBAAkB,8BAGpB,SACE,WAAY,gCAGd,SACE,WAAY,gCAGd,OACE,QAAA,aACA,MAAO,gCACP,iBAAkB,sCAClB,WAAA,OACA,YAAA,OACA,eAAA,SACA,UAAA,KACA,QAAA,IAAA,IACA,cAAA,IAIF,IACE,QAAA,IAAA,IACA,OAAA,IACA,UAAA,IACA,MAAO,8BACP,WAAY,oCAId,MACE,MAAA,KAGE,iBACE,cAAA,IAAA,MAAyB,+BAK/B,GACE,QAAA,KAGF,GACE,QAAA,EAAA,IAIC,SACC,WAAA,yCAaD,mBACD,QAAA,MACA,OAAA,IAAA,MAAkB,sCAClB,QAAA,IACA,MAAO,oCACP,OAAA,KACA,SAAA,OACA,OAAA,MACA,YAAA,MC7FA,cAAA,IDgGA,uBAlBA,QAAA,MACA,UAAA,KACA,WAAA,UACA,OAAA,KACA,YAAA,IAqEF,cAhDE,SAAA,SACA,QAAA,KACA,QAAA,KACA,OAAA,EAAA,EAAA,IAAA,EACA,OAAA,IAAA,MAAkB,mCEzDlB,WAAA,KD1DA,cAAA,KDkKA,MAAO,mBACP,WAAY,8BACZ,aAAc,mBA7Cd,qBE7FA,MAAA,MF+FE,SAAA,SACA,IAAA,KACA,MAAA,QACA,UAAA,MAIF,iBACA,gBAFA,iBAGE,OAAA,IAAA,EAAA,EAAA,EAGF,oBACE,MAAA,KAGF,iBACE,eAAA,SAEC,uBACC,WAAA,cAIJ,iBACE,QAAA,EAAA,IAAA,EAAA,EACA,YAAA,EErIF,cAAA,KFuIE,eAAA,EEnIF,aAAA,EFuIA,iBACE,WAAA,KACA,cAAA,KAYJ,gBAxDE,SAAA,SACA,QAAA,KACA,QAAA,KACA,OAAA,EAAA,EAAA,IAAA,EACA,OAAA,IAAA,MAAkB,mCEzDlB,WAAA,KD1DA,cAAA,KD0KA,MAAO,qBACP,WAAY,gCACZ,aAAc,qBArDd,uBE7FA,MAAA,MF+FE,SAAA,SACA,IAAA,KACA,MAAA,QACA,UAAA,MAIF,mBACA,kBAFA,mBAGE,OAAA,IAAA,EAAA,EAAA,EAGF,sBACE,MAAA,KAGF,mBACE,eAAA,SAEC,yBACC,WAAA,cAIJ,mBACE,QAAA,EAAA,IAAA,EAAA,EACA,YAAA,EErIF,cAAA,KFuIE,eAAA,EEnIF,aAAA,EFuIA,mBACE,WAAA,KACA,cAAA,KAoBJ,cAhEE,SAAA,SACA,QAAA,KACA,QAAA,KACA,OAAA,EAAA,EAAA,IAAA,EACA,OAAA,IAAA,MAAkB,mCEzDlB,WAAA,KD1DA,cAAA,KDkLA,QAAA,MACA,WAAY,uCACZ,SAAA,MACA,IAAA,IACA,KAAA,IACA,OAAA,EAAA,KACA,UAAW,qBACX,QAAA,SAlEA,qBE7FA,MAAA,MF+FE,SAAA,SACA,IAAA,KACA,MAAA,QACA,UAAA,MAIF,iBACA,gBAFA,iBAGE,OAAA,IAAA,EAAA,EAAA,EAGF,oBACE,MAAA,KAGF,iBACE,eAAA,SAEC,uBACC,WAAA,cAIJ,iBACE,QAAA,EAAA,IAAA,EAAA,EACA,YAAA,EErIF,cAAA,KFuIE,eAAA,EEnIF,aAAA,EFuIA,iBACE,WAAA,KACA,cAAA,KAgCF,iBACE,WAAA,EAKJ,cACE,OAAA,QAIF,SACE,WAAA,KACA,WAAA,OACA,QAAA,MACA,QAAA,EACA,OAAA,EACA,OAAA,KAIU,kBACV,UAAA,IAGA,QACA,cAAA,IAAA,MAAyB,yCACzB,WAAA,KACA,aAAA,EAEA,WACE,QAAA,KAIJ,MACE,QAAA,KACA,UAAA,KACA,MAAA,KACA,UAAA,KAEE,QACA,MAAA,EAGO,wBACP,QAAA,KAGA,YACK,WACL,MAAA,EACA,QAAA,KACA,OAAA,EAAA,KACA,eAAA,KACA,eAAA,UACA,OAAA,MAAc,uCACd,aAAA,EAAA,EAAA,IAAA,EACA,MAAA,MCxOF,sBAAA,KACA,YAAA,KD2OE,OAAA,QAEC,mBAAA,kBACC,cAAA,IAAA,MAAyB,6CACzB,WAAY,sCACZ,MAAO,2CAIF,kBACC,iBACR,cAAA,IAAA,MAAyB,6CAGzB,cACA,UAAA,KACA,QAAA,MAAA,EACA,WAAA,WACA,WAAA,IAAA,MAAsB,yCACtB,QAAA,KAIO,yBACP,cAAA,IAAA,MAAyB,6CACzB,WAAY,sCACZ,MAAO,2CACP,eAAA,MAGS,2BACT,QAAA,MAKF,sCACE,QAAA,KAGF,oCACE,SAAA,UACA,WAAA,QACA,cAAA,IAAA,MAAA,YACA,YAAA,IACA,MAAA,QAEC,0CACC,cAAA,IAAA,MAAyB,6CAI7B,oCACE,cAAA,IAAA,MAAyB,6CACzB,WAAY,sCACZ,MAAO,2CAGD,4CACN,QAAA,MAKJ,OACE,OAAA,OACA,WAAA,EE7TA,aAAA,KF+TA,cAAA,EE3TA,YAAA,EF6TA,QAAA,gBACA,MAAO,yBACP,UAAA,MACA,QAAA,EAGC,aADA,aAEC,OAAA,QAIJ,wHACE,OACE,WAAA,KACA,mBAAA,KACA,gBAAA,KACA,aAAA,EAAA,KAAA,EAAA,EACA,aAAA,YACA,WAAY,2VAAA,UACZ,sBAAuB,kBACvB,gBAAA,KACA,kBAAA,YACA,iBAAkB,uCAClB,QAAA,OAAA,KACA,cAAA,SC/UF,cAAA,IDmVG,aADA,aAEC,iBAAkB,6CAGpB,cACE,iBAAkB,6BAIc,mCAClB,uBACA,uBACd,iBAAkB,kXAIN,uBACd,iBAAkB,kXAKF,oCAClB,mBAAA,KACA,gBAAA,KACA,WAAA,KACA,OAAA,QACA,QAAA,aACA,MAAA,MACA,OAAA,KACA,WAAA,eACA,OAAA,EAAA,KACA,cAAA,KACA,SAAA,SAGC,0CACA,0CACC,QAAA,EAGK,iDACL,QAAA,GACA,SAAA,SACA,MAAA,MACA,OAAA,OACA,OAAA,IAAA,MAAkB,4BAClB,cAAA,KACA,WAAY,4BAAA,EAAA,EAAA,IACZ,QAAA,MACA,IAAA,OACA,KAAA,MAGD,4CACC,SAAA,SACA,IAAA,MACA,QAAA,KACA,gBAAA,OACA,YAAA,OACA,UAAA,MACA,MAAA,QACA,OAAA,QACA,cAAA,IASoD,+DADpC,oCAElB,WAAY,mDAEX,uEAAA,4CACC,KAAA,MACA,QAAA,QACA,MAAO,mDACP,WAAY,wDAKuB,uDADF,4CAEnC,WAAY,kDAEX,+DAAA,oDACC,KAAM,mBACN,QAAA,QACA,MAAO,kDACP,WAAY,uDAKhB,qCAC0B,0CACtB,mBAAA,KACA,gBAAA,KACA,WAAA,KAEA,MAAA,KACA,OAAA,KACA,OAAA,QACA,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,IAAA,MAAkB,2CCvcpB,cAAA,KD0cG,iDACC,QAAA,GACA,MAAA,IACA,OAAA,IACA,SAAA,SACA,IAAA,IACA,KAAA,IACA,OAAA,IAAA,MAAkB,2CAClB,WAAA,KACA,aAAA,KACA,WAAA,IACA,QAAA,EACA,UAAW,eAGJ,yDACP,aAAc,2CACd,QAAA,EAK8B,oDAChC,OAAA,QACA,iBAAA,sBACA,OAAA,QAIoF,8FACpF,QAAA,IAIkC,mCAC9B,YACJ,MAAA,MAKJ,QACO,eACL,cAAA,IACA,MAAA,IACA,OAAA,IAGF,QACE,OAAA,IAAA,KACA,UAAA,KACA,SAAA,SACA,YAAA,QACA,WAAA,KAAA,MAAwB,mCACxB,aAAA,KAAA,MAA0B,mCAC1B,cAAA,KAAA,MAA2B,mCAC3B,YAAA,KAAA,MAAyB,uCACzB,kBAAmB,cACnB,cAAe,cACf,UAAW,cACX,kBAAA,MAAA,KAAA,SAAA,OACA,UAAA,MAAA,KAAA,SAAA,OAGF,yBACE,GACE,kBAAmB,UACnB,UAAW,UAGb,KACE,kBAAmB,eACnB,UAAW,gBAIf,iBACE,GACE,kBAAmB,UACnB,UAAW,UAGb,KACE,kBAAmB,eACnB,UAAW,gBAKf,gBACE,QAAA,KACA,SAAA,SACA,QAAA,MAAA,KACA,OAAA,EAAA,EAAA,EAAA,KACA,OAAA,IAAA,MAAkB,2CAClB,WAAY,+CACZ,UAAA,KACA,YAAA,IACA,QAAA,QACA,WAAA,KC7iBA,cAAA,KDmjBa,sBADN,yBADA,yBAGP,QAAA,aAIF,mBACE,OAAA,EACA,QAAA,EAAA,QAAA,EAAA,KACA,MAAA,KACA,MAAA,eACA,MAAA,uBACA,MAAA,KACA,eAAA,IACA,UAAA,OACA,YAAA,OACA,QAAA,YAGF,yBACE,MAAA,KACA,QAAA,aACA,SAAA,SACA,QAAA,EAAA,MACA,WAAA,MAGF,wBACE,QAAA,KACA,YAAA,EACA,UAAA,EACA,WAAA,MAGF,0BANE,QAAA,KACA,YAAA,EACA,UAAA,EACA,WAAA,MAMA,WAAY,uBACZ,OAAA,IAAA,MAAuB,oCACvB,QAAA,MAAA,EAGF,0BAdE,QAAA,KACA,YAAA,EACA,UAAA,EACA,WAAA,MAcA,WAAA,IACA,OAAA,IAAA,MAAuB,oCACvB,QAAA,MAAA,EAGF,0BAtBE,QAAA,KACA,YAAA,EACA,UAAA,EACA,WAAA,MAsBA,WAAA,IACA,cAAA,IAAA,OAA+B,oCAC/B,QAAA,EAGF,2BA9BE,QAAA,KACA,YAAA,EACA,UAAA,EACA,WAAA,MA8BA,WAAA,IACA,YAAA,IAAA,MAA4B,oCAC5B,QAAA,MAAA,EACA,MAAA,wGG3nBF,cACE,SAAA,SACA,MAAA,MACA,WAAA,EACA,WAAA,OD+DA,WAAA,KD1DA,cAAA,KEAC,qBACA,oBACA,oBACC,iBAAkB,qCAGnB,oBACC,QAAA,KAGF,iBACE,gBAAA,KACA,OAAA,EACA,QAAA,EAEA,oBACE,OAAA,QACA,QAAA,MAAA,KAEC,2BACA,2BACA,0BACA,0BACC,iBAAkB,2CAEjB,oCACA,mCACA,mCAFA,oCACA,mCACA,mCAFA,mCACA,kCACA,kCAFA,mCACA,kCACA,kCACC,gBAAA,KAIH,2BACC,OAAA,QAKL,mBACC,QAAA,MACA,iBAAkB,qCAClB,MAAO,+BACP,WAAA,MACA,WAAA,KACA,QAAA,IACA,WAAA,OACA,cAAA,MACA,WAAA,EAAA,IAAA,IAAA,mBAEC,yBACC,QAAA,KAKgC,mCACpC,cACE,MAAA,KAEK,oBACH,QAAA,MCvEkC,8DACtC,MAAA,4BAG4D,yEFH5D,KAAA,mBAIA,MAAA,QEIoB,8BACpB,QAAA,KAGkE,4EAClE,QAAA,KACA,eAAA,OACA,SAAA,MFfA,KAAA,MAIA,MAAA,EEcA,IAAA,OACA,WAAA,IAAA,KAAA,QAAA,GACA,OAAA,EACA,WAAY,sCACZ,OAAA,IAAA,MAAkB,sCAClB,QAAA,MACA,QAAA,KAAA,KAAA,KAAA,KAEC,mGACC,QAAA,MACA,KAAA,EACA,WAAA,KACA,MAAA,KACA,OAAA,KACA,gBAAA,KAEA,uGACE,QAAA,EACA,OAAA,EACA,OAAA,KACA,WAAA,QACA,MAAA,QACA,OAAA,QACA,UAAA,KACA,WAAA,QACA,WAAY,2BACZ,WAAA,QAIJ,kGACE,MAAO,gCACP,WAAA,MACA,WAAA,MAEA,qGACE,WAAA,IAAA,MAAsB,8BACtB,cAAA,KAGF,qGACE,OAAA,KACA,SAAA,OACA,cAAA,SACA,UAAA,MAGF,oGACE,MAAO,sCACP,UAAA,MAEA,yGACE,QAAA,aACA,MAAA,MAMJ,oGAFA,qGACA,oGFRF,WAAA,KEaG,mHACC,OAAA,KACA,SAAA,OACA,cAAA,SAGD,+GACC,YAAA,OACA,WAAA,OACA,cAAA,SAGc,yHACJ,qHACV,SAAA,SACA,SAAA,kBACA,WAAY,sCACZ,cAAA,kBAGF,oGAGC,2GADA,0GADA,4GAGC,MAAO,gCAGR,0GACC,gBAAA,UAIH,kGACC,IAAA,KFlHF,KAAA,KEoHE,QAAA,MAGD,qGACC,IAAA,KFpHF,MAAA,KEuHE,YAAA,MFnGF,cAAA,MEqGE,eAAA,MFjGF,aAAA,MEqGC,iGACC,IAAA,KF9HF,MAAA,KEgIE,QAAA,MAGD,kGACA,iGACA,qGACC,cAAA,IACA,QAAA,MACA,MAAA,OACA,OAAA,OACA,SAAA,SACA,OAAQ,aACR,QAAA,QAEA,uGAAA,sGAAA,0GACE,QAAA,MACA,MAAA,OACA,OAAA,OACA,WAAA,OAME,8GAAA,kHAEF,eAAA,IAIH,kGAGoB,yGADA,wGADA,0GAOpB,iGAGmB,wGADA,uGADA,yGALnB,qGAGuB,4GADA,2GADA,6GAOtB,MAAO,gCACP,WAAY,sCACZ,OAAA,IAAA,MAAkB,gCAGC,wGACA,wGAGD,uGACA,uGAHI,2GACA,2GAGtB,OAAQ,aAGV,oFACE,SAAA,SACA,IAAA,KF1LF,MAAA,IE4LE,WAAA,KAAA,MAAwB,yCACxB,aAAA,KAAA,MAA0B,yCAC1B,cAAA,KAAA,MAA2B,yCAC3B,YAAA,KAAA,MAAyB,6CAIiD,sFAC5E,IAAA,EAEuB,iHACrB,WAAY,oBAIuB,sCAC+B,4EAClE,IAAA,EFjNF,KAAA,EEoNG,mGACC,QAAA,KACA,eAAA,OACA,gBAAA,OAEA,uGACE,MAAA,KACA,WAAY,oBAIf,iGF3NH,MAAA,MEiOoC,mCACgC,4EAClE,IAAA,EFvOF,KAAA,EEyOE,QAAA,KAEuB,uGACrB,MAAA,KACA,WAAY,oBACZ,OAAA,EAGsB,yGACtB,MAAA,QF1OJ,aAAA,MGTF,cACE,eAAA,YACA,mBAAA,KAEA,uBACE,GACE,QAAA,EAGF,IACE,QAAA,GACA,UAAW,qBAAsB,aAKF,4CACnC,WAAA,KAAA,KCjBI,wCACJ,OAAA,MAGI,sCAGJ,OAAA,KAGI,wCAOJ,OAAA,MAGI,mDAEJ,OAAA,MAGI,yDAEJ,OAAA,MAGI,wCACJ,OAAA,KC9BA,gBACE,YAAA,UACA,MAAO,sBACP,iBAAkB,iCAClB,QAAA,IAAA,INMF,cAAA,IOTA,qCACE,QAAA,MACA,QAAA,IAAA,KACA,YAAA,WACA,UAAA,KACA,MAAA,KACA,iBAAA,QACA,OAAA,QACA,cAAA,eACA,WAAA,YAAA,EAAA,EAAA,EAAA,EAGkB,2CAClB,iBAAA,QAGF,4BACE,QAAA,KAGG,oCACH,SAAA,SAGF,sBACE,OAAA,KAAA,KAAA,KAAA,EAGF,8BACE,OAAA,KAAA,KAAA,KAAA,KAGF,uBACA,uBACE,WAAA,OAGF,6BACE,WAAA,WAAA,GAAA,OAAA,GAGa,sCACA,sCACb,WAAA,QC3CJ,cACE,eAAA,EACA,gBAAA,SAEG,oBACA,oBACD,cAAA,IAAA,MAAyB,2BACzB,QAAA,OAGG,mCACH,eAAA,EACA,gBAAA,SAEA,sCACA,sCACE,OAAA,KAIJ,2BACE,MAAA,MAGF,4BACE,MAAA,KACA,WAAA,MAGF,kCACE,WAAA,MAMJ,YADqB,wCADA,wCAGnB,MAAA,MAGF,eACE,WAAA,KAEK,kCACH,UAAA,OACA,OAAA,KAAA,EAAA,KAAA,EACA,OAAA,IAAA,MAAkB,2BPqBpB,WAAA,KOjBK,wCADA,wCAED,QAAA,MAGI,sDACJ,aAAA,IAAA,MAAA,MAA8B,2BAC9B,QAAA,EAAA,KAAA,EAAA,EACA,OAAA,EAAA,EAAA,EAAA,MAKN,iBACE,MAAA,IACA,QAAA,aACA,WAAA,MACA,cAAA,MAGF,iBACE,MAAO,kBACP,QAAA,aAGF,eACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,kBACE,OAAA,IAAA,MAAA,QACA,OAAA,IAAA,EACA,MAAA,KAGF,MACE,MAAA,EACA,OAAA,EV/FD,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,MUsGG,MAAA,GVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,OUsGG,MAAA,IVtGH,QUsGG,MAAA,KCpGJ,aACE,OAAA,MACA,MAAA,KACA,OAAA,KAAA,ECLF,YACE,WAAA,KAGF,OACE,WAAA,OAEA,cACE,WAAgB,wBAAA,UAChB,WAAA,KACA,OAAA,KAAA,KACA,oBAAA,OACA,gBAAA,QAGF,UACE,UAAA,IACA,WAAA,OAGF,eACA,sBACE,OAAA,EAAA,KACA,WAAA,QACA,OAAA,QACA,QAAA,EACA,QAAA,MAGF,uBACE,QAAA,MACA,OAAA,IAAA,EAGQ,uBACR,QAAA,IAAA,KACA,cAAA,kBAImC,sCAEnC,aACE,UAAA,IAIJ,YACE,WAAA,KChDqB,4BACA,4BVwCvB,WAAA,gBUtCA,OAAA,KAIA,uBACE,MAAA,KAGF,2BACE,OAAA,IACA,OAAA,KAGF,yBACE,OAAA,EACA,QAAA,IAAA,EAAA,EAAA,EACA,QAAA,MVcF,MAAA,KUZE,MAAA,MAGF,yBACE,OAAA,EACA,QAAA,EVOF,MAAA,KULE,MAAA,KAGK,0CADL,gCAEE,UAAA,kBACA,WAAA,EVxBJ,aAAA,KU0BI,cAAA,EVtBJ,YAAA,EU0BE,gCACE,MAAA,MAGG,0CACH,MAAA,SACA,MAAO,qCACP,OAAA,KACA,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,uCACnC,QAAA,MAAA,MACA,OAAA,KX9BJ,cAAA,IWkCK,gDADA,gDAEC,iBAAkB,6CAKjB,qCADC,sCAEJ,QAAA,EACA,WAAA,EAAA,EAAA,IAAA,IAAwB,4BAI5B,+BACE,OAAA,EACA,QAAA,IAAA,EAAA,EAAA,EV9BF,MAAA,MUgCE,MAAA,IACA,MAAO,8CACP,UAAA,IAGF,wBACE,gBAAA,SAGI,2BACJ,WAAA,OAGF,4BVzEA,aAAA,MU4EE,kCACE,OAAA,IAAA,MAAA,YACA,QAAA,MAAA,MXpEJ,cAAA,IWyEyC,+DACvC,OAAA,IAAA,MAAkB,6CAIlB,yCACE,OAAA,QAKA,oDACE,OAAA,QAIF,8DACE,WAAA,OV5GN,KU6GgB,8BACV,UAAA,MAEA,kFACE,WAAA,MAKN,oDVlDF,WAAA,KUoDI,YAAA,IACA,WAAY,8CAGd,4CACA,gDVzDF,WAAA,KU8DK,gCACH,MAAA,KACA,UAAA,IAGA,mCADA,mCAEE,WAAA,KACA,YAAA,UACA,UAAA,KACA,QAAA,KACA,eAAA,IAGA,+CACA,WAAA,SACA,MAAA,MACA,cAAA,KAGA,8CACA,WAAA,UAI6B,4DADA,4DAE7B,iBAAkB,+BAItB,oCACE,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,4BACnC,MAAO,sBACP,OAAA,EAAA,KXxJF,cAAA,KW2JE,OAAA,QACA,QAAA,aACA,OAAA,IAAA,IACA,QAAA,KAEA,sCACE,MAAO,kCAGR,oDACC,eAAA,UAKF,yCACE,MAAA,KAKiC,sCACrC,kBACE,MAAA,KAGF,gBV/LA,KAAA,gBWGF,QACE,QAAA,EACA,OAAA,EAGF,eACE,YAAA,MXeA,cAAA,IAIA,aAAA,KWhBA,OAAA,EACA,WAAY,+BACZ,cAAA,IAAA,MAAyB,2BACzB,QAAA,KACA,WAAA,OACA,QAAA,KACA,sBAAA,KAAA,IACA,oBAAA,cAAA,oBAKF,UACE,QAAA,aACA,SAAA,SXlBA,aAAA,KWoBA,QAAA,EAEA,gBACE,QAAA,KAGF,gBAKE,OAAA,QACA,QAAA,MAAA,EACA,QAAA,YACA,eAAA,WACA,UAAA,KACA,cAAA,IAAA,MAAA,YZrBF,sBAAA,KACA,YAAA,KYWE,oBACE,cAAA,MAWC,kCACD,OAAA,KAAA,EAI2B,6CAC7B,MAAO,2CACP,cAAA,IAAA,MAAyB,6CAI7B,aACE,UAAA,KACA,QAAA,KACA,YAAA,OACA,gBAAA,OAEA,iBACE,KAAA,EACA,MAAA,KACA,OAAA,KACA,OAAA,MAAA,EAAA,KAAA,EAIJ,mBACE,UAAA,WAEA,yBACE,QAAA,KAGM,+BACN,QAAA,MACA,SAAA,SACA,WAAY,6BACZ,QAAA,KAAA,MAAA,MAAA,EACA,QAAA,KACA,MAAA,KACA,KAAA,OAIJ,aACE,UAAA,OAGF,YACE,cAAA,MACA,MAAA,MACA,QAAA,YACA,eAAA,IACA,YAAA,OACA,WAAY,2BAGd,cACE,QAAA,MACA,gBAAA,SACA,WAAA,WACA,MAAA,OACA,OAAA,EACA,QAAA,MAAA,MACA,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,+BACnC,OAAA,KACA,QAAA,EACA,MAAO,yBACP,UAAA,OACA,QAAA,MAEC,oBACC,MAAO,qCAGD,sBACN,QAAA,KAIoB,sCACtB,QAAA,KAGF,GACA,aACE,QAAA,MACA,OAAA,EACA,QAAA,MACA,WAAA,KAAA,OAAA,OAAA,EAAA,EAAmC,+BACnC,OAAA,KACA,QAAA,EACA,MAAO,yBACP,UAAA,OACA,QAAA,EAGF,GACE,MAAA,KXpHA,aAAA,KAJA,cAAA,YAoBA,cAAA,MAAA,EAAA,EAAA,MW0GA,cACA,iCACA,QAAA,KAGF,aXnGE,cAAA,EAAA,MAAA,MAAA,EWsGC,mBACC,OAAA,QACA,iBAAkB,qCAClB,MAAO,+BAIJ,qBACA,oBACL,MAAA,eXnJA,YAAA,IAAA,MWoJ2B,2BAG7B,gBACE,WAAA,MXpKA,aAAA,EWsKA,cAAA,EXlKA,YAAA,QWoKA,QAAA,KACA,WAAA,KACA,2BAAA,QAEA,uBACE,iBAAA,QAGC,6BADA,6BAEC,MAAO,uBAK0B,sCACrC,eACE,QAAA,MAAA,MAAA,EAAA,MACA,WAAA,MAGF,gBACE,WAAA,MX7LF,aAAA,EW+LE,cAAA,EX3LF,YAAA,OW+LA,YACE,UAAA,IACA,MAAA,KAEA,gCACE,OAAA,KACA,WAAA,KAKmD,uDAGrD,kCAAA,oCACE,MAAA,YAEA,4CAAA,8CACE,QAAA,aACA,MAAA,KAIJ,wBAAA,0BACE,MAAA,KX/JJ,WAAA,KWiKI,WAAA,OACA,WAAA,OACA,2BAAA,OAKgC,mCACpC,eACE,MAAA,KACA,OAAA,EACA,QAAA,MAAA,EAAA,EAAA,EACA,WAAA,EACA,QAAA,EACA,oBAAA,cAAA,wBAKF,aACE,QAAA,EAGF,YACE,MAAA,IACA,QAAA,KACA,OAAA,EAAA,KAGF,GACE,MAAA,KACA,KAAA,EAGF,gBACE,OAAA,EAGF,UACE,QAAA,aACA,MAAA,KACA,OAAA,EAEA,gBACE,QAAA,eACA,OAAA,YAEA,oBACE,QAAA,KAKM,0BACV,QAAA,MACA,iBAAkB,+BAClB,SAAA,SACA,IAAA,EACA,OAAA,KACA,MAAA,KACA,QAAA,MAEA,sCACE,cAAA,IAAA,MAAyB,2BACzB,MAAA,KACA,cAAA,EACA,WAAA,KAEA,mDXjSJ,aAAA,YWqSI,wCACE,OAAA,KACA,cAAA,EACA,WAAA,KAK6B,gDX7SnC,aAAA,OW+SE,WAAA,OAAA,KAI8C,oCAChD,eACE,oBAAA,gBAAA,wBAKF,aACE,QAAA,MAIJ,YZhTE,sBAAA,KACA,YAAA,KYkTC,+BACC,MAAA,EACA,OAAA,EAIJ,sBACE,SAAA,SCxUoC,mCACf,mCACnB,oBAAA,OAIiC,oCACd,mCACnB,oBAAA,OAImC,sCAChB,mCACnB,oBAAA,OAI2D,2DAG3D,4CACE,sBAAA,IAA2B,iBAC3B,YAAA,EACA,aAAA,EAGF,yCZxBF,YAAA,KY4BE,4CZhCF,aAAA,KYoCE,8CZ5CF,KY6Cc,kBAKuB,sCAChB,mCACnB,QAAA,KACA,eAAA,OACA,YAAA,OAEA,2CACE,MAAA,KACA,QAAA,KACA,eAAA,OACA,YAAA,OAGF,kDACE,sBAA2C,iDAAA,KAAmC,yBAC9E,oBAAA,iBAAA,uBACA,WAAA,OACA,MAAA,KACA,aAAA,EACA,cAAA,EAGF,mDZ5DF,YAAA,MY8DI,MAAO,yBAGT,4CZrEF,aAAA,KAIA,YAAA,MYwEK,8DADA,iEAMC,WAAA,WAG8B,+FZhFpC,YAAA,OYmFM,sBAA4B,8CAAA,MAE5B,0GZjGN,KYkG4E,8DAIhE,6DACN,UAAA,QAKJ,yCZhGF,YAAA,EYoGE,4CZxGF,aAAA,Ga0BF,UACE,QAAA,aACA,eAAA,OACA,YAAA,EACA,gBAAA,Qb0CA,UAAW,WatCb,gBACE,MAAA,KACA,OAAA,KATA,QAAA,aACA,eAAA,OACA,YAAA,EACA,gBAAA,Qb0CA,UAAW,WahCb,cACE,MAAA,OACA,OAAA,OAfA,QAAA,aACA,eAAA,OACA,YAAA,EACA,gBAAA,Qb0CA,UAAW,WazBb,KACE,YAAA,WACA,UAAA,KdtDA,yBAAA,KACA,qBAAA,KACA,sBAAA,KACA,iBAAA,KcsDA,MAAO,uBACP,iBAAkB,6BAClB,QAAA,EACA,OAAA,EAGF,KACA,KACE,QAAA,EACA,OAAA,EAGF,KACE,QAAA,KACA,eAAA,OACA,OAAA,MACA,OAAA,EAGF,KACE,MAAA,KACA,cAAA,KACA,KAAA,EAGF,kBACE,OAAA,IAAA,KACA,MAAA,KAGF,OACE,MAAA,KACA,WAAA,KACA,QAAA,KAAA,EACA,MAAA,KACA,WAAA,OACA,iBAAkB,+BAClB,WAAA,IAAA,MAAsB,2BACtB,SAAA,OAEA,SACE,UAAA,KAIc,wBAChB,OAAA,KAIa,6BADV,mBAEH,QAAA,MACA,QAAA,aACA,WAAY,4BACZ,MAAO,sBdxGP,cAAA,Kc2GA,OAAA,EACA,OAAA,QAGF,EACE,gBAAA,KACA,MAAO,sBAEN,UACC,MAAO,8BAEP,qBACE,MAAO,8BAKN,2BACL,WAAY,iCbnHZ,YAAA,MAAA,MaoH8B,8BbhF9B,cAAA,EAAA,KAAA,KAAA,EaoFmB,yCACnB,WAAY,8BACZ,OAAA,KdpIA,cAAA,KcuIA,0DACE,OAAQ,aAIN,qDADA,oDAEF,MAAO,6CAQe,0CAFA,wCACA,0CAFA,yCAIA,2CALA,2CAMxB,OAAA,IAAA,MAAkB,8BdvJlB,cAAA,Kc2JF,QACE,OAAA,QAAA,EACA,QAAA,KbnJA,YAAA,MAAA,MAAA,YasJA,WACE,UAAA,OACA,UAAA,WACA,OAAA,MAAA,EAAA,MAAA,EACA,QAAA,EAEA,aACE,MAAO,8BACP,YAAA,IACA,UAAA,MAEC,qBACC,MAAO,sCAGR,mBACA,mBACC,gBAAA,UACA,OAAA,KACA,QAAA,EAKN,oBACA,wBACE,UAAA,eAGF,iBACA,cACE,UAAA,KACA,OAAA,EACA,QAAA,EACA,UAAA,KACA,UAAA,WACA,YAAA,KAEA,4BAAA,yBACE,MAAO,+CACP,WAAA,QACA,YAAA,IAIK,mBACP,UAAA,KACA,OAAA,EAAA,KAAA,EAAA,Ed7LF,QAAA,IAAA,KAVA,cAAA,IAYA,WAAY,iCACZ,MAAO,2BACP,OAAA,QAEC,yBACC,WAAY,4BACZ,MAAO,sBc0LP,8BACE,MAAA,QACA,WAAA,QACA,YAAA,IAIJ,qBACE,QAAA,KACA,UAAA,KACA,MAAO,6BACP,UAAA,OACA,SAAA,OACA,eAAA,IACA,OAAA,EACA,QAAA,EAEA,6BACE,YAAA,OACA,YAAA,EAGK,oCACL,QAAA,IACA,MAAA,IACA,QAAA,aAGF,6BACE,SAAA,OACA,YAAA,OACA,WAAA,QACA,UAAA,EACA,YAAA,EACA,WAAA,MAEA,qCACE,MAAA,MAKN,wBAEA,uBADA,uBAEA,yBACA,+BACE,UAAA,KACA,MAAO,qCAGT,sBACE,UAAA,MACA,MAAO,+CAIN,sBbvPH,MAAA,KayPI,YAAA,MbjQJ,cAAA,KamQI,MAAA,MACA,OAAA,MAGD,kBb/PH,MAAA,KaiQI,YAAA,MbzQJ,cAAA,Ka2QI,MAAA,KACA,WAAA,KACA,WAAA,WACA,gBAAA,MAAA,IAIJ,eACE,MAAA,KAKF,0BACE,QAAA,MACA,eAAA,QAEA,8BACE,QAAA,UAEA,mCACE,UAAA,MACA,WAAA,OACA,QAAA,WAEA,wCACE,UAAA,MAIA,+CACF,MAAO,uBACP,UAAA,MAGY,gDACZ,MAAO,qCAKb,uBACE,WAAA,OAGF,wBACE,UAAA,MACA,OAAA,OAAA,EAAA,EAAA,EACA,QAAA,EACA,UAAA,WACA,YAAA,KACA,WAAA,OAIJ,uBACE,QAAA,KACA,UAAA,KAGoB,8BACpB,UAAA,GACA,QAAA,GAOF,gBAFA,cACA,gBAFA,eAIA,iBALA,iBAME,OAAA,IAAA,MAAkB,2BAClB,OAAA,EAAA,MAAA,KAAA,gBdjWA,cAAA,KcqWe,wBACf,MAAA,eACA,UAAA,KACA,WAAA,KACA,QAAA,EAAA,IAAA,KAAA,YAGa,qBACb,MAAA,KACA,QAAA,KAAA,EAAA,EAAA,EAGgB,yBAChB,MAAA,KACA,QAAA,KAAA,EAAA,EAAA,EAGa,wBACb,SAAA,OAG6B,sCAC7B,MAAA,KACA,aAAA,EAAA,CAAA,EACA,QAAA,KAAA,EAAA,EAAA,EAGF,mCAGiC,sCAC7B,OAAQ,sBAIZ,Sb9WE,MAAA,MagXA,QAAA,KACA,UAAA,KACA,gBAAA,SACA,MAAO,iCAEP,cACE,UAAA,QACA,WAAA,EACA,cAAA,EbpZF,aAAA,MAIA,YAAA,EasZF,YACE,UAAA,KAGF,WACE,MAAO,wCACP,WAAA,QAGF,eACE,WAAA,OAGF,eACE,UAAA,EACA,QAAA,MAAA,MAAA,KAAA,MACA,OAAA,OACA,OAAA,eACA,OAAA,MAEE,iBACA,SAAA,SAGF,mBACE,OAAA,EACA,QAAA,EACA,OAAA,KACA,OAAA,KACA,MAAA,KACA,WAAA,MACA,eAAA,OACA,WAAY,qCAIV,2BADA,0BAEF,QAAA,MACA,SAAA,SAEA,MAAA,KACA,UAAA,MACA,MAAO,oCACP,QAAA,MAAA,EAAA,EAAA,EACA,SAAA,OACA,cAAA,SACA,YAAA,OAGE,2BACF,QAAA,OAAA,EAAA,EAAA,EACA,UAAA,MAKC,sBbtbH,MAAA,gBawbE,OAAA,gBACA,MAAA,eAGF,kBACE,UAAA,KACA,MAAA,KACA,gBAAA,SACA,eAAA,EAAA,OAEA,qBACE,YAAA,QACA,MAAA,MACA,eAAA,IbraJ,WAAA,KayaE,qBACE,eAAA,Ib1aJ,WAAA,KagbF,QACE,QAAA,eAGF,SACE,WAAA,KbjfA,aAAA,KamfA,cAAA,Eb/eA,YAAA,MaifA,QAAA,KACA,sBAAA,MAAA,MACA,mBAAA,YAAA,YAAA,IAAA,YACA,IAAA,EAAA,KACA,oBAEE,sBAEA,kBAJF,eAAA,qBAOiB,+BACH,4BACd,WAAA,EAGF,MACE,QAAA,EACA,UAAA,KAIA,sBACE,QAAA,KACA,UAAA,OACA,gBAAA,SAEA,2BACE,QAAA,aACA,KAAA,EAAA,EAAA,IAOJ,iBAAA,mBACE,QAAA,EACA,OAAA,IACA,UAAA,KACA,QAAA,aACA,WAAA,IACA,MAAO,oCACP,OAAA,QACA,MAAO,WACP,cAAA,SACA,SAAA,OACA,WAAA,KAIY,2BADT,8BACS,6BADT,gCAEH,MAAO,8BACP,gBAAA,KACA,UAAA,MAEC,iCAAA,oCAAA,mCAAA,sCACC,gBAAA,UAKN,aACE,UAAA,YACA,QAAA,KACA,UAAA,IAAA,KACA,OAAA,EAAA,EAAA,IAAA,EAEA,gBACK,gCACH,QAAA,aACA,QAAA,MACA,OAAA,MAGG,gCACH,UAAA,MdvjBF,cAAA,Ic8jBI,aADM,mBADC,oBAGX,OAAA,IAAA,EAAA,KAAA,EACA,MAAO,uBAGT,SACE,UAAA,QACA,WAAY,+BACZ,QAAA,KACA,OAAA,KAAA,EACA,WAAA,EACA,MAAO,yBdjlBP,cAAA,KcolBA,YACE,QAAA,KAGF,cACE,cAAA,SAKF,gBACE,UAAA,MAIJ,SACE,UAAA,QACA,UAAA,WACA,MAAO,0BAEP,kBACE,OAAA,KAAA,EAAA,KACA,OAAA,IAAA,MAAkB,4BAClB,QAAA,KACA,UAAA,Kd5mBF,cAAA,Kc+mBE,qBACE,OAAA,EAAA,EAAA,KAAA,EAGF,sBACE,UAAA,KACA,WAAA,KACA,QAAA,MACA,OAAA,EAAA,KACA,QAAA,EAGF,qBACE,YAAA,IAIA,iCACE,OAAA,KAAA,EAGF,iCACE,QAAA,OACA,WAAA,KbxoBN,aAAA,Ma0oBM,cAAA,KbtoBN,YAAA,EawoBM,QAAA,EAGF,iCACE,QAAA,OACA,OAAA,KAAA,EACA,QAAA,EAIJ,wBACE,UAAA,IAGF,qBACE,MAAA,KAGF,8BACA,wBACE,MAAA,KAKN,YACE,WAAA,IAGE,mCACE,MAAA,MAKN,cACE,SAAA,SbprBA,MAAA,OAoCA,WAAA,MampBA,IAAA,OACA,QAAA,EACA,OAAA,EACA,QAAA,KACA,YAAA,OACA,UAAA,IACA,MAAO,yBAEP,gBACE,QAAA,KACA,YAAA,OACA,YAAA,IAEA,oBACE,UAAA,MbjsBJ,aAAA,OassBA,gBAIS,yBAFD,wBADD,uBAEG,0BAER,MAAO,yBAIX,YACE,UAAA,WAEA,eACE,MAAA,KAIJ,qBACE,QAAA,KACA,eAAA,IACA,gBAAA,OACA,YAAA,OACA,SAAA,OAGF,aACE,WAAA,cACA,MAAA,wCACA,gBAAA,UAGF,qBACE,WAAA,IACA,MAAO,sCACP,OAAA,KAGF,MACE,WAAA,IACA,MAAA,KAGF,WACE,OAAA,IAAA,MAAkB,8BAClB,OAAA,EACA,QAAA,EACA,UAAA,IACA,WAAY,kCACZ,SAAA,MACA,OAAA,Kb/vBA,KAAA,QaiwBA,WAAA,QAAA,IACA,QAAA,EdxvBA,cAAA,Kc2vBA,aACE,QAAA,MACA,OAAA,EACA,QAAA,KAGF,aAGC,oBADA,mBADA,qBAGC,MAAO,4BAIQ,8BACjB,QAAA,EAqH4B,oDAE1B,mBACE,QAAA,MAK+B,oCAG/B,uDACA,wDACE,QAAA,MAMuD,2DA/H3D,uCACE,QAAA,KAIJ,sCACE,OAAA,KAAA,MACA,MAAA,KAGF,+BACE,SAAA,QACA,UAAA,QAEA,wCACE,MAAA,KAEA,4Cb9wBJ,MAAA,KagxBM,UAAA,KACA,WAAA,KbzyBN,aAAA,Ka2yBM,cAAA,KbvyBN,YAAA,Ea6yBA,6BACE,OAAA,EAAA,MAAA,QAAA,MACA,QAAA,EACA,MAAA,KACA,OAAA,KACA,MAAA,KAEA,mCACE,OAAA,EAIJ,0BACE,QAAA,KAGF,gCACE,QAAA,KAIA,uCACE,UAAA,IAII,0CACF,QAAA,MACA,YAAA,OACA,cAAA,SACA,SAAA,OACA,MAAA,KAIJ,qCbxzBF,MAAA,Ma0zBI,QAAA,KACA,UAAA,KACA,gBAAA,SACA,QAAA,EAAA,EAAA,IAAA,EAIJ,mCACE,cAAA,eAGF,kCACE,UAAA,IAEA,sCACE,UAAA,IAIJ,+BACE,QAAA,KAGF,gCACE,OAAA,KAAA,EAAA,EAAA,YAGe,8CACf,OAAA,KAAA,KAAA,EAAA,KACA,gBAAA,OACA,QAAA,KACA,sBAAA,MACA,mBAAA,YAAA,YAAA,YAAA,IAAA,YAAA,YACA,IAAA,EACA,oBAIE,cACA,UALF,UAAA,OAAA,cAuCqB,+CACvB,OAAA,KAAA,MAAA,EAAA,MACA,QAAA,KACA,sBAAA,KACA,mBAAA,YAAA,YAAA,YAAA,IAAA,YACA,IAAA,EACA,oBAIE,cACA,UALF,UAAA,OAAA,aAOA,wDACE,QAAA,KAGF,qDACE,OAAA,EACA,QAAA,KACA,UAAA,KAGG,4DACH,UAAA,GACA,QAAA,GAGF,0Dbn8BA,KAAA,KAIA,MAAA,Kao8BA,2Dbh8BA,aAAA,Kay8BoC,mCApLlC,mBACE,QAAA,KAIJ,kBACE,OAAA,KAAA,MACA,MAAA,KAGF,WACE,SAAA,QACA,UAAA,QAEA,oBACE,MAAA,KAEA,wBb9wBJ,MAAA,KagxBM,UAAA,KACA,WAAA,KbzyBN,aAAA,Ka2yBM,cAAA,KbvyBN,YAAA,Ea6yBA,SACE,OAAA,EAAA,MAAA,QAAA,MACA,QAAA,EACA,MAAA,KACA,OAAA,KACA,MAAA,KAEA,eACE,OAAA,EAIJ,MACE,QAAA,KAGF,YACE,QAAA,KAIA,mBACE,UAAA,IAII,sBACF,QAAA,MACA,YAAA,OACA,cAAA,SACA,SAAA,OACA,MAAA,KAIJ,iBbxzBF,MAAA,Ma0zBI,QAAA,KACA,UAAA,KACA,gBAAA,SACA,QAAA,EAAA,EAAA,IAAA,EAIJ,eACE,cAAA,eAGF,cACE,UAAA,IAEA,kBACE,UAAA,IAIJ,WACE,QAAA,KAGF,YACE,OAAA,KAAA,EAAA,EAAA,YAGe,0BACf,OAAA,KAAA,KAAA,EAAA,KACA,gBAAA,OACA,QAAA,KACA,sBAAA,MACA,mBAAA,YAAA,YAAA,YAAA,IAAA,YAAA,YACA,IAAA,EACA,oBAIE,cACA,UALF,UAAA,OAAA,aAqFF,KACE,iBAAkB,oCAGH,0BACf,sBAAA,KACA,OAAA,KAAA,EAAA,EAAA,EAGF,cACE,IAAA,Mb39BF,MAAA,Ma+9BY,0BACV,IAAA,Mbh+BF,MAAA,Mao+BA,SACE,OAAA,EACA,QAAA,EAGF,YACE,OAAA,KAAA,KAAA,EAAA,eAGK,2BACL,OAAA,IAAA,MAAkB,8Bdx+BpB,cAAA,Kc4+BA,QACE,WAAY,+BACZ,OAAA,KAAA,EAGF,eACE,OAAA,EACA,OAAA,KACA,WAAY,oCAGd,SACE,OAAA,eACA,iBAAkB,gCAGpB,qBACE,QAAA,KAIA,0BACE,QAAA,MAEA,8BACE,QAAA,MAEA,mCACE,QAAA,OAGE,+CACF,YAAA,IAGY,gDb7gCpB,YAAA,OayhC0C,mCAErC,6BACD,MAAA,eAGF,wBACE,SAAA,SAKF,SACF,YAAA","sourcesContent":["/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}\n","/*\n * SearXNG, A privacy-respecting, hackable metasearch engine\n *\n * To change the colors of the site, simple edit this variables\n */\n\n/// Light Theme\n:root {\n /// Base Colors\n --color-base-font: #444;\n --color-base-font-rgb: 68, 68, 68;\n --color-base-background: #fff;\n --color-base-background-mobile: #f2f5f8;\n --color-url-font: #334999;\n --color-url-visited-font: #9822c3;\n /// Header Colors\n --color-header-background: #fdfbff;\n --color-header-border: #ddd;\n /// Footer Colors\n --color-footer-background: #fdfbff;\n --color-footer-border: #ddd;\n /// Sidebar Colors\n --color-sidebar-border: #ddd;\n --color-sidebar-font: #000;\n --color-sidebar-background: #fff;\n /// BackToTop Colors\n --color-backtotop-font: #444;\n --color-backtotop-border: #ddd;\n --color-backtotop-background: #fff;\n /// Button Colors\n --color-btn-background: #3050ff;\n --color-btn-font: #fff;\n --color-show-btn-background: #bbb;\n --color-show-btn-font: #000;\n /// Search Input Colors\n --color-search-border: #bbb;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #fff;\n --color-search-font: #222;\n --color-search-background-hover: #3050ff;\n /// Modal Colors\n --color-error: #db3434;\n --color-error-background: lighten(#db3434, 40%);\n --color-warning: #dbba34;\n --color-warning-background: lighten(#dbba34, 40%);\n --color-success: #42db34;\n --color-success-background: lighten(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #3050ff;\n --color-categories-item-border-selected: #3050ff;\n /// Autocomplete Colors\n --color-autocomplete-font: #000;\n --color-autocomplete-border: #bbb;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #fff;\n --color-autocomplete-background-hover: #e3e3e3;\n /// Answer Colors\n --color-answer-font: #444; // same as --color-base-font\n --color-answer-background: #fff;\n /// Results Colors\n --color-result-background: #fff;\n --color-result-border: #ddd;\n --color-result-url-font: #000;\n --color-result-vim-selected: #f7f7f7;\n --color-result-vim-arrow: #000bbb;\n --color-result-description-highlight-font: #000;\n --color-result-link-font: #000bbb;\n --color-result-link-font-highlight: #000bbb;\n --color-result-link-visited-font: #9822c3;\n --color-result-publishdate-font: #777;\n --color-result-engines-font: #545454;\n --color-result-search-url-border: #ddd;\n --color-result-search-url-font: #000;\n // Images Colors\n --color-result-image-span-font: #444;\n --color-result-image-span-font-selected: #fff;\n --color-result-image-background: #fff;\n /// Settings Colors\n --color-settings-tr-hover: #ebebeb;\n --color-settings-engine-description-font: #545454;\n --color-settings-engine-group-background: #0001;\n /// Detail modal\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #242424;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #545454;\n --color-toolkit-kbd-font: #fff;\n --color-toolkit-kbd-background: #000;\n --color-toolkit-dialog-border: #ddd;\n --color-toolkit-dialog-background: #fff;\n --color-toolkit-tabs-label-border: #fff;\n --color-toolkit-tabs-section-border: #ddd;\n --color-toolkit-select-background: #e1e1e1;\n --color-toolkit-select-border: #ddd;\n --color-toolkit-select-background-hover: #bbb;\n --color-toolkit-input-text-font: #222;\n --color-toolkit-checkbox-onoff-off-background: #ddd;\n --color-toolkit-checkbox-onoff-on-background: #ddd;\n --color-toolkit-checkbox-onoff-on-mark-background: #3050ff;\n --color-toolkit-checkbox-onoff-on-mark-color: #fff;\n --color-toolkit-checkbox-onoff-off-mark-background: #aaa;\n --color-toolkit-checkbox-onoff-off-mark-color: #fff;\n --color-toolkit-checkbox-label-background: #ddd;\n --color-toolkit-checkbox-label-border: #ddd;\n --color-toolkit-checkbox-input-border: #3050ff;\n --color-toolkit-engine-tooltip-border: #ddd;\n --color-toolkit-engine-tooltip-background: #fff;\n --color-toolkit-loader-border: rgba(0, 0, 0, 0.2);\n --color-toolkit-loader-borderleft: rgba(255, 255, 255, 0);\n --color-doc-code: #300;\n --color-doc-code-background: #fdd;\n}\n\n.dark-themes() {\n /// Base Colors\n --color-base-font: #bbb;\n --color-base-font-rgb: 187, 187, 187;\n --color-base-background: #222428;\n --color-base-background-mobile: #222428;\n --color-url-font: #8af;\n --color-url-visited-font: #c09cd9;\n /// Header Colors\n --color-header-background: #1e1e22;\n --color-header-border: #333;\n /// Footer Colors\n --color-footer-background: #1e1e22;\n --color-footer-border: #333;\n /// Sidebar Colors\n --color-sidebar-border: #555;\n --color-sidebar-font: #fff;\n --color-sidebar-background: #292c34;\n /// BackToTop Colors\n --color-backtotop-font: #bbb;\n --color-backtotop-border: #333;\n --color-backtotop-background: #2b2e36;\n /// Button Colors\n --color-btn-background: #58f;\n --color-btn-font: #222;\n --color-show-btn-background: #555;\n --color-show-btn-font: #fff;\n /// Search Input Colors\n --color-search-border: #555;\n --color-search-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-search-background: #2b2e36;\n --color-search-font: #fff;\n --color-search-background-hover: #58f;\n /// Modal Colors\n --color-error: #f55b5b;\n --color-error-background: darken(#db3434, 40%);\n --color-warning: #f1d561;\n --color-warning-background: darken(#dbba34, 40%);\n --color-success: #79f56e;\n --color-success-background: darken(#42db34, 40%);\n /// Categories Colors\n --color-categories-item-selected-font: #58f;\n --color-categories-item-border-selected: #58f;\n /// Autocomplete Colors\n --color-autocomplete-font: #fff;\n --color-autocomplete-border: #555;\n --color-autocomplete-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n --color-autocomplete-background: #2b2e36;\n --color-autocomplete-background-hover: #1e1e22;\n /// Answer Colors\n --color-answer-font: #bbb; // same as --color-base-font\n --color-answer-background: #26292f;\n /// Results Colors\n --color-result-background: #26292f;\n --color-result-border: #333;\n --color-result-url-font: #fff;\n --color-result-vim-selected: #1f1f23cc;\n --color-result-vim-arrow: #8af;\n --color-result-description-highlight-font: #fff;\n --color-result-link-font: #8af;\n --color-result-link-font-highlight: #8af;\n --color-result-link-visited-font: #c09cd9;\n --color-result-publishdate-font: #888;\n --color-result-engines-font: #a4a4a4;\n --color-result-search-url-border: #555;\n --color-result-search-url-font: #fff;\n /// Detail modal : same as the light version\n --color-result-detail-font: #fff;\n --color-result-detail-label-font: lightgray;\n --color-result-detail-background: #1a1a1c;\n --color-result-detail-hr: #555;\n --color-result-detail-link: #8af;\n --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);\n --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);\n // Images Colors\n --color-result-image-span-font: #bbb;\n --color-result-image-span-font-selected: #222;\n --color-result-image-background: #222;\n /// Settings Colors\n --color-settings-tr-hover: #2c2c32;\n --color-settings-engine-description-font: darken(#dcdcdc, 30%);\n --color-settings-engine-group-background: #1b1b21;\n /// Toolkit Colors\n --color-toolkit-badge-font: #fff;\n --color-toolkit-badge-background: #555;\n --color-toolkit-kbd-font: #000;\n --color-toolkit-kbd-background: #fff;\n --color-toolkit-dialog-border: #555;\n --color-toolkit-dialog-background: #1e1e22;\n --color-toolkit-tabs-label-border: #222;\n --color-toolkit-tabs-section-border: #555;\n --color-toolkit-select-background: #313338;\n --color-toolkit-select-border: #555;\n --color-toolkit-select-background-hover: #373b49;\n --color-toolkit-input-text-font: #fff;\n --color-toolkit-checkbox-onoff-off-background: #313338;\n --color-toolkit-checkbox-onoff-on-background: #313338;\n --color-toolkit-checkbox-onoff-on-mark-background: #58f;\n --color-toolkit-checkbox-onoff-on-mark-color: #222;\n --color-toolkit-checkbox-onoff-off-mark-background: #ddd;\n --color-toolkit-checkbox-onoff-off-mark-color: #222;\n --color-toolkit-checkbox-label-background: #222;\n --color-toolkit-checkbox-label-border: #333;\n --color-toolkit-checkbox-input-border: #58f;\n --color-toolkit-engine-tooltip-border: #333;\n --color-toolkit-engine-tooltip-background: #222;\n --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);\n --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);\n --color-doc-code: #fdd;\n --color-doc-code-background: #300;\n}\n\n/// Dark Theme (autoswitch based on device pref)\n@media (prefers-color-scheme: dark) {\n :root.theme-auto {\n .dark-themes();\n }\n}\n\n// Dark Theme by preferences\n:root.theme-dark {\n .dark-themes();\n}\n\n/// General Size\n@results-width: 45rem;\n@results-sidebar-width: 25rem;\n@results-offset: 10rem;\n@results-tablet-offset: 0.5rem;\n@results-gap: 5rem;\n@results-margin: 0.125rem;\n@result-padding: 1rem;\n@results-image-row-height: 12rem;\n@results-image-row-height-phone: 6rem;\n@search-width: 44rem;\n// heigh of #search, see detail.less\n@search-height: 7.6rem;\n\n/// Device Size\n/// @desktop > @tablet\n@tablet: 79.75em; // see https://github.com/searxng/searxng/issues/874\n@phone: 50em;\n@small-phone: 35em;\n@ultra-small-phone: 20rem;\n\n/// From style.less\n@stacked-bar-chart: rgb(0, 0, 0);\n\n/// Load fonts from this directory.\n@icon-font-path: \"../../../fonts/\";\n//** File name for all font files.\n@icon-font-name: \"glyphicons-halflings-regular\";\n//** Element ID within SVG icon file.\n@icon-font-svg-id: \"glyphicons_halflingsregular\";\n\n// decoration of the select HTML elements\n@select-light-svg-path: \"../svg/select-light.svg\";\n@select-dark-svg-path: \"../svg/select-dark.svg\";\n",".code-highlight pre {\n overflow: auto;\n background-color: inherit;\n color: inherit;\n border: inherit;\n}\n\n// stylelint-disable no-invalid-position-at-import-rule\n@import \"../generated/pygments.less\";\n","/*\n this file is generated automatically by searxng_extra/update/update_pygments.py\n using pygments version 2.14.0\n*/\n\n.code-highlight .linenos {\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n cursor: default;\n\n &::selection {\n background: transparent; /* WebKit/Blink Browsers */\n }\n &::-moz-selection {\n background: transparent; /* Gecko Browsers */\n }\n\n margin-right: 8px;\n text-align: right;\n}\n\n.code-highlight pre { line-height: 125%; }\n.code-highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\n.code-highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.code-highlight .hll { background-color: #ffffcc }\n.code-highlight { background: #f8f8f8; }\n.code-highlight .c { color: #3D7B7B; font-style: italic } /* Comment */\n.code-highlight .err { border: 1px solid #FF0000 } /* Error */\n.code-highlight .k { color: #008000; font-weight: bold } /* Keyword */\n.code-highlight .o { color: #666666 } /* Operator */\n.code-highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */\n.code-highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */\n.code-highlight .cp { color: #9C6500 } /* Comment.Preproc */\n.code-highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */\n.code-highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */\n.code-highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */\n.code-highlight .gd { color: #A00000 } /* Generic.Deleted */\n.code-highlight .ge { font-style: italic } /* Generic.Emph */\n.code-highlight .gr { color: #E40000 } /* Generic.Error */\n.code-highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */\n.code-highlight .gi { color: #008400 } /* Generic.Inserted */\n.code-highlight .go { color: #717171 } /* Generic.Output */\n.code-highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\n.code-highlight .gs { font-weight: bold } /* Generic.Strong */\n.code-highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\n.code-highlight .gt { color: #0044DD } /* Generic.Traceback */\n.code-highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\n.code-highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\n.code-highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\n.code-highlight .kp { color: #008000 } /* Keyword.Pseudo */\n.code-highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\n.code-highlight .kt { color: #B00040 } /* Keyword.Type */\n.code-highlight .m { color: #666666 } /* Literal.Number */\n.code-highlight .s { color: #BA2121 } /* Literal.String */\n.code-highlight .na { color: #687822 } /* Name.Attribute */\n.code-highlight .nb { color: #008000 } /* Name.Builtin */\n.code-highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */\n.code-highlight .no { color: #880000 } /* Name.Constant */\n.code-highlight .nd { color: #AA22FF } /* Name.Decorator */\n.code-highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */\n.code-highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */\n.code-highlight .nf { color: #0000FF } /* Name.Function */\n.code-highlight .nl { color: #767600 } /* Name.Label */\n.code-highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\n.code-highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */\n.code-highlight .nv { color: #19177C } /* Name.Variable */\n.code-highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\n.code-highlight .w { color: #bbbbbb } /* Text.Whitespace */\n.code-highlight .mb { color: #666666 } /* Literal.Number.Bin */\n.code-highlight .mf { color: #666666 } /* Literal.Number.Float */\n.code-highlight .mh { color: #666666 } /* Literal.Number.Hex */\n.code-highlight .mi { color: #666666 } /* Literal.Number.Integer */\n.code-highlight .mo { color: #666666 } /* Literal.Number.Oct */\n.code-highlight .sa { color: #BA2121 } /* Literal.String.Affix */\n.code-highlight .sb { color: #BA2121 } /* Literal.String.Backtick */\n.code-highlight .sc { color: #BA2121 } /* Literal.String.Char */\n.code-highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */\n.code-highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\n.code-highlight .s2 { color: #BA2121 } /* Literal.String.Double */\n.code-highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */\n.code-highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */\n.code-highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */\n.code-highlight .sx { color: #008000 } /* Literal.String.Other */\n.code-highlight .sr { color: #A45A77 } /* Literal.String.Regex */\n.code-highlight .s1 { color: #BA2121 } /* Literal.String.Single */\n.code-highlight .ss { color: #19177C } /* Literal.String.Symbol */\n.code-highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */\n.code-highlight .fm { color: #0000FF } /* Name.Function.Magic */\n.code-highlight .vc { color: #19177C } /* Name.Variable.Class */\n.code-highlight .vg { color: #19177C } /* Name.Variable.Global */\n.code-highlight .vi { color: #19177C } /* Name.Variable.Instance */\n.code-highlight .vm { color: #19177C } /* Name.Variable.Magic */\n.code-highlight .il { color: #666666 } /* Literal.Number.Integer.Long */\n","// other solution : http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/13857783#13857783\n\n// stylelint-disable no-descending-specificity\n\nhtml.no-js .hide_if_nojs {\n display: none;\n}\n\nhtml.js .show_if_nojs {\n display: none;\n}\n\n.center {\n text-align: center;\n}\n\n.right {\n float: right;\n}\n\n.left {\n float: left;\n}\n\n.invisible {\n display: none !important;\n}\n\n.list-unstyled {\n list-style-type: none;\n\n li {\n margin-top: 4px;\n margin-bottom: 4px;\n }\n}\n\n.danger {\n background-color: var(--color-error-background);\n}\n\n.warning {\n background: var(--color-warning-background);\n}\n\n.success {\n background: var(--color-success-background);\n}\n\n.badge {\n display: inline-block;\n color: var(--color-toolkit-badge-font);\n background-color: var(--color-toolkit-badge-background);\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n min-width: 10px;\n padding: 1px 5px;\n border-radius: 5px;\n}\n\n// kbd\nkbd {\n padding: 2px 4px;\n margin: 1px;\n font-size: 90%;\n color: var(--color-toolkit-kbd-font);\n background: var(--color-toolkit-kbd-background);\n}\n\n// table\ntable {\n width: 100%;\n\n &.striped {\n tr {\n border-bottom: 1px solid var(--color-settings-tr-hover);\n }\n }\n}\n\nth {\n padding: 0.4em;\n}\n\ntd {\n padding: 0 4px;\n}\n\ntr {\n &:hover {\n background: var(--color-settings-tr-hover) !important;\n }\n}\n\n// pre\n.pre() {\n display: block;\n font-size: 0.8em;\n word-break: break-all;\n margin: 0.1em;\n user-select: all;\n}\n\ndiv.selectable_url {\n display: block;\n border: 1px solid var(--color-result-search-url-border);\n padding: 4px;\n color: var(--color-result-search-url-font);\n margin: 0.1em;\n overflow: hidden;\n height: 1.2em;\n line-height: 1.2em;\n .rounded-corners-tiny;\n\n pre {\n .pre();\n }\n}\n\n// dialog\n.dialog() {\n position: relative;\n display: flex;\n padding: 1rem;\n margin: 0 0 1em 0;\n border: 1px solid var(--color-toolkit-dialog-border);\n .ltr-text-align-left();\n .rounded-corners;\n\n .close {\n .ltr-float-right();\n position: relative;\n top: -3px;\n color: inherit;\n font-size: 1.5em;\n }\n\n ul,\n ol,\n p {\n margin: 1px 0 0 0;\n }\n\n table {\n width: auto;\n }\n\n tr {\n vertical-align: text-top;\n\n &:hover {\n background: transparent !important;\n }\n }\n\n td {\n padding: 0 1em 0 0;\n padding-top: 0;\n .ltr-padding-right(1rem);\n padding-bottom: 0;\n .ltr-padding-left(0);\n }\n\n h4 {\n margin-top: 0.3em;\n margin-bottom: 0.3em;\n }\n}\n\n.dialog-error {\n .dialog();\n\n color: var(--color-error);\n background: var(--color-error-background);\n border-color: var(--color-error);\n}\n\n.dialog-warning {\n .dialog();\n\n color: var(--color-warning);\n background: var(--color-warning-background);\n border-color: var(--color-warning);\n}\n\n.dialog-modal {\n .dialog();\n\n display: block;\n background: var(--color-toolkit-dialog-background);\n position: fixed;\n top: 50%;\n left: 50%;\n margin: 0 auto;\n transform: translate(-50%, -50%);\n z-index: 10000000;\n\n h3 {\n margin-top: 0;\n }\n}\n\n// btn-collapse\n.btn-collapse {\n cursor: pointer;\n}\n\n//\n.scrollx {\n overflow-x: auto;\n overflow-y: hidden;\n display: block;\n padding: 0;\n margin: 0;\n border: none;\n}\n\n/* -- tabs -- */\n.tabs .tabs > label {\n font-size: 90%;\n}\n\nul.tabs {\n border-bottom: 1px solid var(--color-toolkit-tabs-section-border);\n list-style: none;\n padding-left: 0;\n\n li {\n display: flex;\n }\n}\n\n.tabs {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n min-width: 100%;\n\n & > * {\n order: 2;\n }\n\n & > input[type=radio] {\n display: none;\n }\n\n & > label,\n & > li > a {\n order: 1;\n padding: 0.7em;\n margin: 0 0.7em;\n letter-spacing: 0.5px;\n text-transform: uppercase;\n border: solid var(--color-toolkit-tabs-label-border);\n border-width: 0 0 2px 0;\n color: unset;\n\n .disable-user-select();\n\n cursor: pointer;\n\n &.active {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n }\n\n & > label:hover,\n & > li > a:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n\n & > section {\n min-width: 100%;\n padding: 0.7rem 0;\n box-sizing: border-box;\n border-top: 1px solid var(--color-toolkit-tabs-section-border);\n display: none;\n }\n\n // default selection\n & > label:last-of-type {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n letter-spacing: -0.1px;\n }\n\n & > section:last-of-type {\n display: block;\n }\n}\n\nhtml body .tabs > input:checked {\n ~ section {\n display: none;\n }\n\n ~ label {\n position: inherited;\n background: inherit;\n border-bottom: 2px solid transparent;\n font-weight: normal;\n color: inherit;\n\n &:hover {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n }\n\n + label {\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n background: var(--color-categories-item-selected);\n color: var(--color-categories-item-selected-font);\n }\n\n + label + section {\n display: block;\n }\n}\n\n/* -- select -- */\nselect {\n height: 2.4rem;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n padding: 0.2rem !important;\n color: var(--color-search-font);\n font-size: 0.9rem;\n z-index: 2;\n\n &:hover,\n &:focus {\n cursor: pointer;\n }\n}\n\n@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {\n select {\n appearance: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n border-width: 0 2rem 0 0;\n border-color: transparent;\n background: data-uri('image/svg+xml;charset=UTF-8', @select-light-svg-path) no-repeat;\n background-position-x: calc(100% + 2rem);\n background-size: 2rem;\n background-origin: content-box;\n background-color: var(--color-toolkit-select-background);\n outline: medium none;\n text-overflow: ellipsis;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n\n option {\n background-color: var(--color-base-background);\n }\n }\n\n @media (prefers-color-scheme: dark) {\n html.theme-auto select,\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n }\n\n html.theme-dark select {\n background-image: data-uri('image/svg+xml;charset=UTF-8', @select-dark-svg-path);\n }\n}\n\n/* -- checkbox-onoff -- */\ninput.checkbox-onoff[type=\"checkbox\"] {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n cursor: pointer;\n display: inline-block;\n width: 2.5em;\n height: 0.7em;\n box-shadow: none !important;\n margin: 0 16px;\n border-radius: 10px;\n position: relative;\n\n /* focus & hover */\n &:focus,\n &:hover {\n outline: none;\n }\n\n &:focus::after {\n content: \"\";\n position: absolute;\n width: 3.5em;\n height: 1.65em;\n border: 1px solid var(--color-btn-background);\n border-radius: 12px;\n box-shadow: var(--color-btn-background) 0 0 3px;\n z-index: 10000;\n top: -0.55em;\n left: -0.6em;\n }\n\n &::before {\n position: absolute;\n top: -0.5em;\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: 0.75em;\n width: 1.875em;\n height: 1.875em;\n border-radius: 50%;\n }\n}\n\n/* check mark\nreversed-checkbox displays unchecked checkedboxes as checked, and vice versa.\nsee https://github.com/searxng/searxng/blob/3408d061aab9abc6168fec9bbc6deab71b236dac/searx/templates/simple/preferences.html#L313\n*/\ninput.checkbox-onoff[type=\"checkbox\"],\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"]:checked {\n background: var(--color-toolkit-checkbox-onoff-off-background);\n\n &::before {\n left: -0.5em;\n content: \"\\2715\";\n color: var(--color-toolkit-checkbox-onoff-off-mark-color);\n background: var(--color-toolkit-checkbox-onoff-off-mark-background);\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]:checked,\n.reversed-checkbox input.checkbox-onoff[type=\"checkbox\"] {\n background: var(--color-toolkit-checkbox-onoff-on-background);\n\n &::before {\n left: calc(100% - 1.5em);\n content: \"\\2713\";\n color: var(--color-toolkit-checkbox-onoff-on-mark-color);\n background: var(--color-toolkit-checkbox-onoff-on-mark-background);\n }\n}\n\n/* -- checkbox -- */\n@supports (transform: rotate(-45deg)) {\n input[type=checkbox]:not(.checkbox-onoff) {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n\n width: 20px;\n height: 20px;\n cursor: pointer;\n position: relative;\n top: 0;\n left: 0;\n border: 2px solid var(--color-toolkit-checkbox-input-border);\n .rounded-corners(0.3em);\n\n &::after {\n content: '';\n width: 9px;\n height: 5px;\n position: absolute;\n top: 3px;\n left: 2px;\n border: 3px solid var(--color-toolkit-checkbox-label-border);\n border-top: none;\n border-right: none;\n background: transparent;\n opacity: 0;\n transform: rotate(-45deg);\n }\n\n &:checked::after {\n border-color: var(--color-toolkit-checkbox-input-border);\n opacity: 1;\n }\n }\n\n // disabled : can't be focused, show only the check mark\n input[type=checkbox][disabled]:not(.checkbox-onoff) {\n border: inherit;\n background-color: transparent !important;\n cursor: inherit;\n }\n\n // if not checked and possible to checked then display a \"light\" check mark on hover\n input.checkbox[type=checkbox]:not(:checked):not([disabled]):not(.checkbox-onoff):hover::after {\n opacity: 0.5;\n }\n}\n\n@media screen and (max-width: @phone) {\n .tabs > label {\n width: 100%;\n }\n}\n\n/* -- loader -- */\n.loader,\n.loader::after {\n border-radius: 50%;\n width: 2em;\n height: 2em;\n}\n\n.loader {\n margin: 1em auto;\n font-size: 10px;\n position: relative;\n text-indent: -9999em;\n border-top: 0.5em solid var(--color-toolkit-loader-border);\n border-right: 0.5em solid var(--color-toolkit-loader-border);\n border-bottom: 0.5em solid var(--color-toolkit-loader-border);\n border-left: 0.5em solid var(--color-toolkit-loader-borderleft);\n -webkit-transform: translateZ(0);\n -ms-transform: translateZ(0);\n transform: translateZ(0);\n -webkit-animation: load8 1.2s infinite linear;\n animation: load8 1.2s infinite linear;\n}\n\n@-webkit-keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes load8 {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n/* -- engine-tooltip -- */\n.engine-tooltip {\n display: none;\n position: absolute;\n padding: 0.5rem 1rem;\n margin: 0 0 0 2rem;\n border: 1px solid var(--color-toolkit-engine-tooltip-border);\n background: var(--color-toolkit-engine-tooltip-background);\n font-size: 14px;\n font-weight: normal;\n z-index: 1000000;\n text-align: left;\n .rounded-corners;\n}\n\nth:hover .engine-tooltip,\ntd:hover .engine-tooltip,\n.engine-tooltip:hover {\n display: inline-block;\n}\n\n/* -- stacked bar chart -- */\n.stacked-bar-chart {\n margin: 0;\n padding: 0 0.125rem 0 4rem;\n width: 100%;\n width: -moz-available;\n width: -webkit-fill-available;\n width: fill;\n flex-direction: row;\n flex-wrap: nowrap;\n align-items: center;\n display: inline-flex;\n}\n\n.stacked-bar-chart-value {\n width: 3rem;\n display: inline-block;\n position: absolute;\n padding: 0 0.5rem;\n text-align: right;\n}\n\n.stacked-bar-chart-base {\n display: flex;\n flex-shrink: 0;\n flex-grow: 0;\n flex-basis: unset;\n}\n\n.stacked-bar-chart-median {\n .stacked-bar-chart-base();\n\n background: var(--color-base-font);\n border: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate80 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border: 1px solid rgba(var(--color-base-font-rgb), 0.3);\n padding: 0.3rem 0;\n}\n\n.stacked-bar-chart-rate95 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-bottom: 1px dotted rgba(var(--color-base-font-rgb), 0.5);\n padding: 0;\n}\n\n.stacked-bar-chart-rate100 {\n .stacked-bar-chart-base();\n\n background: transparent;\n border-left: 1px solid rgba(var(--color-base-font-rgb), 0.9);\n padding: 0.4rem 0;\n width: 1px;\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n// Mixins\n.text-size-adjust (@property: 100%) {\n -webkit-text-size-adjust: @property;\n -ms-text-size-adjust: @property;\n -moz-text-size-adjust: @property;\n text-size-adjust: @property;\n}\n\n.rounded-corners (@radius: 10px) {\n border-radius: @radius;\n}\n\n.rounded-right-corners (@radius: 0 10px 10px 0) {\n border-radius: @radius;\n}\n\n.rounded-corners-tiny (@radius: 5px) {\n border-radius: @radius;\n}\n\n// disable user selection\n.disable-user-select () {\n -webkit-touch-callout: none;\n user-select: none;\n}\n\n.show-content-button() {\n padding: 5px 10px;\n .rounded-corners-tiny;\n background: var(--color-show-btn-background);\n color: var(--color-show-btn-font);\n cursor: pointer;\n\n &:hover {\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n }\n}\n",".ltr-left(@offset) {\n left: @offset;\n}\n\n.ltr-right(@offset) {\n right: @offset;\n}\n\n.ltr-margin-right(@offset) {\n margin-right: @offset;\n}\n\n.ltr-margin-left(@offset) {\n margin-left: @offset;\n}\n\n.ltr-border-right(@offset) {\n border-right: @offset;\n}\n\n.ltr-border-left(@offset) {\n border-left: @offset;\n}\n\n.ltr-padding-right(@offset) {\n padding-right: @offset;\n}\n\n.ltr-padding-left(@offset) {\n padding-left: @offset;\n}\n\n.ltr-float-left() {\n float: left;\n}\n\n.ltr-float-right() {\n float: right;\n}\n\n.ltr-text-align-right() {\n text-align: right;\n}\n\n.ltr-rounded-left-corners(@radius) {\n border-radius: @radius 0 0 @radius;\n}\n\n.ltr-rounded-top-left-corners(@radius) {\n border-radius: @radius 0 0 0;\n}\n\n.ltr-rounded-bottom-left-corners(@radius) {\n border-radius: 0 0 0 @radius;\n}\n\n.ltr-rounded-right-corners(@radius) {\n border-radius: 0 @radius @radius 0;\n}\n\n.ltr-rounded-top-right-corners(@radius) {\n border-radius: 0 @radius 0 0;\n}\n\n.ltr-rounded-bottom-right-corners(@radius) {\n border-radius: 0 0 @radius 0;\n}\n\n.ltr-text-align-left() {\n text-align: left;\n}\n\n.ltr-border-left-width(@offset) {\n border-left-width: @offset;\n}\n\n.ltr-border-right-width(@offset) {\n border-right-width: @offset;\n}\n\n.ltr-transform() {\n transform: scale(1, 1);\n}\n\n@import \"style.less\";\n","/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */\n\n.autocomplete {\n position: absolute;\n width: @search-width;\n max-height: 0;\n overflow-y: hidden;\n .ltr-text-align-left();\n\n .rounded-corners;\n\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background);\n }\n\n &:empty {\n display: none;\n }\n\n > ul {\n list-style-type: none;\n margin: 0;\n padding: 0;\n\n > li {\n cursor: pointer;\n padding: 0.5rem 1rem;\n\n &.active,\n &:active,\n &:focus,\n &:hover {\n background-color: var(--color-autocomplete-background-hover);\n\n a:active,\n a:focus,\n a:hover {\n text-decoration: none;\n }\n }\n\n &.locked {\n cursor: inherit;\n }\n }\n }\n\n &.open {\n display: block;\n background-color: var(--color-autocomplete-background);\n color: var(--color-autocomplete-font);\n max-height: 32rem;\n overflow-y: auto;\n z-index: 100;\n margin-top: 3.5rem;\n border-radius: 0.8rem;\n box-shadow: 0 2px 8px rgb(34 38 46 / 25%);\n\n &:empty {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n .autocomplete {\n width: 100%;\n\n > ul > li {\n padding: 1rem;\n }\n }\n}\n","#main_results #results.image-detail-open.only_template_images {\n width: min(98%, 59.25rem) !important;\n}\n\n#main_results #results.only_template_images.image-detail-open #backToTop {\n .ltr-left(56.75rem) !important;\n .ltr-right(inherit);\n}\n\narticle.result-images .detail {\n display: none;\n}\n\n#results.image-detail-open article.result-images[data-vim-selected] .detail {\n display: flex;\n flex-direction: column;\n position: fixed;\n .ltr-left(60rem);\n .ltr-right(0);\n top: @search-height;\n transition: top 0.064s ease-in 0s;\n bottom: 0;\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-background);\n z-index: 10000;\n padding: 4rem 3rem 3rem 3rem;\n\n a.result-images-source {\n display: block;\n flex: 1;\n text-align: left;\n width: 100%;\n border: none;\n text-decoration: none;\n\n img {\n padding: 0;\n margin: 0;\n border: none;\n object-fit: contain;\n width: inherit;\n height: inherit;\n max-width: 100%;\n min-height: inherit;\n max-height: calc(100vh - 25rem - 7rem);\n background: inherit;\n }\n }\n\n .result-images-labels {\n color: var(--color-result-detail-font);\n max-height: 16rem;\n min-height: 16rem;\n\n hr {\n border-top: 1px solid var(--color-result-detail-hr);\n border-bottom: none;\n }\n\n h4 {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n font-size: 0.9rem;\n }\n\n p {\n color: var(--color-result-detail-label-font);\n font-size: 0.9rem;\n\n span {\n display: inline-block;\n width: 12rem;\n }\n }\n\n h4,\n p,\n a {\n .ltr-text-align-left();\n }\n\n p.result-content {\n height: 2rem;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-url {\n white-space: nowrap;\n overflow-x: hidden;\n text-overflow: ellipsis;\n }\n\n p.result-content:hover,\n p.result-url:hover {\n position: relative;\n overflow: inherit !important;\n background: var(--color-result-detail-background);\n text-overflow: inherit !important;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-result-detail-link);\n }\n\n a:hover {\n text-decoration: underline;\n }\n }\n\n a.result-detail-close {\n top: 1rem;\n .ltr-left(1rem);\n padding: 0.4rem;\n }\n\n a.result-detail-previous {\n top: 1rem;\n .ltr-right(6rem);\n // center the icon by moving it slightly on the left\n padding-top: 0.4rem;\n .ltr-padding-right(0.5rem);\n padding-bottom: 0.4rem;\n .ltr-padding-left(0.3rem);\n }\n\n a.result-detail-next {\n top: 1rem;\n .ltr-right(2rem);\n padding: 0.4rem;\n }\n\n a.result-detail-close,\n a.result-detail-next,\n a.result-detail-previous {\n border-radius: 50%;\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n position: absolute;\n filter: opacity(40%);\n z-index: 2000002;\n\n span {\n display: block;\n width: 1.5rem;\n height: 1.5rem;\n text-align: center;\n }\n }\n\n a.result-detail-next,\n a.result-detail-previous {\n span::before {\n // vertical center small icons\n vertical-align: sub;\n }\n }\n\n a.result-detail-close,\n a.result-detail-close:visited,\n a.result-detail-close:hover,\n a.result-detail-close:active,\n a.result-detail-previous,\n a.result-detail-previous:visited,\n a.result-detail-previous:hover,\n a.result-detail-previous:active,\n a.result-detail-next,\n a.result-detail-next:visited,\n a.result-detail-next:hover,\n a.result-detail-next:active {\n color: var(--color-result-detail-font);\n background: var(--color-result-detail-background);\n border: 1px solid var(--color-result-detail-font);\n }\n\n a.result-detail-close:focus,\n a.result-detail-close:hover,\n a.result-detail-previous:focus,\n a.result-detail-previous:hover,\n a.result-detail-next:focus,\n a.result-detail-next:hover {\n filter: opacity(80%);\n }\n\n .loader {\n position: absolute;\n top: 1rem;\n .ltr-right(50%);\n border-top: 0.5em solid var(--color-result-detail-loader-border);\n border-right: 0.5em solid var(--color-result-detail-loader-border);\n border-bottom: 0.5em solid var(--color-result-detail-loader-border);\n border-left: 0.5em solid var(--color-result-detail-loader-borderleft);\n }\n}\n\n#results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail {\n top: 0;\n\n a.result-images-source img {\n max-height: calc(100vh - 25rem);\n }\n}\n\n@media screen and (max-width: @tablet) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n\n a.result-images-source {\n display: flex;\n flex-direction: column;\n justify-content: center;\n\n img {\n width: 100%;\n max-height: calc(100vh - 24rem);\n }\n }\n\n a.result-detail-next {\n .ltr-right(1rem);\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #results.image-detail-open article.result-images[data-vim-selected] .detail {\n top: 0;\n .ltr-left(0);\n padding: 1rem;\n\n a.result-images-source img {\n width: 100%;\n max-height: calc(100vh - 20rem);\n margin: 0;\n }\n\n .result-images-labels p span {\n width: inherit;\n .ltr-margin-right(1rem);\n }\n }\n}\n",".dialog-modal {\n animation-name: dialogmodal;\n animation-duration: 0.13s;\n\n @keyframes dialogmodal {\n 0% {\n opacity: 0;\n }\n\n 50% {\n opacity: 0.5;\n transform: translate(-50%, -50%) scale(1.05);\n }\n }\n}\n\ninput.checkbox-onoff[type=\"checkbox\"]::before {\n transition: left 0.25s;\n}\n","iframe[src^=\"https://w.soundcloud.com\"] {\n height: 120px;\n}\n\niframe[src^=\"https://www.deezer.com\"] {\n // The real size is 92px, but 94px are needed to avoid an inner scrollbar of\n // the embedded HTML.\n height: 94px;\n}\n\niframe[src^=\"https://www.mixcloud.com\"] {\n // the embedded player from mixcloud has some quirks: initial there is an\n // issue with an image URL that is blocked since it is an a Cross-Origin\n // request. The alternative text (Mixcloud Logo then cause an\n // scrollbar in the inner of the iframe we can't avoid. Another quirk comes\n // when pressing the play button, somtimes the shown player has an height of\n // 200px, somtimes 250px.\n height: 250px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer\"] {\n // show playlist\n height: 350px;\n}\n\niframe[src^=\"https://bandcamp.com/EmbeddedPlayer/track\"] {\n // hide playlist\n height: 120px;\n}\n\niframe[src^=\"https://genius.com/songs\"] {\n height: 65px;\n}\n",".info-page {\n code {\n font-family: monospace;\n color: var(--color-doc-code);\n background-color: var(--color-doc-code-background);\n padding: 2px 5px;\n .rounded-corners(5px);\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n.stats_endpoint {\n .github-issue-button {\n display: block;\n padding: 8px 16px;\n font-family: sans-serif;\n font-size: 16px;\n color: white;\n background-color: #238636;\n border: #2ea043;\n border-radius: 10px !important;\n box-shadow: rgba(0, 0, 0, 0) 0 0 0 0;\n }\n\n .github-issue-button:hover {\n background-color: #2ea043;\n }\n\n .issue-hide {\n display: none;\n }\n\n input[type=checked] {\n position: absolute;\n }\n\n label {\n margin: 1rem 1rem 1rem 0;\n }\n\n .step_content {\n margin: 1rem 1rem 1rem 2rem;\n }\n\n .step1,\n .step2 {\n visibility: hidden;\n }\n\n .step1_delay {\n transition: visibility 0s linear 4s;\n }\n\n #step1:checked ~ .step1,\n #step2:checked ~ .step2 {\n visibility: visible;\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.engine-stats {\n border-spacing: 0;\n border-collapse: collapse;\n\n tr td,\n tr th {\n border-bottom: 1px solid var(--color-result-border);\n padding: 0.25rem;\n }\n\n table.engine-tooltip {\n border-spacing: 0;\n border-collapse: collapse;\n\n td,\n th {\n border: none;\n }\n }\n\n .engine-name {\n width: 20rem;\n }\n\n .engine-score {\n width: 7rem;\n text-align: right;\n }\n\n .engine-reliability {\n text-align: right;\n }\n}\n\ntable.engine-error th.engine-error-type,\ntable.engine-error td.engine-error-type,\nfailed-test {\n width: 10rem;\n}\n\n.engine-errors {\n margin-top: 3rem;\n\n table.engine-error {\n max-width: 1280px;\n margin: 1rem 0 3rem 0;\n border: 1px solid var(--color-result-border);\n .ltr-text-align-left();\n\n tr th,\n tr td {\n padding: 0.5rem;\n }\n\n & span.log_parameters {\n border-right: 1px solid solid var(--color-result-border);\n padding: 0 1rem 0 0;\n margin: 0 0 0 0.5rem;\n }\n }\n}\n\n.bar-chart-value {\n width: 3em;\n display: inline-block;\n text-align: right;\n padding-right: 0.5rem;\n}\n\n.bar-chart-graph {\n width: calc(100% - 5rem);\n display: inline-block;\n}\n\n.bar-chart-bar {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n}\n\n.bar-chart-serie1 {\n border: 3px solid #5bc0de;\n margin: 1px 0;\n float: left;\n}\n\n.bar-chart-serie2 {\n border: 3px solid #deb15b;\n margin: 1px 0;\n float: left;\n}\n\n.bar0 {\n width: 0;\n border: 0;\n}\n\n.generate-bar(100);\n\n.generate-bar(@n, @i: 1) when (@i =< @n) {\n .bar@{i} {\n width: (@i * 100% / @n);\n }\n .generate-bar(@n, (@i + 1));\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n.osm-map-box {\n height: 300px;\n width: 100%;\n margin: 10px 0;\n}\n","#main_index {\n margin-top: 26vh;\n}\n\n.index {\n text-align: center;\n\n .title {\n background: url('../img/searxng.png') no-repeat;\n min-height: 4rem;\n margin: 4rem auto;\n background-position: center;\n background-size: contain;\n }\n\n h1 {\n font-size: 4em;\n visibility: hidden;\n }\n\n #search,\n #search_header {\n margin: 0 auto;\n background: inherit;\n border: inherit;\n padding: 0;\n display: block;\n }\n\n .search_filters {\n display: block;\n margin: 1em 0;\n }\n\n .category label {\n padding: 6px 10px;\n border-bottom: initial !important;\n }\n}\n\n@media screen and (max-width: @tablet) {\n div.title {\n h1 {\n font-size: 1em;\n }\n }\n\n #main_index {\n margin-top: 6em;\n }\n}\n","#tab-content-query table td,\n#tab-content-query table th {\n .ltr-text-align-right() !important;\n height: 3rem;\n}\n\n#main_preferences {\n form {\n width: 100%;\n }\n\n fieldset {\n margin: 8px;\n border: none;\n }\n\n legend {\n margin: 0;\n padding: 5px 0 0 0;\n display: block;\n .ltr-float-left();\n width: 300px;\n }\n\n .value {\n margin: 0;\n padding: 0;\n .ltr-float-left();\n width: 15em;\n\n select,\n input[type=\"text\"] {\n font-size: inherit !important;\n margin-top: 0;\n .ltr-margin-right(1rem);\n margin-bottom: 0;\n .ltr-margin-left(0);\n }\n\n select {\n width: 14rem;\n }\n\n input[type=\"text\"] {\n width: 13.25rem;\n color: var(--color-toolkit-input-text-font);\n border: none;\n background: none repeat scroll 0 0 var(--color-toolkit-select-background);\n padding: 0.2rem 0.4rem;\n height: 2rem;\n .rounded-corners-tiny;\n\n &:hover,\n &:focus {\n background-color: var(--color-toolkit-select-background-hover);\n }\n }\n\n select:focus,\n input:focus {\n outline: none;\n box-shadow: 0 0 1px 1px var(--color-btn-background);\n }\n }\n\n .description {\n margin: 0;\n padding: 5px 0 0 0;\n .ltr-float-right();\n width: 50%;\n color: var(--color-settings-engine-description-font);\n font-size: 90%;\n }\n\n table {\n border-collapse: collapse;\n }\n\n table td {\n text-align: center;\n }\n\n .category {\n .ltr-margin-right(0.5rem);\n\n label {\n border: 2px solid transparent;\n padding: 0.2rem 0.4rem;\n .rounded-corners-tiny;\n }\n }\n\n .category input[type=\"checkbox\"]:checked + label {\n border: 2px solid var(--color-categories-item-border-selected);\n }\n\n table.table_engines {\n td {\n height: 3.75rem;\n }\n\n th.name {\n /* stylelint-disable */\n label {\n cursor: pointer;\n }\n /* stylelint-enable */\n\n .engine-tooltip {\n margin-top: 1.8rem;\n .ltr-left(calc((100% - 85em) / 2 + 10em));\n max-width: 40rem;\n\n .engine-description {\n margin-top: 0.5rem;\n }\n }\n }\n\n .engine-group {\n .ltr-text-align-left();\n font-weight: normal;\n background: var(--color-settings-engine-group-background);\n }\n\n .name,\n .shortcut {\n .ltr-text-align-left();\n }\n }\n\n table.cookies {\n width: 100%;\n direction: ltr;\n\n th,\n td {\n text-align: left;\n font-family: monospace;\n font-size: 1rem;\n padding: 0.5em;\n vertical-align: top;\n }\n\n td:first-child {\n word-break: keep-all;\n width: 14rem;\n padding-right: 1rem;\n }\n\n td:last-child {\n word-break: break-all;\n }\n\n & > tbody > tr:nth-child(even) > th,\n & > tbody > tr:nth-child(even) > td {\n background-color: var(--color-settings-tr-hover);\n }\n }\n\n .preferences_back {\n background: none repeat scroll 0 0 var(--color-btn-background);\n color: var(--color-btn-font);\n border: 0 none;\n .rounded-corners;\n\n cursor: pointer;\n display: inline-block;\n margin: 2px 4px;\n padding: 0.7em;\n\n a {\n color: var(--color-settings-return-font);\n }\n\n a::first-letter {\n text-transform: uppercase;\n }\n }\n\n div.selectable_url {\n pre {\n width: 100%;\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n .preferences_back {\n clear: both;\n }\n\n .engine-tooltip {\n .ltr-left(10em) !important;\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*/\n\n#search {\n padding: 0;\n margin: 0;\n}\n\n#search_header {\n padding-top: 1.5em;\n .ltr-padding-right(2em);\n .ltr-padding-left(@results-offset - 3rem);\n margin: 0;\n background: var(--color-header-background);\n border-bottom: 1px solid var(--color-header-border);\n display: grid;\n column-gap: 1.2rem;\n row-gap: 1rem;\n grid-template-columns: 3rem 1fr;\n grid-template-areas:\n \"logo search\"\n \"spacer categories\";\n}\n\n.category {\n display: inline-block;\n position: relative;\n .ltr-margin-right(1rem);\n padding: 0;\n\n input {\n display: none;\n }\n\n label {\n svg {\n padding-right: 0.2rem;\n }\n\n cursor: pointer;\n padding: 0.2rem 0;\n display: inline-flex;\n text-transform: capitalize;\n font-size: 0.9em;\n border-bottom: 2px solid transparent;\n .disable-user-select;\n\n div.category_name {\n margin: auto 0;\n }\n }\n\n input[type=\"checkbox\"]:checked + label {\n color: var(--color-categories-item-selected-font);\n border-bottom: 2px solid var(--color-categories-item-border-selected);\n }\n}\n\n#search_logo {\n grid-area: logo;\n display: flex;\n align-items: center;\n justify-content: center;\n\n svg {\n flex: 1;\n width: 30px;\n height: 30px;\n margin: 0.5rem 0 auto 0;\n }\n}\n\n.search_categories {\n grid-area: categories;\n\n .help {\n display: none;\n }\n\n &:hover .help {\n display: block;\n position: absolute;\n background: var(--color-base-background);\n padding: 1rem 0.6rem 0.6rem 0;\n z-index: 1000;\n width: 100%;\n left: -0.1rem;\n }\n}\n\n#search_view {\n grid-area: search;\n}\n\n.search_box {\n border-radius: 0.8rem;\n width: @search-width;\n display: inline-flex;\n flex-direction: row;\n white-space: nowrap;\n box-shadow: var(--color-search-shadow);\n}\n\n#clear_search {\n display: block;\n border-collapse: separate;\n box-sizing: border-box;\n width: 1.8rem;\n margin: 0;\n padding: 0.8rem 0.2rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 10000;\n\n &:hover {\n color: var(--color-search-background-hover);\n }\n\n &.empty * {\n display: none;\n }\n}\n\nhtml.no-js #clear_search.hide_if_nojs {\n display: none;\n}\n\n#q,\n#send_search {\n display: block;\n margin: 0;\n padding: 0.8rem;\n background: none repeat scroll 0 0 var(--color-search-background);\n border: none;\n outline: none;\n color: var(--color-search-font);\n font-size: 1.1rem;\n z-index: 2;\n}\n\n#q {\n width: 100%;\n .ltr-padding-left(1rem);\n .ltr-padding-right(0) !important;\n .ltr-rounded-left-corners(0.8rem);\n}\n\n#q::-ms-clear,\n#q::-webkit-search-cancel-button {\n display: none;\n}\n\n#send_search {\n .ltr-rounded-right-corners(0.8rem);\n\n &:hover {\n cursor: pointer;\n background-color: var(--color-search-background-hover);\n color: var(--color-search-background);\n }\n}\n\n.no-js #clear_search,\n.no-js #send_search {\n width: auto !important;\n .ltr-border-left(1px solid var(--color-search-border));\n}\n\n.search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset + 0.6rem);\n display: flex;\n overflow-x: auto;\n overscroll-behavior-inline: contain;\n\n select {\n background-color: inherit;\n\n &:hover,\n &:focus {\n color: var(--color-base-font);\n }\n }\n}\n\n@media screen and (max-width: @tablet) {\n #search_header {\n padding: 1.5em @results-tablet-offset 0 @results-tablet-offset;\n column-gap: @results-tablet-offset;\n }\n\n .search_filters {\n margin-top: 0.6rem;\n .ltr-margin-right(0);\n margin-bottom: 0;\n .ltr-margin-left(@results-tablet-offset + 3rem);\n }\n\n #categories {\n font-size: 90%;\n clear: both;\n\n .checkbox_container {\n margin: auto;\n margin-top: 2px;\n }\n }\n}\n\n@media screen and (max-width: @tablet) and (hover: none) {\n #main_index,\n #main_results {\n #categories_container {\n width: max-content;\n\n .category {\n display: inline-block;\n width: auto;\n }\n }\n\n #categories {\n width: 100%;\n .ltr-text-align-left();\n overflow-x: scroll;\n overflow-y: hidden;\n -webkit-overflow-scrolling: touch;\n }\n }\n}\n\n@media screen and (max-width: @phone) {\n #search_header {\n width: 100%;\n margin: 0;\n padding: 0.1rem 0 0 0;\n column-gap: 0;\n row-gap: 0;\n grid-template-areas:\n \"logo search\"\n \"categories categories\";\n }\n\n .search_logo {\n padding: 0;\n }\n\n .search_box {\n width: 98%;\n display: flex;\n margin: 0 auto;\n }\n\n #q {\n width: 100%;\n flex: 1;\n }\n\n .search_filters {\n margin: 0;\n }\n\n .category {\n display: inline-block;\n width: auto;\n margin: 0;\n\n label {\n padding: 1rem !important;\n margin: 0 !important;\n\n svg {\n display: none;\n }\n }\n }\n\n #search_view:focus-within {\n display: block;\n background-color: var(--color-search-background);\n position: absolute;\n top: 0;\n height: 100%;\n width: 100%;\n z-index: 10000;\n\n .search_box {\n border-bottom: 1px solid var(--color-search-border);\n width: 100%;\n border-radius: 0;\n box-shadow: none;\n\n #send_search {\n .ltr-margin-right(0) !important; // Delete when send_search button is disabled on mobile.\n }\n\n * {\n border: none;\n border-radius: 0;\n box-shadow: none;\n }\n }\n }\n\n #main_results #q:placeholder-shown ~ #send_search {\n .ltr-margin-right(2.6rem);\n transition: margin 0.1s;\n }\n}\n\n@media screen and (max-width: @ultra-small-phone) {\n #search_header {\n grid-template-areas:\n \"search search\"\n \"categories categories\";\n }\n\n #search_logo {\n display: none;\n }\n}\n\n#categories {\n .disable-user-select;\n\n &::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n}\n\n#categories_container {\n position: relative;\n}\n","/*\n--center-page-width overrides the less variable @results-width when the results are centered\nsee the CSS rules for #results in style.less ( grid-template-columns and gap).\n\nIn this file, the --center-page-width values comes from the Oscar theme (Bootstrap 3).\n\nAll rules starts with \".center-aligment-yes #main_results\" to be enabled only\non the /search URL and when the \"center alignment\" preference is enabled.\n*/\n\n@media screen and (min-width: @phone) {\n .center-aligment-yes #main_results {\n --center-page-width: 48rem;\n }\n}\n\n@media screen and (min-width: 62rem) {\n .center-aligment-yes #main_results {\n --center-page-width: 60rem;\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n --center-page-width: 73rem;\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // any change must be reset in @media screen and (min-width: @tablet) { ... }\n .center-aligment-yes #main_results {\n #results {\n grid-template-columns: 60% calc(40% - @results-gap);\n margin-left: 0;\n margin-right: 0;\n }\n\n #urls {\n .ltr-margin-left(3rem);\n }\n\n #sidebar {\n .ltr-margin-right(1rem);\n }\n\n #backToTop {\n .ltr-left(calc(60% + 1rem));\n }\n }\n}\n\n@media screen and (min-width: @tablet) {\n .center-aligment-yes #main_results {\n display: flex;\n flex-direction: column;\n align-items: center;\n\n #search {\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n }\n\n #search_header {\n grid-template-columns: calc(50% - 4.5rem - var(--center-page-width) / 2) 3rem var(--center-page-width);\n grid-template-areas: \"na logo search\" \"na spacer categories\";\n column-gap: 1.2rem; // from search.less\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n }\n\n .search_filters {\n .ltr-margin-left(0.5rem);\n width: var(--center-page-width);\n }\n\n #results {\n // from style.less (when screen width = @tablet, reset layout from tablet)\n .ltr-margin-right(2rem);\n .ltr-margin-left(@results-offset);\n //\n\n &.only_template_images,\n &.image-detail-open {\n // * grid-template-columns and .ltr-margin-left are set in style.less\n // * With .image-detail-open.only_template_images, the width is set in detail.less\n // * #results is going to be centered because of the #main_results rules,\n // align-self aligns the results on the left or right according to the language.\n align-self: flex-start;\n }\n\n &:not(.only_template_images):not(.image-detail-open) {\n // the gap is set in style.less\n .ltr-margin-left(1.5rem);\n grid-template-columns: calc(var(--center-page-width) - @results-gap - @results-sidebar-width) @results-sidebar-width;\n\n #backToTop {\n .ltr-left(calc(50% - @results-sidebar-width - @results-gap + 1rem + var(--center-page-width) / 2));\n }\n }\n\n .result .content {\n max-width: inherit;\n }\n }\n\n // from style.less (when screen width = @tablet, reset layout from tablet)\n #urls {\n .ltr-margin-left(0);\n }\n\n #sidebar {\n .ltr-margin-right(0);\n }\n }\n}\n","/*\n* SearXNG, A privacy-respecting, hackable metasearch engine\n*\n* To convert \"style.less\" to \"style.css\" run: $make styles\n*/\n\n// stylelint-disable no-descending-specificity\n\n@import (inline) \"../../node_modules/normalize.css/normalize.css\";\n@import \"definitions.less\";\n@import \"mixins.less\";\n@import \"code.less\";\n@import \"toolkit.less\";\n@import \"autocomplete.less\";\n@import \"detail.less\";\n@import \"animations.less\";\n@import \"embedded.less\";\n@import \"info.less\";\n@import \"new_issue.less\";\n@import \"stats.less\";\n@import \"result_templates.less\";\n\n// for index.html template\n@import \"index.less\";\n\n// for preferences.html template\n@import \"preferences.less\";\n\n// Search-Field\n@import \"search.less\";\n\n// to center the results\n@import \"style-center.less\";\n\n// ion-icon\n.ion-icon {\n display: inline-block;\n vertical-align: bottom;\n line-height: 1;\n text-decoration: inherit;\n .ltr-transform();\n}\n\n.ion-icon-small {\n width: 1rem;\n height: 1rem;\n .ion-icon;\n}\n\n.ion-icon-big {\n width: 1.5rem;\n height: 1.5rem;\n .ion-icon;\n}\n\n// Main LESS-Code\nhtml {\n font-family: sans-serif;\n font-size: 0.9em;\n .text-size-adjust;\n\n color: var(--color-base-font);\n background-color: var(--color-base-background);\n padding: 0;\n margin: 0;\n}\n\nbody,\nmain {\n padding: 0;\n margin: 0;\n}\n\nbody {\n display: flex;\n flex-direction: column;\n height: 100vh;\n margin: 0;\n}\n\nmain {\n width: 100%;\n margin-bottom: 2rem;\n flex: 1;\n}\n\n.page_with_header {\n margin: 2em auto;\n width: 85em;\n}\n\nfooter {\n clear: both;\n min-height: 4rem;\n padding: 1rem 0;\n width: 100%;\n text-align: center;\n background-color: var(--color-footer-background);\n border-top: 1px solid var(--color-footer-border);\n overflow: hidden;\n\n p {\n font-size: 0.9em;\n }\n}\n\n.page_with_header .logo {\n height: 40px;\n}\n\ninput[type=\"submit\"],\n#results button[type=\"submit\"] {\n padding: 0.7rem;\n display: inline-block;\n background: var(--color-btn-background);\n color: var(--color-btn-font);\n .rounded-corners;\n\n border: 0;\n cursor: pointer;\n}\n\na {\n text-decoration: none;\n color: var(--color-url-font);\n\n &:visited {\n color: var(--color-url-visited-font);\n\n .highlight {\n color: var(--color-url-visited-font);\n }\n }\n}\n\narticle[data-vim-selected] {\n background: var(--color-result-vim-selected);\n .ltr-border-left(0.2rem solid var(--color-result-vim-arrow));\n .ltr-rounded-right-corners(10px);\n}\n\narticle.result-images[data-vim-selected] {\n background: var(--color-result-vim-arrow);\n border: none;\n .rounded-corners;\n\n .image_thumbnail {\n filter: opacity(60%);\n }\n\n span.title,\n span.source {\n color: var(--color-result-image-span-font-selected);\n }\n}\n\narticle[data-vim-selected].category-videos,\narticle[data-vim-selected].category-news,\narticle[data-vim-selected].category-map,\narticle[data-vim-selected].category-music,\narticle[data-vim-selected].category-files,\narticle[data-vim-selected].category-social {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n}\n\n.result {\n margin: @results-margin 0;\n padding: @result-padding;\n .ltr-border-left(0.2rem solid transparent);\n\n h3 {\n font-size: 1.2rem;\n word-wrap: break-word;\n margin: 0.4rem 0 0.4rem 0;\n padding: 0;\n\n a {\n color: var(--color-result-link-font);\n font-weight: normal;\n font-size: 1.1em;\n\n &:visited {\n color: var(--color-result-link-visited-font);\n }\n\n &:focus,\n &:hover {\n text-decoration: underline;\n border: none;\n outline: none;\n }\n }\n }\n\n .cache_link,\n .proxyfied_link {\n font-size: 0.9em !important;\n }\n\n .content,\n .stat {\n font-size: 0.9em;\n margin: 0;\n padding: 0;\n max-width: 54em;\n word-wrap: break-word;\n line-height: 1.24;\n\n .highlight {\n color: var(--color-result-description-highlight-font);\n background: inherit;\n font-weight: bold;\n }\n }\n\n .altlink a {\n font-size: 0.9em;\n margin: 0 10px 0 0;\n .show-content-button;\n }\n\n .codelines {\n .highlight {\n color: inherit;\n background: inherit;\n font-weight: normal;\n }\n }\n\n .url_wrapper {\n display: flex;\n font-size: 1rem;\n color: var(--color-result-url-font);\n flex-wrap: nowrap;\n overflow: hidden;\n flex-direction: row;\n margin: 0;\n padding: 0;\n\n .url_o1 {\n white-space: nowrap;\n flex-shrink: 1;\n }\n\n .url_o1::after {\n content: \" \";\n width: 1ch;\n display: inline-block;\n }\n\n .url_o2 {\n overflow: hidden;\n white-space: nowrap;\n flex-basis: content;\n flex-grow: 0;\n flex-shrink: 1;\n text-align: right;\n\n .url_i2 {\n float: right;\n }\n }\n }\n\n .published_date,\n .result_length,\n .result_author,\n .result_shipping,\n .result_source_country {\n font-size: 0.8em;\n color: var(--color-result-publishdate-font);\n }\n\n .result_price {\n font-size: 1.2em;\n color: var(--color-result-description-highlight-font);\n }\n\n img {\n &.thumbnail {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 20rem;\n height: unset; // remove heigth value that was needed for lazy loading\n }\n\n &.image {\n .ltr-float-left();\n padding-top: 0.6rem;\n .ltr-padding-right(1rem);\n width: 7rem;\n max-height: 7rem;\n object-fit: scale-down;\n object-position: right top;\n }\n }\n\n .break {\n clear: both;\n }\n}\n\n.result-paper {\n .attributes {\n display: table;\n border-spacing: 0.125rem;\n\n div {\n display: table-row;\n\n span {\n font-size: 0.9rem;\n margin-top: 0.25rem;\n display: table-cell;\n\n time {\n font-size: 0.9rem;\n }\n }\n\n span:first-child {\n color: var(--color-base-font);\n min-width: 10rem;\n }\n\n span:nth-child(2) {\n color: var(--color-result-publishdate-font);\n }\n }\n }\n\n .content {\n margin-top: 0.25rem;\n }\n\n .comments {\n font-size: 0.9rem;\n margin: 0.25rem 0 0 0;\n padding: 0;\n word-wrap: break-word;\n line-height: 1.24;\n font-style: italic;\n }\n}\n\n.template_group_images {\n display: flex;\n flex-wrap: wrap;\n}\n\n.template_group_images::after {\n flex-grow: 10;\n content: \"\";\n}\n\n.category-videos,\n.category-news,\n.category-map,\n.category-music,\n.category-files,\n.category-social {\n border: 1px solid var(--color-result-border);\n margin: 0 @results-tablet-offset 1rem @results-tablet-offset !important;\n .rounded-corners;\n}\n\n.category-social .image {\n width: auto !important;\n min-width: 48px;\n min-height: 48px;\n padding: 0 5px 25px 0 !important;\n}\n\n.audio-control audio {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.embedded-content iframe {\n width: 100%;\n padding: 10px 0 0 0;\n}\n\n.result-videos .content {\n overflow: hidden;\n}\n\n.result-videos .embedded-video iframe {\n width: 100%;\n aspect-ratio: 16 / 9;\n padding: 10px 0 0 0;\n}\n\n@supports not (aspect-ratio: 1 / 1) {\n // support older browsers which do not have aspect-ratio\n // https://caniuse.com/?search=aspect-ratio\n .result-videos .embedded-video iframe {\n height: calc(@results-width * 9 / 16);\n }\n}\n\n.engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n color: var(--color-result-engines-font);\n\n span {\n font-size: smaller;\n margin-top: 0;\n margin-bottom: 0;\n .ltr-margin-right(0.5rem);\n .ltr-margin-left(0);\n }\n}\n\n.small_font {\n font-size: 0.8em;\n}\n\n.highlight {\n color: var(--color-result-link-font-highlight);\n background: inherit;\n}\n\n.empty_element {\n font-style: italic;\n}\n\n.result-images {\n flex-grow: 1;\n padding: 0.5rem 0.5rem 3rem 0.5rem;\n margin: 0.25rem;\n border: none !important;\n height: @results-image-row-height;\n\n & > a {\n position: relative;\n }\n\n img {\n margin: 0;\n padding: 0;\n border: none;\n height: 100%;\n width: 100%;\n object-fit: cover;\n vertical-align: bottom;\n background: var(--color-result-image-background);\n }\n\n span.title,\n span.source {\n display: block;\n position: absolute;\n\n width: 100%;\n font-size: 0.9rem;\n color: var(--color-result-image-span-font);\n padding: 0.5rem 0 0 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n span.source {\n padding: 1.8rem 0 0 0;\n font-size: 0.7rem;\n }\n}\n\n.result-map {\n img.image {\n .ltr-float-right() !important;\n height: 100px !important;\n width: auto !important;\n }\n\n table {\n font-size: 0.9em;\n width: auto;\n border-collapse: separate;\n border-spacing: 0 0.35rem;\n\n th {\n font-weight: inherit;\n width: 17rem;\n vertical-align: top;\n .ltr-text-align-left();\n }\n\n td {\n vertical-align: top;\n .ltr-text-align-left();\n }\n }\n}\n\n.hidden {\n display: none !important;\n}\n\n#results {\n margin-top: 1rem;\n .ltr-margin-right(2rem);\n margin-bottom: 0;\n .ltr-margin-left(@results-offset);\n display: grid;\n grid-template-columns: @results-width @results-sidebar-width;\n grid-template-rows: min-content min-content 1fr min-content;\n gap: 0 @results-gap;\n grid-template-areas:\n \"corrections sidebar\"\n \"answers sidebar\"\n \"urls sidebar\"\n \"pagination sidebar\";\n}\n\n#results #sidebar *:first-child,\n#results #urls *:first-child {\n margin-top: 0;\n}\n\n#urls {\n padding: 0;\n grid-area: urls;\n}\n\n#suggestions {\n .wrapper {\n display: flex;\n flex-flow: column;\n justify-content: flex-end;\n\n form {\n display: inline-block;\n flex: 1 1 50%;\n }\n }\n}\n\n#suggestions,\n#infoboxes {\n input {\n padding: 0;\n margin: 3px;\n font-size: 0.9em;\n display: inline-block;\n background: transparent;\n color: var(--color-result-search-url-font);\n cursor: pointer;\n width: calc(100%);\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: left;\n }\n\n input[type=\"submit\"],\n .infobox .url a {\n color: var(--color-result-link-font);\n text-decoration: none;\n font-size: 0.9rem;\n\n &:hover {\n text-decoration: underline;\n }\n }\n}\n\n#corrections {\n grid-area: corrections;\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1em 0;\n\n h4,\n input[type=\"submit\"] {\n display: inline-block;\n padding: 0.5rem;\n margin: 0.5rem;\n }\n\n input[type=\"submit\"] {\n font-size: 0.8rem;\n .rounded-corners-tiny;\n }\n}\n\n#suggestions .title,\n#search_url .title,\n#apis .title {\n margin: 2em 0 0.5em 0;\n color: var(--color-base-font);\n}\n\n#answers {\n grid-area: answers;\n background: var(--color-answer-background);\n padding: @result-padding;\n margin: 1rem 0;\n margin-top: 0;\n color: var(--color-answer-font);\n .rounded-corners;\n\n h4 {\n display: none;\n }\n\n span {\n overflow-wrap: anywhere;\n }\n}\n\n#infoboxes {\n form {\n min-width: 210px;\n }\n}\n\n#sidebar {\n grid-area: sidebar;\n word-wrap: break-word;\n color: var(--color-sidebar-font);\n\n .infobox {\n margin: 10px 0 10px;\n border: 1px solid var(--color-sidebar-border);\n padding: 1rem;\n font-size: 0.9em;\n .rounded-corners;\n\n h2 {\n margin: 0 0 0.5em 0;\n }\n\n img {\n max-width: 100%;\n max-height: 12em;\n display: block;\n margin: 0 auto;\n padding: 0;\n }\n\n dt {\n font-weight: bold;\n }\n\n .attributes {\n dl {\n margin: 0.5em 0;\n }\n\n dt {\n display: inline;\n margin-top: 0.5em;\n .ltr-margin-right(0.25em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n padding: 0;\n }\n\n dd {\n display: inline;\n margin: 0.5em 0;\n padding: 0;\n }\n }\n\n input {\n font-size: 1em;\n }\n\n br {\n clear: both;\n }\n\n .attributes,\n .urls {\n clear: both;\n }\n }\n}\n\n#search_url {\n margin-top: 8px;\n\n div.selectable_url {\n pre {\n width: 200em;\n }\n }\n}\n\n#links_on_top {\n position: absolute;\n .ltr-right(1.8rem);\n .ltr-text-align-right();\n top: 2.2rem;\n padding: 0;\n border: 0;\n display: flex;\n align-items: center;\n font-size: 1em;\n color: var(--color-search-font);\n\n a {\n display: flex;\n align-items: center;\n margin-left: 1em;\n\n svg {\n font-size: 1.2em;\n .ltr-margin-right(0.125em);\n }\n }\n\n a,\n a:link *,\n a:hover *,\n a:visited *,\n a:active * {\n color: var(--color-search-font);\n }\n}\n\n#pagination {\n grid-area: pagination;\n\n br {\n clear: both;\n }\n}\n\n.numbered_pagination {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n overflow: hidden;\n}\n\n.page_number {\n background: transparent !important;\n color: var(--color-result-link-font) !important;\n text-decoration: underline;\n}\n\n.page_number_current {\n background: transparent;\n color: var(--color-result-link-visited-font);\n border: none;\n}\n\n#apis {\n margin-top: 8px;\n clear: both;\n}\n\n#backToTop {\n border: 1px solid var(--color-backtotop-border);\n margin: 0;\n padding: 0;\n font-size: 1em;\n background: var(--color-backtotop-background);\n position: fixed;\n bottom: 8rem;\n .ltr-left(@results-width + @results-offset + (0.5 * @results-gap - 1.2em));\n transition: opacity 0.5s;\n opacity: 0;\n .rounded-corners;\n\n a {\n display: block;\n margin: 0;\n padding: 0.7em;\n }\n\n a,\n a:visited,\n a:hover,\n a:active {\n color: var(--color-backtotop-font);\n }\n}\n\n#results.scrolling #backToTop {\n opacity: 1;\n}\n\n/*\n tablet layout\n*/\n\n.results-tablet() {\n #links_on_top {\n span {\n display: none;\n }\n }\n\n .page_with_header {\n margin: 2rem 0.5rem;\n width: auto;\n }\n\n #infoboxes {\n position: inherit;\n max-width: inherit;\n\n .infobox {\n clear: both;\n\n img {\n .ltr-float-left();\n max-width: 10em;\n margin-top: 0.5em;\n .ltr-margin-right(0.5em);\n margin-bottom: 0.5em;\n .ltr-margin-left(0);\n }\n }\n }\n\n #sidebar {\n margin: 0 @results-tablet-offset @results-margin @results-tablet-offset;\n padding: 0;\n float: none;\n border: none;\n width: auto;\n\n input {\n border: 0;\n }\n }\n\n #apis {\n display: none;\n }\n\n #search_url {\n display: none;\n }\n\n .result {\n .thumbnail {\n max-width: 98%;\n }\n\n .url {\n span.url {\n display: block;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n width: 100%;\n }\n }\n\n .engines {\n .ltr-float-right();\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n padding: 0 0 3px 0;\n }\n }\n\n .result-images {\n border-bottom: none !important;\n }\n\n .image_result {\n max-width: 98%;\n\n img {\n max-width: 98%;\n }\n }\n\n #backToTop {\n display: none;\n }\n\n #pagination {\n margin: 2rem 0 0 0 !important;\n }\n\n #main_results div#results {\n margin: 1rem auto 0 auto;\n justify-content: center;\n display: grid;\n grid-template-columns: @results-width;\n grid-template-rows: min-content min-content min-content 1fr min-content min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n }\n}\n\n@media screen and (max-width: calc(@tablet - 0.5px)) {\n #links_on_top {\n span {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: 52rem) {\n body.results_endpoint {\n #links_on_top {\n .link_on_top_about,\n .link_on_top_donate {\n display: none;\n }\n }\n }\n}\n\n@media screen and (min-width: @phone) and (max-width: @tablet) {\n // when .center-aligment-yes, see style-center.less\n // the media query includes \"min-width: @phone\"\n // because the phone layout includes the tablet layout unconditionally.\n .center-aligment-no {\n .results-tablet();\n }\n}\n\n/* Misc */\n\n#main_results div#results.only_template_images {\n margin: 1rem @results-tablet-offset 0 @results-tablet-offset;\n display: grid;\n grid-template-columns: 100%;\n grid-template-rows: min-content min-content min-content 1fr min-content;\n gap: 0;\n grid-template-areas:\n \"corrections\"\n \"answers\"\n \"sidebar\"\n \"urls\"\n \"pagination\";\n\n #sidebar {\n display: none;\n }\n\n #urls {\n margin: 0;\n display: flex;\n flex-wrap: wrap;\n }\n\n #urls::after {\n flex-grow: 10;\n content: \"\";\n }\n\n #backToTop {\n .ltr-left(auto);\n .ltr-right(1rem);\n }\n\n #pagination {\n .ltr-margin-right(4rem);\n }\n}\n\n/*\n phone layout\n*/\n\n@media screen and (max-width: @phone) {\n // based on the tablet layout\n .results-tablet();\n\n html {\n background-color: var(--color-base-background-mobile);\n }\n\n #main_results div#results {\n grid-template-columns: 100%;\n margin: 1rem 0 0 0;\n }\n\n #links_on_top {\n top: 0.8rem;\n .ltr-right(0.7rem);\n }\n\n #main_index #links_on_top {\n top: 0.5rem;\n .ltr-right(0.5rem);\n }\n\n #results {\n margin: 0;\n padding: 0;\n }\n\n #pagination {\n margin: 2rem 1rem 0 1rem !important;\n }\n\n article[data-vim-selected] {\n border: 1px solid var(--color-result-vim-arrow);\n .rounded-corners;\n }\n\n .result {\n background: var(--color-result-background);\n margin: 1rem 0;\n }\n\n .result-images {\n margin: 0;\n height: @results-image-row-height-phone;\n background: var(--color-base-background-mobile);\n }\n\n .infobox {\n border: none !important;\n background-color: var(--color-sidebar-background);\n }\n\n .numbered_pagination {\n display: none;\n }\n\n .result-paper {\n .attributes {\n display: block;\n\n div {\n display: block;\n\n span {\n display: inline;\n }\n\n span:first-child {\n font-weight: bold;\n }\n\n span:nth-child(2) {\n .ltr-margin-left(0.5rem);\n }\n }\n }\n }\n}\n\n/*\n small-phone layout\n*/\n\n@media screen and (max-width: @small-phone) {\n .result-videos {\n img.thumbnail {\n float: none !important;\n }\n\n .content {\n overflow: inherit;\n }\n }\n}\n\npre code {\n white-space: pre-wrap;\n}\n"]} \ No newline at end of file diff --git a/searx/static/themes/simple/js/leaflet.js b/searx/static/themes/simple/js/leaflet.js index 047bfe7eb..a98a4116f 100644 --- a/searx/static/themes/simple/js/leaflet.js +++ b/searx/static/themes/simple/js/leaflet.js @@ -1,6 +1,6 @@ /* @preserve - * Leaflet 1.9.3, a JS library for interactive maps. https://leafletjs.com + * Leaflet 1.8.0, a JS library for interactive maps. https://leafletjs.com * (c) 2010-2022 Vladimir Agafonkin, (c) 2010-2011 CloudMade */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).leaflet={})}(this,function(t){"use strict";function l(t){for(var e,i,n=1,o=arguments.length;n=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=_(t);var e=this.min,i=this.max,n=t.min,t=t.max,o=t.x>=e.x&&n.x<=i.x,t=t.y>=e.y&&n.y<=i.y;return o&&t},overlaps:function(t){t=_(t);var e=this.min,i=this.max,n=t.min,t=t.max,o=t.x>e.x&&n.xe.y&&n.y=n.lat&&i.lat<=o.lat&&e.lng>=n.lng&&i.lng<=o.lng},intersects:function(t){t=g(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>=e.lat&&n.lat<=i.lat,t=t.lng>=e.lng&&n.lng<=i.lng;return o&&t},overlaps:function(t){t=g(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>e.lat&&n.late.lng&&n.lng","http://www.w3.org/2000/svg"===(Ft.firstChild&&Ft.firstChild.namespaceURI));function y(t){return 0<=navigator.userAgent.toLowerCase().indexOf(t)}var b={ie:pt,ielt9:mt,edge:n,webkit:ft,android:gt,android23:vt,androidStock:yt,opera:xt,chrome:wt,gecko:bt,safari:Pt,phantom:Lt,opera12:o,win:Tt,ie3d:Mt,webkit3d:zt,gecko3d:_t,any3d:Ct,mobile:Zt,mobileWebkit:St,mobileWebkit3d:Et,msPointer:kt,pointer:Ot,touch:Bt,touchNative:At,mobileOpera:It,mobileGecko:Rt,retina:Nt,passiveEvents:Dt,canvas:jt,svg:Ht,vml:!Ht&&function(){try{var t=document.createElement("div"),e=(t.innerHTML='',t.firstChild);return e.style.behavior="url(#default#VML)",e&&"object"==typeof e.adj}catch(t){return!1}}(),inlineSvg:Ft,mac:0===navigator.platform.indexOf("Mac"),linux:0===navigator.platform.indexOf("Linux")},Wt=b.msPointer?"MSPointerDown":"pointerdown",Ut=b.msPointer?"MSPointerMove":"pointermove",Vt=b.msPointer?"MSPointerUp":"pointerup",qt=b.msPointer?"MSPointerCancel":"pointercancel",Gt={touchstart:Wt,touchmove:Ut,touchend:Vt,touchcancel:qt},Kt={touchstart:function(t,e){e.MSPOINTER_TYPE_TOUCH&&e.pointerType===e.MSPOINTER_TYPE_TOUCH&&O(e);ee(t,e)},touchmove:ee,touchend:ee,touchcancel:ee},Yt={},Xt=!1;function Jt(t,e,i){return"touchstart"!==e||Xt||(document.addEventListener(Wt,$t,!0),document.addEventListener(Ut,Qt,!0),document.addEventListener(Vt,te,!0),document.addEventListener(qt,te,!0),Xt=!0),Kt[e]?(i=Kt[e].bind(this,i),t.addEventListener(Gt[e],i,!1),i):(console.warn("wrong event specified:",e),u)}function $t(t){Yt[t.pointerId]=t}function Qt(t){Yt[t.pointerId]&&(Yt[t.pointerId]=t)}function te(t){delete Yt[t.pointerId]}function ee(t,e){if(e.pointerType!==(e.MSPOINTER_TYPE_MOUSE||"mouse")){for(var i in e.touches=[],Yt)e.touches.push(Yt[i]);e.changedTouches=[e],t(e)}}var ie=200;function ne(t,i){t.addEventListener("dblclick",i);var n,o=0;function e(t){var e;1!==t.detail?n=t.detail:"mouse"===t.pointerType||t.sourceCapabilities&&!t.sourceCapabilities.firesTouchEvents||((e=Ne(t)).some(function(t){return t instanceof HTMLLabelElement&&t.attributes.for})&&!e.some(function(t){return t instanceof HTMLInputElement||t instanceof HTMLSelectElement})||((e=Date.now())-o<=ie?2===++n&&i(function(t){var e,i,n={};for(i in t)e=t[i],n[i]=e&&e.bind?e.bind(t):e;return(t=n).type="dblclick",n.detail=2,n.isTrusted=!1,n._simulated=!0,n}(t)):n=1,o=e))}return t.addEventListener("click",e),{dblclick:i,simDblclick:e}}var oe,se,re,ae,he,le,ue=we(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),ce=we(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),de="webkitTransition"===ce||"OTransition"===ce?ce+"End":"transitionend";function _e(t){return"string"==typeof t?document.getElementById(t):t}function pe(t,e){var i=t.style[e]||t.currentStyle&&t.currentStyle[e];return"auto"===(i=i&&"auto"!==i||!document.defaultView?i:(t=document.defaultView.getComputedStyle(t,null))?t[e]:null)?null:i}function P(t,e,i){t=document.createElement(t);return t.className=e||"",i&&i.appendChild(t),t}function T(t){var e=t.parentNode;e&&e.removeChild(t)}function me(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function fe(t){var e=t.parentNode;e&&e.lastChild!==t&&e.appendChild(t)}function ge(t){var e=t.parentNode;e&&e.firstChild!==t&&e.insertBefore(t,e.firstChild)}function ve(t,e){return void 0!==t.classList?t.classList.contains(e):0<(t=xe(t)).length&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(t)}function M(t,e){var i;if(void 0!==t.classList)for(var n=W(e),o=0,s=n.length;othis.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var i=this.getCenter(),t=this._limitCenter(i,this._zoom,g(t));return i.equals(t)||this.panTo(t,e),this._enforcingBounds=!1,this},panInside:function(t,e){var i=m((e=e||{}).paddingTopLeft||e.padding||[0,0]),n=m(e.paddingBottomRight||e.padding||[0,0]),o=this.project(this.getCenter()),t=this.project(t),s=this.getPixelBounds(),i=_([s.min.add(i),s.max.subtract(n)]),s=i.getSize();return i.contains(t)||(this._enforcingBounds=!0,n=t.subtract(i.getCenter()),i=i.extend(t).getSize().subtract(s),o.x+=n.x<0?-i.x:i.x,o.y+=n.y<0?-i.y:i.y,this.panTo(this.unproject(o),e),this._enforcingBounds=!1),this},invalidateSize:function(t){if(!this._loaded)return this;t=l({animate:!1,pan:!0},!0===t?{animate:!0}:t);var e=this.getSize(),i=(this._sizeChanged=!0,this._lastCenter=null,this.getSize()),n=e.divideBy(2).round(),o=i.divideBy(2).round(),n=n.subtract(o);return n.x||n.y?(t.animate&&t.pan?this.panBy(n):(t.pan&&this._rawPanBy(n),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(a(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){var e,i;return t=this._locateOptions=l({timeout:1e4,watch:!1},t),"geolocation"in navigator?(e=a(this._handleGeolocationResponse,this),i=a(this._handleGeolocationError,this),t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t)):this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var e;this._container._leaflet_id&&(e=t.code,t=t.message||(1===e?"permission denied":2===e?"position unavailable":"timeout"),this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+t+"."}))},_handleGeolocationResponse:function(t){if(this._container._leaflet_id){var e,i,n=new v(t.coords.latitude,t.coords.longitude),o=n.toBounds(2*t.coords.accuracy),s=this._locateOptions,r=(s.setView&&(e=this.getBoundsZoom(o),this.setView(n,s.maxZoom?Math.min(e,s.maxZoom):e)),{latlng:n,bounds:o,timestamp:t.timestamp});for(i in t.coords)"number"==typeof t.coords[i]&&(r[i]=t.coords[i]);this.fire("locationfound",r)}},addHandler:function(t,e){return e&&(e=this[t]=new e(this),this._handlers.push(e),this.options[t]&&e.enable()),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch(t){this._container._leaflet_id=void 0,this._containerId=void 0}for(var t in void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),T(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(r(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload"),this._layers)this._layers[t].remove();for(t in this._panes)T(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,e){e=P("div","leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),e||this._mapPane);return t&&(this._panes[t]=e),e},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds();return new s(this.unproject(t.getBottomLeft()),this.unproject(t.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=g(t),i=m(i||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),t=t.getSouthEast(),i=this.getSize().subtract(i),t=_(this.project(t,n),this.project(r,n)).getSize(),r=b.any3d?this.options.zoomSnap:1,a=i.x/t.x,i=i.y/t.y,t=e?Math.max(a,i):Math.min(a,i),n=this.getScaleZoom(t,n);return r&&(n=Math.round(n/(r/100))*(r/100),n=e?Math.ceil(n/r)*r:Math.floor(n/r)*r),Math.max(o,Math.min(s,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new p(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,e){t=this._getTopLeftPoint(t,e);return new f(t,t.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(void 0===t?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,e){var i=this.options.crs;return e=void 0===e?this._zoom:e,i.scale(t)/i.scale(e)},getScaleZoom:function(t,e){var i=this.options.crs,t=(e=void 0===e?this._zoom:e,i.zoom(t*i.scale(e)));return isNaN(t)?1/0:t},project:function(t,e){return e=void 0===e?this._zoom:e,this.options.crs.latLngToPoint(w(t),e)},unproject:function(t,e){return e=void 0===e?this._zoom:e,this.options.crs.pointToLatLng(m(t),e)},layerPointToLatLng:function(t){t=m(t).add(this.getPixelOrigin());return this.unproject(t)},latLngToLayerPoint:function(t){return this.project(w(t))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(w(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(g(t))},distance:function(t,e){return this.options.crs.distance(w(t),w(e))},containerPointToLayerPoint:function(t){return m(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return m(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){t=this.containerPointToLayerPoint(m(t));return this.layerPointToLatLng(t)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(w(t)))},mouseEventToContainerPoint:function(t){return De(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){t=this._container=_e(t);if(!t)throw new Error("Map container not found.");if(t._leaflet_id)throw new Error("Map container is already initialized.");S(t,"scroll",this._onScroll,this),this._containerId=h(t)},_initLayout:function(){var t=this._container,e=(this._fadeAnimated=this.options.fadeAnimation&&b.any3d,M(t,"leaflet-container"+(b.touch?" leaflet-touch":"")+(b.retina?" leaflet-retina":"")+(b.ielt9?" leaflet-oldie":"")+(b.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":"")),pe(t,"position"));"absolute"!==e&&"relative"!==e&&"fixed"!==e&&"sticky"!==e&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Z(this._mapPane,new p(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(M(t.markerPane,"leaflet-zoom-hide"),M(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,e,i){Z(this._mapPane,new p(0,0));var n=!this._loaded,o=(this._loaded=!0,e=this._limitZoom(e),this.fire("viewprereset"),this._zoom!==e);this._moveStart(o,i)._move(t,e)._moveEnd(o),this.fire("viewreset"),n&&this.fire("load")},_moveStart:function(t,e){return t&&this.fire("zoomstart"),e||this.fire("movestart"),this},_move:function(t,e,i,n){void 0===e&&(e=this._zoom);var o=this._zoom!==e;return this._zoom=e,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),n?i&&i.pinch&&this.fire("zoom",i):((o||i&&i.pinch)&&this.fire("zoom",i),this.fire("move",i)),this},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return r(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){Z(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={};var e=t?k:S;e((this._targets[h(this._container)]=this)._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&e(window,"resize",this._onResize,this),b.any3d&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){r(this._resizeRequest),this._resizeRequest=x(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var i,n=[],o="mouseout"===e||"mouseover"===e,s=t.target||t.srcElement,r=!1;s;){if((i=this._targets[h(s)])&&("click"===e||"preclick"===e)&&this._draggableMoved(i)){r=!0;break}if(i&&i.listens(e,!0)){if(o&&!Fe(s,t))break;if(n.push(i),o)break}if(s===this._container)break;s=s.parentNode}return n=n.length||r||o||!this.listens(e,!0)?n:[this]},_isClickDisabled:function(t){for(;t&&t!==this._container;){if(t._leaflet_disable_click)return!0;t=t.parentNode}},_handleDOMEvent:function(t){var e,i=t.target||t.srcElement;!this._loaded||i._leaflet_disable_events||"click"===t.type&&this._isClickDisabled(i)||("mousedown"===(e=t.type)&&Me(i),this._fireDOMEvent(t,e))},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,i){"click"===t.type&&((a=l({},t)).type="preclick",this._fireDOMEvent(a,a.type,i));var n=this._findEventTargets(t,e);if(i){for(var o=[],s=0;sthis.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),n=this._getCenterOffset(t)._divideBy(1-1/n);if(!0!==i.animate&&!this.getSize().contains(n))return!1;x(function(){this._moveStart(!0,!1)._animateZoom(t,e,!0)},this)}return!0},_animateZoom:function(t,e,i,n){this._mapPane&&(i&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,M(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:e,noUpdate:n}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(a(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&z(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function Ue(t){return new B(t)}var Ve,B=et.extend({options:{position:"topright"},initialize:function(t){c(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),t=t._controlCorners[i];return M(e,"leaflet-control"),-1!==i.indexOf("bottom")?t.insertBefore(e,t.firstChild):t.appendChild(e),this._map.on("unload",this.remove,this),this},remove:function(){return this._map&&(T(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null),this},_refocusOnMap:function(t){this._map&&t&&0",e=document.createElement("div");return e.innerHTML=t,e.firstChild},_addItem:function(t){var e,i=document.createElement("label"),n=this._map.hasLayer(t.layer),n=(t.overlay?((e=document.createElement("input")).type="checkbox",e.className="leaflet-control-layers-selector",e.defaultChecked=n):e=this._createRadioElement("leaflet-base-layers_"+h(this),n),this._layerControlInputs.push(e),e.layerId=h(t.layer),S(e,"click",this._onInputClick,this),document.createElement("span")),o=(n.innerHTML=" "+t.name,document.createElement("span"));return i.appendChild(o),o.appendChild(e),o.appendChild(n),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(i),this._checkDisabledLayers(),i},_onInputClick:function(){var t,e,i=this._layerControlInputs,n=[],o=[];this._handlingClick=!0;for(var s=i.length-1;0<=s;s--)t=i[s],e=this._getLayer(t.layerId).layer,t.checked?n.push(e):t.checked||o.push(e);for(s=0;se.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var t=this._section;S(t,"click",O),this.expand(),setTimeout(function(){k(t,"click",O)})}})),Ge=B.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=P("div",e+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,e+"-in",i,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,e+"-out",i,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,e,i,n,o){i=P("a",i,n);return i.innerHTML=t,i.href="#",i.title=e,i.setAttribute("role","button"),i.setAttribute("aria-label",e),Ie(i),S(i,"click",Re),S(i,"click",o,this),S(i,"click",this._refocusOnMap,this),i},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";z(this._zoomInButton,e),z(this._zoomOutButton,e),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),!this._disabled&&t._zoom!==t.getMinZoom()||(M(this._zoomOutButton,e),this._zoomOutButton.setAttribute("aria-disabled","true")),!this._disabled&&t._zoom!==t.getMaxZoom()||(M(this._zoomInButton,e),this._zoomInButton.setAttribute("aria-disabled","true"))}}),Ke=(A.mergeOptions({zoomControl:!0}),A.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new Ge,this.addControl(this.zoomControl))}),B.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e="leaflet-control-scale",i=P("div",e),n=this.options;return this._addScales(n,e+"-line",i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=P("div",e,i)),t.imperial&&(this._iScale=P("div",e,i))},_update:function(){var t=this._map,e=t.getSize().y/2,t=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(t)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t);this._updateScale(this._mScale,e<1e3?e+" m":e/1e3+" km",e/t)},_updateImperial:function(t){var e,i,t=3.2808399*t;5280'+(b.inlineSvg?' ':"")+"Leaflet"},initialize:function(t){c(this,t),this._attributions={}},onAdd:function(t){for(var e in(t.attributionControl=this)._container=P("div","leaflet-control-attribution"),Ie(this._container),t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return this._update(),t.on("layeradd",this._addAttribution,this),this._container},onRemove:function(t){t.off("layeradd",this._addAttribution,this)},_addAttribution:function(t){t.layer.getAttribution&&(this.addAttribution(t.layer.getAttribution()),t.layer.once("remove",function(){this.removeAttribution(t.layer.getAttribution())},this))},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t&&(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update()),this},removeAttribution:function(t){return t&&this._attributions[t]&&(this._attributions[t]--,this._update()),this},_update:function(){if(this._map){var t,e=[];for(t in this._attributions)this._attributions[t]&&e.push(t);var i=[];this.options.prefix&&i.push(this.options.prefix),e.length&&i.push(e.join(", ")),this._container.innerHTML=i.join(' ')}}}),n=(A.mergeOptions({attributionControl:!0}),A.addInitHook(function(){this.options.attributionControl&&(new Ye).addTo(this)}),B.Layers=qe,B.Zoom=Ge,B.Scale=Ke,B.Attribution=Ye,Ue.layers=function(t,e,i){return new qe(t,e,i)},Ue.zoom=function(t){return new Ge(t)},Ue.scale=function(t){return new Ke(t)},Ue.attribution=function(t){return new Ye(t)},et.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled||(this._enabled=!0,this.addHooks()),this},disable:function(){return this._enabled&&(this._enabled=!1,this.removeHooks()),this},enabled:function(){return!!this._enabled}})),ft=(n.addTo=function(t,e){return t.addHandler(e,this),this},{Events:e}),Xe=b.touch?"touchstart mousedown":"mousedown",Je=it.extend({options:{clickTolerance:3},initialize:function(t,e,i,n){c(this,n),this._element=t,this._dragStartTarget=e||t,this._preventOutline=i},enable:function(){this._enabled||(S(this._dragStartTarget,Xe,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Je._dragging===this&&this.finishDrag(!0),k(this._dragStartTarget,Xe,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){var e,i;this._enabled&&(this._moved=!1,ve(this._element,"leaflet-zoom-anim")||(t.touches&&1!==t.touches.length?Je._dragging===this&&this.finishDrag():Je._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||((Je._dragging=this)._preventOutline&&Me(this._element),Le(),re(),this._moving||(this.fire("down"),i=t.touches?t.touches[0]:t,e=Ce(this._element),this._startPoint=new p(i.clientX,i.clientY),this._startPos=Pe(this._element),this._parentScale=Ze(e),i="mousedown"===t.type,S(document,i?"mousemove":"touchmove",this._onMove,this),S(document,i?"mouseup":"touchend touchcancel",this._onUp,this)))))},_onMove:function(t){var e;this._enabled&&(t.touches&&1e&&(i.push(t[n]),o=n);oe.max.x&&(i|=2),t.ye.max.y&&(i|=8),i}function ni(t,e,i,n){var o=e.x,e=e.y,s=i.x-o,r=i.y-e,a=s*s+r*r;return 0this._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()t.y!=n.y>t.y&&t.x<(n.x-i.x)*(t.y-i.y)/(n.y-i.y)+i.x&&(l=!l);return l||vi.prototype._containsPoint.call(this,t,!0)}});var xi=ui.extend({initialize:function(t,e){c(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,i,n,o=d(t)?t:t.features;if(o){for(e=0,i=o.length;es.x&&(r=i.x+a-s.x+o.x),i.x-r-n.x<(a=0)&&(r=i.x-n.x),i.y+e+o.y>s.y&&(a=i.y+e-s.y+o.y),i.y-a-n.y<0&&(a=i.y-n.y),(r||a)&&(this.options.keepInView&&(this._autopanning=!0),t.fire("autopanstart").panBy([r,a]))))},_getAnchor:function(){return m(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}})),Bi=(A.mergeOptions({closePopupOnClick:!0}),A.include({openPopup:function(t,e,i){return this._initOverlay(Ai,t,e,i).openOn(this),this},closePopup:function(t){return(t=arguments.length?t:this._popup)&&t.close(),this}}),o.include({bindPopup:function(t,e){return this._popup=this._initOverlay(Ai,this._popup,t,e),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t){return this._popup&&(this instanceof ui||(this._popup._source=this),this._popup._prepareOpen(t||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var e;this._popup&&this._map&&(Re(t),e=t.layer||t.target,this._popup._source!==e||e instanceof mi?(this._popup._source=e,this.openPopup(t.latlng)):this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}}),Oi.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(t){Oi.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(t){Oi.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var t=Oi.prototype.getEvents.call(this);return this.options.permanent||(t.preclick=this.close),t},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=P("div",t),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+h(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var e,i=this._map,n=this._container,o=i.latLngToContainerPoint(i.getCenter()),i=i.layerPointToContainerPoint(t),s=this.options.direction,r=n.offsetWidth,a=n.offsetHeight,h=m(this.options.offset),l=this._getAnchor(),i="top"===s?(e=r/2,a):"bottom"===s?(e=r/2,0):(e="center"===s?r/2:"right"===s?0:"left"===s?r:i.xthis.options.maxZoom||nthis.options.maxZoom||void 0!==this.options.minZoom&&oi.max.x)||!e.wrapLat&&(t.yi.max.y))return!1}return!this.options.bounds||(e=this._tileCoordsToBounds(t),g(this.options.bounds).overlaps(e))},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var e=this._map,i=this.getTileSize(),n=t.scaleBy(i),i=n.add(i);return[e.unproject(n,t.z),e.unproject(i,t.z)]},_tileCoordsToBounds:function(t){t=this._tileCoordsToNwSe(t),t=new s(t[0],t[1]);return t=this.options.noWrap?t:this._map.wrapLatLngBounds(t)},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var t=t.split(":"),e=new p(+t[0],+t[1]);return e.z=+t[2],e},_removeTile:function(t){var e=this._tiles[t];e&&(T(e.el),delete this._tiles[t],this.fire("tileunload",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){M(t,"leaflet-tile");var e=this.getTileSize();t.style.width=e.x+"px",t.style.height=e.y+"px",t.onselectstart=u,t.onmousemove=u,b.ielt9&&this.options.opacity<1&&C(t,this.options.opacity)},_addTile:function(t,e){var i=this._getTilePos(t),n=this._tileCoordsToKey(t),o=this.createTile(this._wrapCoords(t),a(this._tileReady,this,t));this._initTile(o),this.createTile.length<2&&x(a(this._tileReady,this,t,null,o)),Z(o,i),this._tiles[n]={el:o,coords:t,current:!0},e.appendChild(o),this.fire("tileloadstart",{tile:o,coords:t})},_tileReady:function(t,e,i){e&&this.fire("tileerror",{error:e,tile:i,coords:t});var n=this._tileCoordsToKey(t);(i=this._tiles[n])&&(i.loaded=+new Date,this._map._fadeAnimated?(C(i.el,0),r(this._fadeFrame),this._fadeFrame=x(this._updateOpacity,this)):(i.active=!0,this._pruneTiles()),e||(M(i.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:i.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),b.ielt9||!this._map._fadeAnimated?x(this._pruneTiles,this):setTimeout(a(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new p(this._wrapX?H(t.x,this._wrapX):t.x,this._wrapY?H(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new f(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});var Ni=Ri.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(t,e){this._url=t,(e=c(this,e)).detectRetina&&b.retina&&0')}}catch(t){}return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),zt={_initContainer:function(){this._container=P("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Hi.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var e=t._container=Ui("shape");M(e,"leaflet-vml-shape "+(this.options.className||"")),e.coordsize="1 1",t._path=Ui("path"),e.appendChild(t._path),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;T(e),t.removeInteractiveTarget(e),delete this._layers[h(t)]},_updateStyle:function(t){var e=t._stroke,i=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(e=e||(t._stroke=Ui("stroke")),o.appendChild(e),e.weight=n.weight+"px",e.color=n.color,e.opacity=n.opacity,n.dashArray?e.dashStyle=d(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):e.dashStyle="",e.endcap=n.lineCap.replace("butt","flat"),e.joinstyle=n.lineJoin):e&&(o.removeChild(e),t._stroke=null),n.fill?(i=i||(t._fill=Ui("fill")),o.appendChild(i),i.color=n.fillColor||n.color,i.opacity=n.fillOpacity):i&&(o.removeChild(i),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),i=Math.round(t._radius),n=Math.round(t._radiusY||i);this._setPath(t,t._empty()?"M0 0":"AL "+e.x+","+e.y+" "+i+","+n+" 0,23592600")},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){fe(t._container)},_bringToBack:function(t){ge(t._container)}},Vi=b.vml?Ui:ct,qi=Hi.extend({_initContainer:function(){this._container=Vi("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=Vi("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){T(this._container),k(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){var t,e,i;this._map._animatingZoom&&this._bounds||(Hi.prototype._update.call(this),e=(t=this._bounds).getSize(),i=this._container,this._svgSize&&this._svgSize.equals(e)||(this._svgSize=e,i.setAttribute("width",e.x),i.setAttribute("height",e.y)),Z(i,t.min),i.setAttribute("viewBox",[t.min.x,t.min.y,e.x,e.y].join(" ")),this.fire("update"))},_initPath:function(t){var e=t._path=Vi("path");t.options.className&&M(e,t.options.className),t.options.interactive&&M(e,"leaflet-interactive"),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){T(t._path),t.removeInteractiveTarget(t._path),delete this._layers[h(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,t=t.options;e&&(t.stroke?(e.setAttribute("stroke",t.color),e.setAttribute("stroke-opacity",t.opacity),e.setAttribute("stroke-width",t.weight),e.setAttribute("stroke-linecap",t.lineCap),e.setAttribute("stroke-linejoin",t.lineJoin),t.dashArray?e.setAttribute("stroke-dasharray",t.dashArray):e.removeAttribute("stroke-dasharray"),t.dashOffset?e.setAttribute("stroke-dashoffset",t.dashOffset):e.removeAttribute("stroke-dashoffset")):e.setAttribute("stroke","none"),t.fill?(e.setAttribute("fill",t.fillColor||t.color),e.setAttribute("fill-opacity",t.fillOpacity),e.setAttribute("fill-rule",t.fillRule||"evenodd")):e.setAttribute("fill","none"))},_updatePoly:function(t,e){this._setPath(t,dt(t._parts,e))},_updateCircle:function(t){var e=t._point,i=Math.max(Math.round(t._radius),1),n="a"+i+","+(Math.max(Math.round(t._radiusY),1)||i)+" 0 1,0 ",e=t._empty()?"M0 0":"M"+(e.x-i)+","+e.y+n+2*i+",0 "+n+2*-i+",0 ";this._setPath(t,e)},_setPath:function(t,e){t._path.setAttribute("d",e)},_bringToFront:function(t){fe(t._path)},_bringToBack:function(t){ge(t._path)}});function Gi(t){return b.svg||b.vml?new qi(t):null}b.vml&&qi.include(zt),A.include({getRenderer:function(t){t=(t=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer)||(this._renderer=this._createRenderer());return this.hasLayer(t)||this.addLayer(t),t},_getPaneRenderer:function(t){var e;return"overlayPane"!==t&&void 0!==t&&(void 0===(e=this._paneRenderers[t])&&(e=this._createRenderer({pane:t}),this._paneRenderers[t]=e),e)},_createRenderer:function(t){return this.options.preferCanvas&&Wi(t)||Gi(t)}});var Ki=yi.extend({initialize:function(t,e){yi.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return[(t=g(t)).getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});qi.create=Vi,qi.pointsToPath=dt,xi.geometryToLayer=wi,xi.coordsToLatLng=Pi,xi.coordsToLatLngs=Li,xi.latLngToCoords=Ti,xi.latLngsToCoords=Mi,xi.getFeature=zi,xi.asFeature=Ci,A.mergeOptions({boxZoom:!0});var _t=n.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){S(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){k(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){T(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),re(),Le(),this._startPoint=this._map.mouseEventToContainerPoint(t),S(document,{contextmenu:Re,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=P("div","leaflet-zoom-box",this._container),M(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var t=new f(this._point,this._startPoint),e=t.getSize();Z(this._box,t.min),this._box.style.width=e.x+"px",this._box.style.height=e.y+"px"},_finish:function(){this._moved&&(T(this._box),z(this._container,"leaflet-crosshair")),ae(),Te(),k(document,{contextmenu:Re,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){1!==t.which&&1!==t.button||(this._finish(),this._moved&&(this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(a(this._resetState,this),0),t=new s(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point)),this._map.fitBounds(t).fire("boxzoomend",{boxZoomBounds:t})))},_onKeyDown:function(t){27===t.keyCode&&(this._finish(),this._clearDeferredResetState(),this._resetState())}}),Ct=(A.addInitHook("addHandler","boxZoom",_t),A.mergeOptions({doubleClickZoom:!0}),n.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom(),n=e.options.zoomDelta,i=t.originalEvent.shiftKey?i-n:i+n;"center"===e.options.doubleClickZoom?e.setZoom(i):e.setZoomAround(t.containerPoint,i)}})),Zt=(A.addInitHook("addHandler","doubleClickZoom",Ct),A.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0}),n.extend({addHooks:function(){var t;this._draggable||(t=this._map,this._draggable=new Je(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))),M(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){z(this._map._container,"leaflet-grab"),z(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t,e=this._map;e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity?(t=g(this._map.options.maxBounds),this._offsetLimit=_(this._map.latLngToContainerPoint(t.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(t.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))):this._offsetLimit=null,e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){var e,i;this._map.options.inertia&&(e=this._lastTime=+new Date,i=this._lastPos=this._draggable._absPos||this._draggable._newPos,this._positions.push(i),this._times.push(e),this._prunePositions(e)),this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;1e.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t))},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,n=(n+e+i)%t-e-i,t=Math.abs(o+i)e.getMaxZoom()&&1=this.min.x&&e.x<=this.max.x&&i.y>=this.min.y&&e.y<=this.max.y},intersects:function(t){t=f(t);var i=this.min,e=this.max,n=t.min,t=t.max,o=t.x>=i.x&&n.x<=e.x,t=t.y>=i.y&&n.y<=e.y;return o&&t},overlaps:function(t){t=f(t);var i=this.min,e=this.max,n=t.min,t=t.max,o=t.x>i.x&&n.xi.y&&n.y=n.lat&&e.lat<=o.lat&&i.lng>=n.lng&&e.lng<=o.lng},intersects:function(t){t=g(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>=i.lat&&n.lat<=e.lat,t=t.lng>=i.lng&&n.lng<=e.lng;return o&&t},overlaps:function(t){t=g(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>i.lat&&n.lati.lng&&n.lng","http://www.w3.org/2000/svg"===(Wt.firstChild&&Wt.firstChild.namespaceURI));function y(t){return 0<=navigator.userAgent.toLowerCase().indexOf(t)}var P={ie:pt,ielt9:mt,edge:n,webkit:ft,android:gt,android23:vt,androidStock:yt,opera:xt,chrome:wt,gecko:Pt,safari:bt,phantom:Lt,opera12:o,win:Tt,ie3d:zt,webkit3d:Mt,gecko3d:_t,any3d:Ct,mobile:Zt,mobileWebkit:St,mobileWebkit3d:kt,msPointer:Et,pointer:Bt,touch:It,touchNative:At,mobileOpera:Ot,mobileGecko:Rt,retina:Nt,passiveEvents:Dt,canvas:jt,svg:Ht,vml:!Ht&&function(){try{var t=document.createElement("div"),i=(t.innerHTML='',t.firstChild);return i.style.behavior="url(#default#VML)",i&&"object"==typeof i.adj}catch(t){return!1}}(),inlineSvg:Wt},Ft=P.msPointer?"MSPointerDown":"pointerdown",Ut=P.msPointer?"MSPointerMove":"pointermove",Vt=P.msPointer?"MSPointerUp":"pointerup",qt=P.msPointer?"MSPointerCancel":"pointercancel",Gt={touchstart:Ft,touchmove:Ut,touchend:Vt,touchcancel:qt},Kt={touchstart:function(t,i){i.MSPOINTER_TYPE_TOUCH&&i.pointerType===i.MSPOINTER_TYPE_TOUCH&&B(i);ii(t,i)},touchmove:ii,touchend:ii,touchcancel:ii},Yt={},Xt=!1;function Jt(t,i,e){return"touchstart"!==i||Xt||(document.addEventListener(Ft,$t,!0),document.addEventListener(Ut,Qt,!0),document.addEventListener(Vt,ti,!0),document.addEventListener(qt,ti,!0),Xt=!0),Kt[i]?(e=Kt[i].bind(this,e),t.addEventListener(Gt[i],e,!1),e):(console.warn("wrong event specified:",i),L.Util.falseFn)}function $t(t){Yt[t.pointerId]=t}function Qt(t){Yt[t.pointerId]&&(Yt[t.pointerId]=t)}function ti(t){delete Yt[t.pointerId]}function ii(t,i){if(i.pointerType!==(i.MSPOINTER_TYPE_MOUSE||"mouse")){for(var e in i.touches=[],Yt)i.touches.push(Yt[e]);i.changedTouches=[i],t(i)}}var ei=200;function ni(t,e){t.addEventListener("dblclick",e);var n,o=0;function i(t){var i;1!==t.detail?n=t.detail:"mouse"===t.pointerType||t.sourceCapabilities&&!t.sourceCapabilities.firesTouchEvents||((i=Date.now())-o<=ei?2===++n&&e(function(t){var i,e,n={};for(e in t)i=t[e],n[e]=i&&i.bind?i.bind(t):i;return(t=n).type="dblclick",n.detail=2,n.isTrusted=!1,n._simulated=!0,n}(t)):n=1,o=i)}return t.addEventListener("click",i),{dblclick:e,simDblclick:i}}var oi,si,ri,ai,hi,li,ui=wi(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),ci=wi(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),di="webkitTransition"===ci||"OTransition"===ci?ci+"End":"transitionend";function _i(t){return"string"==typeof t?document.getElementById(t):t}function pi(t,i){var e=t.style[i]||t.currentStyle&&t.currentStyle[i];return"auto"===(e=e&&"auto"!==e||!document.defaultView?e:(t=document.defaultView.getComputedStyle(t,null))?t[i]:null)?null:e}function b(t,i,e){t=document.createElement(t);return t.className=i||"",e&&e.appendChild(t),t}function T(t){var i=t.parentNode;i&&i.removeChild(t)}function mi(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function fi(t){var i=t.parentNode;i&&i.lastChild!==t&&i.appendChild(t)}function gi(t){var i=t.parentNode;i&&i.firstChild!==t&&i.insertBefore(t,i.firstChild)}function vi(t,i){if(void 0!==t.classList)return t.classList.contains(i);t=xi(t);return 0this.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,i){this._enforcingBounds=!0;var e=this.getCenter(),t=this._limitCenter(e,this._zoom,g(t));return e.equals(t)||this.panTo(t,i),this._enforcingBounds=!1,this},panInside:function(t,i){var e=_((i=i||{}).paddingTopLeft||i.padding||[0,0]),n=_(i.paddingBottomRight||i.padding||[0,0]),o=this.project(this.getCenter()),t=this.project(t),s=this.getPixelBounds(),e=f([s.min.add(e),s.max.subtract(n)]),s=e.getSize();return e.contains(t)||(this._enforcingBounds=!0,n=t.subtract(e.getCenter()),e=e.extend(t).getSize().subtract(s),o.x+=n.x<0?-e.x:e.x,o.y+=n.y<0?-e.y:e.y,this.panTo(this.unproject(o),i),this._enforcingBounds=!1),this},invalidateSize:function(t){if(!this._loaded)return this;t=l({animate:!1,pan:!0},!0===t?{animate:!0}:t);var i=this.getSize(),e=(this._sizeChanged=!0,this._lastCenter=null,this.getSize()),n=i.divideBy(2).round(),o=e.divideBy(2).round(),n=n.subtract(o);return n.x||n.y?(t.animate&&t.pan?this.panBy(n):(t.pan&&this._rawPanBy(n),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(a(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:i,newSize:e})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){if(t=this._locateOptions=l({timeout:1e4,watch:!1},t),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var i=a(this._handleGeolocationResponse,this),e=a(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(i,e,t):navigator.geolocation.getCurrentPosition(i,e,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var i;this._container._leaflet_id&&(i=t.code,t=t.message||(1===i?"permission denied":2===i?"position unavailable":"timeout"),this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:i,message:"Geolocation error: "+t+"."}))},_handleGeolocationResponse:function(t){if(this._container._leaflet_id){var i,e,n=new v(t.coords.latitude,t.coords.longitude),o=n.toBounds(2*t.coords.accuracy),s=this._locateOptions,r=(s.setView&&(i=this.getBoundsZoom(o),this.setView(n,s.maxZoom?Math.min(i,s.maxZoom):i)),{latlng:n,bounds:o,timestamp:t.timestamp});for(e in t.coords)"number"==typeof t.coords[e]&&(r[e]=t.coords[e]);this.fire("locationfound",r)}},addHandler:function(t,i){if(!i)return this;i=this[t]=new i(this);return this._handlers.push(i),this.options[t]&&i.enable(),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch(t){this._container._leaflet_id=void 0,this._containerId=void 0}for(var t in void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),T(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(r(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload"),this._layers)this._layers[t].remove();for(t in this._panes)T(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,i){i=b("div","leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),i||this._mapPane);return t&&(this._panes[t]=i),i},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds();return new s(this.unproject(t.getBottomLeft()),this.unproject(t.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,i,e){t=g(t),e=_(e||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),t=t.getSouthEast(),e=this.getSize().subtract(e),t=f(this.project(t,n),this.project(r,n)).getSize(),r=P.any3d?this.options.zoomSnap:1,a=e.x/t.x,e=e.y/t.y,t=i?Math.max(a,e):Math.min(a,e),n=this.getScaleZoom(t,n);return r&&(n=Math.round(n/(r/100))*(r/100),n=i?Math.ceil(n/r)*r:Math.floor(n/r)*r),Math.max(o,Math.min(s,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new p(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,i){t=this._getTopLeftPoint(t,i);return new m(t,t.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(void 0===t?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,i){var e=this.options.crs;return i=void 0===i?this._zoom:i,e.scale(t)/e.scale(i)},getScaleZoom:function(t,i){var e=this.options.crs,t=(i=void 0===i?this._zoom:i,e.zoom(t*e.scale(i)));return isNaN(t)?1/0:t},project:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.latLngToPoint(w(t),i)},unproject:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.pointToLatLng(_(t),i)},layerPointToLatLng:function(t){t=_(t).add(this.getPixelOrigin());return this.unproject(t)},latLngToLayerPoint:function(t){return this.project(w(t))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(w(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(g(t))},distance:function(t,i){return this.options.crs.distance(w(t),w(i))},containerPointToLayerPoint:function(t){return _(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return _(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){t=this.containerPointToLayerPoint(_(t));return this.layerPointToLatLng(t)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(w(t)))},mouseEventToContainerPoint:function(t){return Ni(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){t=this._container=_i(t);if(!t)throw new Error("Map container not found.");if(t._leaflet_id)throw new Error("Map container is already initialized.");S(t,"scroll",this._onScroll,this),this._containerId=h(t)},_initLayout:function(){var t=this._container,i=(this._fadeAnimated=this.options.fadeAnimation&&P.any3d,z(t,"leaflet-container"+(P.touch?" leaflet-touch":"")+(P.retina?" leaflet-retina":"")+(P.ielt9?" leaflet-oldie":"")+(P.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":"")),pi(t,"position"));"absolute"!==i&&"relative"!==i&&"fixed"!==i&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Z(this._mapPane,new p(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(z(t.markerPane,"leaflet-zoom-hide"),z(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,i){Z(this._mapPane,new p(0,0));var e=!this._loaded,n=(this._loaded=!0,i=this._limitZoom(i),this.fire("viewprereset"),this._zoom!==i);this._moveStart(n,!1)._move(t,i)._moveEnd(n),this.fire("viewreset"),e&&this.fire("load")},_moveStart:function(t,i){return t&&this.fire("zoomstart"),i||this.fire("movestart"),this},_move:function(t,i,e,n){void 0===i&&(i=this._zoom);var o=this._zoom!==i;return this._zoom=i,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),n?e&&e.pinch&&this.fire("zoom",e):((o||e&&e.pinch)&&this.fire("zoom",e),this.fire("move",e)),this},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return r(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){Z(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={};var i=t?E:S;i((this._targets[h(this._container)]=this)._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&i(window,"resize",this._onResize,this),P.any3d&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){r(this._resizeRequest),this._resizeRequest=x(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,i){for(var e,n=[],o="mouseout"===i||"mouseover"===i,s=t.target||t.srcElement,r=!1;s;){if((e=this._targets[h(s)])&&("click"===i||"preclick"===i)&&this._draggableMoved(e)){r=!0;break}if(e&&e.listens(i,!0)){if(o&&!Hi(s,t))break;if(n.push(e),o)break}if(s===this._container)break;s=s.parentNode}return n=n.length||r||o||!this.listens(i,!0)?n:[this]},_isClickDisabled:function(t){for(;t!==this._container;){if(t._leaflet_disable_click)return!0;t=t.parentNode}},_handleDOMEvent:function(t){var i,e=t.target||t.srcElement;!this._loaded||e._leaflet_disable_events||"click"===t.type&&this._isClickDisabled(e)||("mousedown"===(i=t.type)&&zi(e),this._fireDOMEvent(t,i))},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,i,e){"click"===t.type&&((a=l({},t)).type="preclick",this._fireDOMEvent(a,a.type,e));var n=this._findEventTargets(t,i);if(e){for(var o=[],s=0;sthis.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(i),n=this._getCenterOffset(t)._divideBy(1-1/n);return!(!0!==e.animate&&!this.getSize().contains(n))&&(x(function(){this._moveStart(!0,!1)._animateZoom(t,i,!0)},this),!0)},_animateZoom:function(t,i,e,n){this._mapPane&&(e&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=i,z(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:i,noUpdate:n}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(a(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&M(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function Fi(t){return new I(t)}var Ui,I=it.extend({options:{position:"topright"},initialize:function(t){c(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var i=this._map;return i&&i.removeControl(this),this.options.position=t,i&&i.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var i=this._container=this.onAdd(t),e=this.getPosition(),t=t._controlCorners[e];return z(i,"leaflet-control"),-1!==e.indexOf("bottom")?t.insertBefore(i,t.firstChild):t.appendChild(i),this._map.on("unload",this.remove,this),this},remove:function(){return this._map&&(T(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null),this},_refocusOnMap:function(t){this._map&&t&&0",i=document.createElement("div");return i.innerHTML=t,i.firstChild},_addItem:function(t){var i,e=document.createElement("label"),n=this._map.hasLayer(t.layer),n=(t.overlay?((i=document.createElement("input")).type="checkbox",i.className="leaflet-control-layers-selector",i.defaultChecked=n):i=this._createRadioElement("leaflet-base-layers_"+h(this),n),this._layerControlInputs.push(i),i.layerId=h(t.layer),S(i,"click",this._onInputClick,this),document.createElement("span")),o=(n.innerHTML=" "+t.name,document.createElement("span"));return e.appendChild(o),o.appendChild(i),o.appendChild(n),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(e),this._checkDisabledLayers(),e},_onInputClick:function(){var t,i,e=this._layerControlInputs,n=[],o=[];this._handlingClick=!0;for(var s=e.length-1;0<=s;s--)t=e[s],i=this._getLayer(t.layerId).layer,t.checked?n.push(i):t.checked||o.push(i);for(s=0;si.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this}})),qi=I.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(t){var i="leaflet-control-zoom",e=b("div",i+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,i+"-in",e,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,i+"-out",e,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),e},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,i,e,n,o){e=b("a",e,n);return e.innerHTML=t,e.href="#",e.title=i,e.setAttribute("role","button"),e.setAttribute("aria-label",i),Oi(e),S(e,"click",Ri),S(e,"click",o,this),S(e,"click",this._refocusOnMap,this),e},_updateDisabled:function(){var t=this._map,i="leaflet-disabled";M(this._zoomInButton,i),M(this._zoomOutButton,i),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),!this._disabled&&t._zoom!==t.getMinZoom()||(z(this._zoomOutButton,i),this._zoomOutButton.setAttribute("aria-disabled","true")),!this._disabled&&t._zoom!==t.getMaxZoom()||(z(this._zoomInButton,i),this._zoomInButton.setAttribute("aria-disabled","true"))}}),Gi=(A.mergeOptions({zoomControl:!0}),A.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new qi,this.addControl(this.zoomControl))}),I.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var i="leaflet-control-scale",e=b("div",i),n=this.options;return this._addScales(n,i+"-line",e),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),e},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,i,e){t.metric&&(this._mScale=b("div",i,e)),t.imperial&&(this._iScale=b("div",i,e))},_update:function(){var t=this._map,i=t.getSize().y/2,t=t.distance(t.containerPointToLatLng([0,i]),t.containerPointToLatLng([this.options.maxWidth,i]));this._updateScales(t)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var i=this._getRoundNum(t);this._updateScale(this._mScale,i<1e3?i+" m":i/1e3+" km",i/t)},_updateImperial:function(t){var i,e,t=3.2808399*t;5280'+(P.inlineSvg?' ':"")+"Leaflet"},initialize:function(t){c(this,t),this._attributions={}},onAdd:function(t){for(var i in(t.attributionControl=this)._container=b("div","leaflet-control-attribution"),Oi(this._container),t._layers)t._layers[i].getAttribution&&this.addAttribution(t._layers[i].getAttribution());return this._update(),t.on("layeradd",this._addAttribution,this),this._container},onRemove:function(t){t.off("layeradd",this._addAttribution,this)},_addAttribution:function(t){t.layer.getAttribution&&(this.addAttribution(t.layer.getAttribution()),t.layer.once("remove",function(){this.removeAttribution(t.layer.getAttribution())},this))},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t&&(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update()),this},removeAttribution:function(t){return t&&this._attributions[t]&&(this._attributions[t]--,this._update()),this},_update:function(){if(this._map){var t,i=[];for(t in this._attributions)this._attributions[t]&&i.push(t);var e=[];this.options.prefix&&e.push(this.options.prefix),i.length&&e.push(i.join(", ")),this._container.innerHTML=e.join(' ')}}}),n=(A.mergeOptions({attributionControl:!0}),A.addInitHook(function(){this.options.attributionControl&&(new Ki).addTo(this)}),I.Layers=Vi,I.Zoom=qi,I.Scale=Gi,I.Attribution=Ki,Fi.layers=function(t,i,e){return new Vi(t,i,e)},Fi.zoom=function(t){return new qi(t)},Fi.scale=function(t){return new Gi(t)},Fi.attribution=function(t){return new Ki(t)},it.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled||(this._enabled=!0,this.addHooks()),this},disable:function(){return this._enabled&&(this._enabled=!1,this.removeHooks()),this},enabled:function(){return!!this._enabled}})),ft=(n.addTo=function(t,i){return t.addHandler(i,this),this},{Events:i}),Yi=P.touch?"touchstart mousedown":"mousedown",Xi=et.extend({options:{clickTolerance:3},initialize:function(t,i,e,n){c(this,n),this._element=t,this._dragStartTarget=i||t,this._preventOutline=e},enable:function(){this._enabled||(S(this._dragStartTarget,Yi,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Xi._dragging===this&&this.finishDrag(!0),E(this._dragStartTarget,Yi,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){var i,e;this._enabled&&(this._moved=!1,vi(this._element,"leaflet-zoom-anim")||(t.touches&&1!==t.touches.length?Xi._dragging===this&&this.finishDrag():Xi._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||((Xi._dragging=this)._preventOutline&&zi(this._element),Li(),ri(),this._moving||(this.fire("down"),e=t.touches?t.touches[0]:t,i=Ci(this._element),this._startPoint=new p(e.clientX,e.clientY),this._startPos=bi(this._element),this._parentScale=Zi(i),e="mousedown"===t.type,S(document,e?"mousemove":"touchmove",this._onMove,this),S(document,e?"mouseup":"touchend touchcancel",this._onUp,this)))))},_onMove:function(t){var i;this._enabled&&(t.touches&&1i&&(e.push(t[n]),o=n);oi.max.x&&(e|=2),t.yi.max.y&&(e|=8),e}function ee(t,i,e,n){var o=i.x,i=i.y,s=e.x-o,r=e.y-i,a=s*s+r*r;return 0this._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()t.y!=n.y>t.y&&t.x<(n.x-e.x)*(t.y-e.y)/(n.y-e.y)+e.x&&(l=!l);return l||fe.prototype._containsPoint.call(this,t,!0)}});var ve=he.extend({initialize:function(t,i){c(this,i),this._layers={},t&&this.addData(t)},addData:function(t){var i,e,n,o=d(t)?t:t.features;if(o){for(i=0,e=o.length;ir.x&&(a=n.x+h-r.x+s.x),n.x-a-o.x<(h=0)&&(a=n.x-o.x),n.y+e+s.y>r.y&&(h=n.y+e-r.y+s.y),n.y-h-o.y<0&&(h=n.y-o.y),(a||h)&&i.fire("autopanstart").panBy([a,h],{animate:t&&"moveend"===t.type}))},_getAnchor:function(){return _(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}})),Ee=(A.mergeOptions({closePopupOnClick:!0}),A.include({openPopup:function(t,i,e){return this._initOverlay(ke,t,i,e).openOn(this),this},closePopup:function(t){return(t=arguments.length?t:this._popup)&&t.close(),this}}),o.include({bindPopup:function(t,i){return this._popup=this._initOverlay(ke,this._popup,t,i),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t){return this._popup&&this._popup._prepareOpen(t)&&this._popup.openOn(this._map),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var i;this._popup&&this._map&&(Ri(t),i=t.layer||t.target,this._popup._source!==i||i instanceof _e?(this._popup._source=i,this.openPopup(t.latlng)):this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}}),O.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(t){O.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(t){O.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var t=O.prototype.getEvents.call(this);return this.options.permanent||(t.preclick=this.close),t},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=b("div",t)},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var i,e=this._map,n=this._container,o=e.latLngToContainerPoint(e.getCenter()),e=e.layerPointToContainerPoint(t),s=this.options.direction,r=n.offsetWidth,a=n.offsetHeight,h=_(this.options.offset),l=this._getAnchor(),e="top"===s?(i=r/2,a):"bottom"===s?(i=r/2,0):(i="center"===s?r/2:"right"===s?0:"left"===s?r:e.xthis.options.maxZoom||nthis.options.maxZoom||void 0!==this.options.minZoom&&oe.max.x)||!i.wrapLat&&(t.ye.max.y))return!1}if(!this.options.bounds)return!0;i=this._tileCoordsToBounds(t);return g(this.options.bounds).overlaps(i)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var i=this._map,e=this.getTileSize(),n=t.scaleBy(e),e=n.add(e);return[i.unproject(n,t.z),i.unproject(e,t.z)]},_tileCoordsToBounds:function(t){t=this._tileCoordsToNwSe(t),t=new s(t[0],t[1]);return t=this.options.noWrap?t:this._map.wrapLatLngBounds(t)},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var t=t.split(":"),i=new p(+t[0],+t[1]);return i.z=+t[2],i},_removeTile:function(t){var i=this._tiles[t];i&&(T(i.el),delete this._tiles[t],this.fire("tileunload",{tile:i.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){z(t,"leaflet-tile");var i=this.getTileSize();t.style.width=i.x+"px",t.style.height=i.y+"px",t.onselectstart=u,t.onmousemove=u,P.ielt9&&this.options.opacity<1&&C(t,this.options.opacity)},_addTile:function(t,i){var e=this._getTilePos(t),n=this._tileCoordsToKey(t),o=this.createTile(this._wrapCoords(t),a(this._tileReady,this,t));this._initTile(o),this.createTile.length<2&&x(a(this._tileReady,this,t,null,o)),Z(o,e),this._tiles[n]={el:o,coords:t,current:!0},i.appendChild(o),this.fire("tileloadstart",{tile:o,coords:t})},_tileReady:function(t,i,e){i&&this.fire("tileerror",{error:i,tile:e,coords:t});var n=this._tileCoordsToKey(t);(e=this._tiles[n])&&(e.loaded=+new Date,this._map._fadeAnimated?(C(e.el,0),r(this._fadeFrame),this._fadeFrame=x(this._updateOpacity,this)):(e.active=!0,this._pruneTiles()),i||(z(e.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:e.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),P.ielt9||!this._map._fadeAnimated?x(this._pruneTiles,this):setTimeout(a(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var i=new p(this._wrapX?H(t.x,this._wrapX):t.x,this._wrapY?H(t.y,this._wrapY):t.y);return i.z=t.z,i},_pxBoundsToTileRange:function(t){var i=this.getTileSize();return new m(t.min.unscaleBy(i).floor(),t.max.unscaleBy(i).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});var Ie=Ae.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(t,i){this._url=t,(i=c(this,i)).detectRetina&&P.retina&&0')}}catch(t){}return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),Mt={_initContainer:function(){this._container=b("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Ne.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var i=t._container=He("shape");z(i,"leaflet-vml-shape "+(this.options.className||"")),i.coordsize="1 1",t._path=He("path"),i.appendChild(t._path),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){var i=t._container;this._container.appendChild(i),t.options.interactive&&t.addInteractiveTarget(i)},_removePath:function(t){var i=t._container;T(i),t.removeInteractiveTarget(i),delete this._layers[h(t)]},_updateStyle:function(t){var i=t._stroke,e=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(i=i||(t._stroke=He("stroke")),o.appendChild(i),i.weight=n.weight+"px",i.color=n.color,i.opacity=n.opacity,n.dashArray?i.dashStyle=d(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):i.dashStyle="",i.endcap=n.lineCap.replace("butt","flat"),i.joinstyle=n.lineJoin):i&&(o.removeChild(i),t._stroke=null),n.fill?(e=e||(t._fill=He("fill")),o.appendChild(e),e.color=n.fillColor||n.color,e.opacity=n.fillOpacity):e&&(o.removeChild(e),t._fill=null)},_updateCircle:function(t){var i=t._point.round(),e=Math.round(t._radius),n=Math.round(t._radiusY||e);this._setPath(t,t._empty()?"M0 0":"AL "+i.x+","+i.y+" "+e+","+n+" 0,23592600")},_setPath:function(t,i){t._path.v=i},_bringToFront:function(t){fi(t._container)},_bringToBack:function(t){gi(t._container)}},We=P.vml?He:ct,Fe=Ne.extend({_initContainer:function(){this._container=We("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=We("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){T(this._container),E(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){var t,i,e;this._map._animatingZoom&&this._bounds||(Ne.prototype._update.call(this),i=(t=this._bounds).getSize(),e=this._container,this._svgSize&&this._svgSize.equals(i)||(this._svgSize=i,e.setAttribute("width",i.x),e.setAttribute("height",i.y)),Z(e,t.min),e.setAttribute("viewBox",[t.min.x,t.min.y,i.x,i.y].join(" ")),this.fire("update"))},_initPath:function(t){var i=t._path=We("path");t.options.className&&z(i,t.options.className),t.options.interactive&&z(i,"leaflet-interactive"),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){T(t._path),t.removeInteractiveTarget(t._path),delete this._layers[h(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var i=t._path,t=t.options;i&&(t.stroke?(i.setAttribute("stroke",t.color),i.setAttribute("stroke-opacity",t.opacity),i.setAttribute("stroke-width",t.weight),i.setAttribute("stroke-linecap",t.lineCap),i.setAttribute("stroke-linejoin",t.lineJoin),t.dashArray?i.setAttribute("stroke-dasharray",t.dashArray):i.removeAttribute("stroke-dasharray"),t.dashOffset?i.setAttribute("stroke-dashoffset",t.dashOffset):i.removeAttribute("stroke-dashoffset")):i.setAttribute("stroke","none"),t.fill?(i.setAttribute("fill",t.fillColor||t.color),i.setAttribute("fill-opacity",t.fillOpacity),i.setAttribute("fill-rule",t.fillRule||"evenodd")):i.setAttribute("fill","none"))},_updatePoly:function(t,i){this._setPath(t,dt(t._parts,i))},_updateCircle:function(t){var i=t._point,e=Math.max(Math.round(t._radius),1),n="a"+e+","+(Math.max(Math.round(t._radiusY),1)||e)+" 0 1,0 ",i=t._empty()?"M0 0":"M"+(i.x-e)+","+i.y+n+2*e+",0 "+n+2*-e+",0 ";this._setPath(t,i)},_setPath:function(t,i){t._path.setAttribute("d",i)},_bringToFront:function(t){fi(t._path)},_bringToBack:function(t){gi(t._path)}});function Ue(t){return P.svg||P.vml?new Fe(t):null}P.vml&&Fe.include(Mt),A.include({getRenderer:function(t){t=(t=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer)||(this._renderer=this._createRenderer());return this.hasLayer(t)||this.addLayer(t),t},_getPaneRenderer:function(t){if("overlayPane"===t||void 0===t)return!1;var i=this._paneRenderers[t];return void 0===i&&(i=this._createRenderer({pane:t}),this._paneRenderers[t]=i),i},_createRenderer:function(t){return this.options.preferCanvas&&je(t)||Ue(t)}});var Ve=ge.extend({initialize:function(t,i){ge.prototype.initialize.call(this,this._boundsToLatLngs(t),i)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return[(t=g(t)).getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});Fe.create=We,Fe.pointsToPath=dt,ve.geometryToLayer=ye,ve.coordsToLatLng=we,ve.coordsToLatLngs=Pe,ve.latLngToCoords=be,ve.latLngsToCoords=Le,ve.getFeature=Te,ve.asFeature=ze,A.mergeOptions({boxZoom:!0});var _t=n.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){S(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){E(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){T(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),ri(),Li(),this._startPoint=this._map.mouseEventToContainerPoint(t),S(document,{contextmenu:Ri,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=b("div","leaflet-zoom-box",this._container),z(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var t=new m(this._point,this._startPoint),i=t.getSize();Z(this._box,t.min),this._box.style.width=i.x+"px",this._box.style.height=i.y+"px"},_finish:function(){this._moved&&(T(this._box),M(this._container,"leaflet-crosshair")),ai(),Ti(),E(document,{contextmenu:Ri,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){1!==t.which&&1!==t.button||(this._finish(),this._moved&&(this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(a(this._resetState,this),0),t=new s(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point)),this._map.fitBounds(t).fire("boxzoomend",{boxZoomBounds:t})))},_onKeyDown:function(t){27===t.keyCode&&(this._finish(),this._clearDeferredResetState(),this._resetState())}}),Ct=(A.addInitHook("addHandler","boxZoom",_t),A.mergeOptions({doubleClickZoom:!0}),n.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var i=this._map,e=i.getZoom(),n=i.options.zoomDelta,e=t.originalEvent.shiftKey?e-n:e+n;"center"===i.options.doubleClickZoom?i.setZoom(e):i.setZoomAround(t.containerPoint,e)}})),Zt=(A.addInitHook("addHandler","doubleClickZoom",Ct),A.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0}),n.extend({addHooks:function(){var t;this._draggable||(t=this._map,this._draggable=new Xi(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))),z(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){M(this._map._container,"leaflet-grab"),M(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t,i=this._map;i._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity?(t=g(this._map.options.maxBounds),this._offsetLimit=f(this._map.latLngToContainerPoint(t.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(t.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))):this._offsetLimit=null,i.fire("movestart").fire("dragstart"),i.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){var i,e;this._map.options.inertia&&(i=this._lastTime=+new Date,e=this._lastPos=this._draggable._absPos||this._draggable._newPos,this._positions.push(e),this._times.push(i),this._prunePositions(i)),this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;1i.max.x&&(t.x=this._viscousLimit(t.x,i.max.x)),t.y>i.max.y&&(t.y=this._viscousLimit(t.y,i.max.y)),this._draggable._newPos=this._draggable._startPos.add(t))},_onPreDragWrap:function(){var t=this._worldWidth,i=Math.round(t/2),e=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-i+e)%t+i-e,n=(n+i+e)%t-i-e,t=Math.abs(o+e)i.getMaxZoom()&&1 element.appendChild(child));\n }\n\n function loadNextPage (callback) {\n var form = d.querySelector('#pagination form.next_page');\n if (!form) {\n return\n }\n replaceChildrenWith(d.querySelector('#pagination'), [ newLoadSpinner() ]);\n var formData = new FormData(form);\n searxng.http('POST', d.querySelector('#search').getAttribute('action'), formData).then(\n function (response) {\n var nextPageDoc = new DOMParser().parseFromString(response, 'text/html');\n var articleList = nextPageDoc.querySelectorAll('#urls article');\n var paginationElement = nextPageDoc.querySelector('#pagination');\n d.querySelector('#pagination').remove();\n if (articleList.length > 0 && !onlyImages) {\n // do not add
element when there are only images\n d.querySelector('#urls').appendChild(d.createElement('hr'));\n }\n articleList.forEach(articleElement => {\n d.querySelector('#urls').appendChild(articleElement);\n });\n if (paginationElement) {\n d.querySelector('#results').appendChild(paginationElement);\n callback();\n }\n }\n ).catch(\n function (err) {\n console.log(err);\n var e = d.createElement('div');\n e.textContent = searxng.settings.translations.error_loading_next_page;\n e.classList.add('dialog-error');\n e.setAttribute('role', 'alert');\n replaceChildrenWith(d.querySelector('#pagination'), [ e ]);\n }\n )\n }\n\n if (searxng.settings.infinite_scroll && searxng.infinite_scroll_supported) {\n const intersectionObserveOptions = {\n rootMargin: \"20rem\",\n };\n const observedSelector = 'article.result:last-child';\n const observer = new IntersectionObserver(entries => {\n const paginationEntry = entries[0];\n if (paginationEntry.isIntersecting) {\n observer.unobserve(paginationEntry.target);\n loadNextPage(() => observer.observe(d.querySelector(observedSelector), intersectionObserveOptions));\n }\n });\n observer.observe(d.querySelector(observedSelector), intersectionObserveOptions);\n }\n\n});\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n/* global searxng */\n\nsearxng.ready(function () {\n\n function isElementInDetail (el) {\n while (el !== undefined) {\n if (el.classList.contains('detail')) {\n return true;\n }\n if (el.classList.contains('result')) {\n // we found a result, no need to go to the root of the document:\n // el is not inside a
element\n return false;\n }\n el = el.parentNode;\n }\n return false;\n }\n\n function getResultElement (el) {\n while (el !== undefined) {\n if (el.classList.contains('result')) {\n return el;\n }\n el = el.parentNode;\n }\n return undefined;\n }\n\n function isImageResult (resultElement) {\n return resultElement && resultElement.classList.contains('result-images');\n }\n\n searxng.on('.result', 'click', function (e) {\n if (!isElementInDetail(e.target)) {\n highlightResult(this)(true, true);\n let resultElement = getResultElement(e.target);\n if (isImageResult(resultElement)) {\n e.preventDefault();\n searxng.selectImage(resultElement);\n }\n }\n });\n\n searxng.on('.result a', 'focus', function (e) {\n if (!isElementInDetail(e.target)) {\n let resultElement = getResultElement(e.target);\n if (resultElement && resultElement.getAttribute(\"data-vim-selected\") === null) {\n highlightResult(resultElement)(true);\n }\n if (isImageResult(resultElement)) {\n searxng.selectImage(resultElement);\n }\n }\n }, true);\n\n var vimKeys = {\n 27: {\n key: 'Escape',\n fun: removeFocus,\n des: 'remove focus from the focused input',\n cat: 'Control'\n },\n 73: {\n key: 'i',\n fun: searchInputFocus,\n des: 'focus on the search input',\n cat: 'Control'\n },\n 66: {\n key: 'b',\n fun: scrollPage(-window.innerHeight),\n des: 'scroll one page up',\n cat: 'Navigation'\n },\n 70: {\n key: 'f',\n fun: scrollPage(window.innerHeight),\n des: 'scroll one page down',\n cat: 'Navigation'\n },\n 85: {\n key: 'u',\n fun: scrollPage(-window.innerHeight / 2),\n des: 'scroll half a page up',\n cat: 'Navigation'\n },\n 68: {\n key: 'd',\n fun: scrollPage(window.innerHeight / 2),\n des: 'scroll half a page down',\n cat: 'Navigation'\n },\n 71: {\n key: 'g',\n fun: scrollPageTo(-document.body.scrollHeight, 'top'),\n des: 'scroll to the top of the page',\n cat: 'Navigation'\n },\n 86: {\n key: 'v',\n fun: scrollPageTo(document.body.scrollHeight, 'bottom'),\n des: 'scroll to the bottom of the page',\n cat: 'Navigation'\n },\n 75: {\n key: 'k',\n fun: highlightResult('up'),\n des: 'select previous search result',\n cat: 'Results'\n },\n 74: {\n key: 'j',\n fun: highlightResult('down'),\n des: 'select next search result',\n cat: 'Results'\n },\n 80: {\n key: 'p',\n fun: GoToPreviousPage(),\n des: 'go to previous page',\n cat: 'Results'\n },\n 78: {\n key: 'n',\n fun: GoToNextPage(),\n des: 'go to next page',\n cat: 'Results'\n },\n 79: {\n key: 'o',\n fun: openResult(false),\n des: 'open search result',\n cat: 'Results'\n },\n 84: {\n key: 't',\n fun: openResult(true),\n des: 'open the result in a new tab',\n cat: 'Results'\n },\n 82: {\n key: 'r',\n fun: reloadPage,\n des: 'reload page from the server',\n cat: 'Control'\n },\n 72: {\n key: 'h',\n fun: toggleHelp,\n des: 'toggle help window',\n cat: 'Other'\n }\n };\n\n if (searxng.settings.hotkeys) {\n searxng.on(document, \"keydown\", function (e) {\n // check for modifiers so we don't break browser's hotkeys\n if (Object.prototype.hasOwnProperty.call(vimKeys, e.keyCode) && !e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey) {\n var tagName = e.target.tagName.toLowerCase();\n if (e.keyCode === 27) {\n vimKeys[e.keyCode].fun(e);\n } else {\n if (e.target === document.body || tagName === 'a' || tagName === 'button') {\n e.preventDefault();\n vimKeys[e.keyCode].fun();\n }\n }\n }\n });\n }\n\n function highlightResult (which) {\n return function (noScroll, keepFocus) {\n var current = document.querySelector('.result[data-vim-selected]'),\n effectiveWhich = which;\n if (current === null) {\n // no selection : choose the first one\n current = document.querySelector('.result');\n if (current === null) {\n // no first one : there are no results\n return;\n }\n // replace up/down actions by selecting first one\n if (which === \"down\" || which === \"up\") {\n effectiveWhich = current;\n }\n }\n\n var next, results = document.querySelectorAll('.result');\n\n if (typeof effectiveWhich !== 'string') {\n next = effectiveWhich;\n } else {\n switch (effectiveWhich) {\n case 'visible':\n var top = document.documentElement.scrollTop || document.body.scrollTop;\n var bot = top + document.documentElement.clientHeight;\n\n for (var i = 0; i < results.length; i++) {\n next = results[i];\n var etop = next.offsetTop;\n var ebot = etop + next.clientHeight;\n\n if ((ebot <= bot) && (etop > top)) {\n break;\n }\n }\n break;\n case 'down':\n next = current.nextElementSibling;\n if (next === null) {\n next = results[0];\n }\n break;\n case 'up':\n next = current.previousElementSibling;\n if (next === null) {\n next = results[results.length - 1];\n }\n break;\n case 'bottom':\n next = results[results.length - 1];\n break;\n case 'top':\n /* falls through */\n default:\n next = results[0];\n }\n }\n\n if (next) {\n current.removeAttribute('data-vim-selected');\n next.setAttribute('data-vim-selected', 'true');\n if (!keepFocus) {\n var link = next.querySelector('h3 a') || next.querySelector('a');\n if (link !== null) {\n link.focus();\n }\n }\n if (!noScroll) {\n scrollPageToSelected();\n }\n }\n };\n }\n\n function reloadPage () {\n document.location.reload(true);\n }\n\n function removeFocus (e) {\n const tagName = e.target.tagName.toLowerCase();\n if (document.activeElement && (tagName === 'input' || tagName === 'select' || tagName === 'textarea')) {\n document.activeElement.blur();\n } else {\n searxng.closeDetail();\n }\n }\n\n function pageButtonClick (css_selector) {\n return function () {\n var button = document.querySelector(css_selector);\n if (button) {\n button.click();\n }\n };\n }\n\n function GoToNextPage () {\n return pageButtonClick('nav#pagination .next_page button[type=\"submit\"]');\n }\n\n function GoToPreviousPage () {\n return pageButtonClick('nav#pagination .previous_page button[type=\"submit\"]');\n }\n\n function scrollPageToSelected () {\n var sel = document.querySelector('.result[data-vim-selected]');\n if (sel === null) {\n return;\n }\n var wtop = document.documentElement.scrollTop || document.body.scrollTop,\n wheight = document.documentElement.clientHeight,\n etop = sel.offsetTop,\n ebot = etop + sel.clientHeight,\n offset = 120;\n // first element ?\n if ((sel.previousElementSibling === null) && (ebot < wheight)) {\n // set to the top of page if the first element\n // is fully included in the viewport\n window.scroll(window.scrollX, 0);\n return;\n }\n if (wtop > (etop - offset)) {\n window.scroll(window.scrollX, etop - offset);\n } else {\n var wbot = wtop + wheight;\n if (wbot < (ebot + offset)) {\n window.scroll(window.scrollX, ebot - wheight + offset);\n }\n }\n }\n\n function scrollPage (amount) {\n return function () {\n window.scrollBy(0, amount);\n highlightResult('visible')();\n };\n }\n\n function scrollPageTo (position, nav) {\n return function () {\n window.scrollTo(0, position);\n highlightResult(nav)();\n };\n }\n\n function searchInputFocus () {\n window.scrollTo(0, 0);\n var q = document.querySelector('#q');\n q.focus();\n if (q.setSelectionRange) {\n var len = q.value.length;\n q.setSelectionRange(len, len);\n }\n }\n\n function openResult (newTab) {\n return function () {\n var link = document.querySelector('.result[data-vim-selected] h3 a');\n if (link === null) {\n link = document.querySelector('.result[data-vim-selected] > a');\n }\n if (link !== null) {\n var url = link.getAttribute('href');\n if (newTab) {\n window.open(url);\n } else {\n window.location.href = url;\n }\n }\n };\n }\n\n function initHelpContent (divElement) {\n var categories = {};\n\n for (var k in vimKeys) {\n var key = vimKeys[k];\n categories[key.cat] = categories[key.cat] || [];\n categories[key.cat].push(key);\n }\n\n var sorted = Object.keys(categories).sort(function (a, b) {\n return categories[b].length - categories[a].length;\n });\n\n if (sorted.length === 0) {\n return;\n }\n\n var html = '×';\n html += '

How to navigate searx with Vim-like hotkeys

';\n html += '';\n\n for (var i = 0; i < sorted.length; i++) {\n var cat = categories[sorted[i]];\n\n var lastCategory = i === (sorted.length - 1);\n var first = i % 2 === 0;\n\n if (first) {\n html += '';\n }\n html += ''; // col-sm-*\n\n if (!first || lastCategory) {\n html += ''; // row\n }\n }\n\n html += '
';\n\n html += '

' + cat[0].cat + '

';\n html += '
    ';\n\n for (var cj in cat) {\n html += '
  • ' + cat[cj].key + ' ' + cat[cj].des + '
  • ';\n }\n\n html += '
';\n html += '
';\n\n divElement.innerHTML = html;\n }\n\n function toggleHelp () {\n var helpPanel = document.querySelector('#vim-hotkeys-help');\n if (helpPanel === undefined || helpPanel === null) {\n // first call\n helpPanel = document.createElement('div');\n helpPanel.id = 'vim-hotkeys-help';\n helpPanel.className = 'dialog-modal';\n initHelpContent(helpPanel);\n initHelpContent(helpPanel);\n initHelpContent(helpPanel);\n var body = document.getElementsByTagName('body')[0];\n body.appendChild(helpPanel);\n } else {\n // togggle hidden\n helpPanel.classList.toggle('invisible');\n return;\n }\n }\n\n searxng.scrollPageToSelected = scrollPageToSelected;\n searxng.selectNext = highlightResult('down');\n searxng.selectPrevious = highlightResult('up');\n});\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n/* global L */\n(function (w, d, searxng) {\n 'use strict';\n\n searxng.ready(function () {\n searxng.on('.searxng_init_map', 'click', function (event) {\n // no more request\n this.classList.remove(\"searxng_init_map\");\n\n //\n var leaflet_target = this.dataset.leafletTarget;\n var map_lon = parseFloat(this.dataset.mapLon);\n var map_lat = parseFloat(this.dataset.mapLat);\n var map_zoom = parseFloat(this.dataset.mapZoom);\n var map_boundingbox = JSON.parse(this.dataset.mapBoundingbox);\n var map_geojson = JSON.parse(this.dataset.mapGeojson);\n\n searxng.loadStyle('css/leaflet.css');\n searxng.loadScript('js/leaflet.js', function () {\n var map_bounds = null;\n if (map_boundingbox) {\n var southWest = L.latLng(map_boundingbox[0], map_boundingbox[2]);\n var northEast = L.latLng(map_boundingbox[1], map_boundingbox[3]);\n map_bounds = L.latLngBounds(southWest, northEast);\n }\n\n // init map\n var map = L.map(leaflet_target);\n // create the tile layer with correct attribution\n var osmMapnikUrl = 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';\n var osmMapnikAttrib = 'Map data © OpenStreetMap contributors';\n var osmMapnik = new L.TileLayer(osmMapnikUrl, {minZoom: 1, maxZoom: 19, attribution: osmMapnikAttrib});\n var osmWikimediaUrl = 'https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png';\n var osmWikimediaAttrib = 'Wikimedia maps | Maps data © OpenStreetMap contributors';\n var osmWikimedia = new L.TileLayer(osmWikimediaUrl, {minZoom: 1, maxZoom: 19, attribution: osmWikimediaAttrib});\n // init map view\n if (map_bounds) {\n // TODO hack: https://github.com/Leaflet/Leaflet/issues/2021\n // Still useful ?\n setTimeout(function () {\n map.fitBounds(map_bounds, {\n maxZoom: 17\n });\n }, 0);\n } else if (map_lon && map_lat) {\n if (map_zoom) {\n map.setView(new L.latLng(map_lat, map_lon), map_zoom);\n } else {\n map.setView(new L.latLng(map_lat, map_lon), 8);\n }\n }\n\n map.addLayer(osmMapnik);\n\n var baseLayers = {\n \"OSM Mapnik\": osmMapnik,\n \"OSM Wikimedia\": osmWikimedia,\n };\n\n L.control.layers(baseLayers).addTo(map);\n\n if (map_geojson) {\n L.geoJson(map_geojson).addTo(map);\n } /* else if(map_bounds) {\n L.rectangle(map_bounds, {color: \"#ff7800\", weight: 3, fill:false}).addTo(map);\n } */\n });\n\n // this event occour only once per element\n event.preventDefault();\n });\n });\n})(window, document, window.searxng);\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n(function (w, d, searxng) {\n 'use strict';\n\n if (searxng.endpoint !== 'preferences') {\n return;\n }\n\n searxng.ready(function () {\n let engine_descriptions = null;\n function load_engine_descriptions () {\n if (engine_descriptions == null) {\n searxng.http(\"GET\", \"engine_descriptions.json\").then(function (content) {\n engine_descriptions = JSON.parse(content);\n for (const [engine_name, description] of Object.entries(engine_descriptions)) {\n let elements = d.querySelectorAll('[data-engine-name=\"' + engine_name + '\"] .engine-description');\n for (const element of elements) {\n let source = ' (' + searxng.settings.translations.Source + ': ' + description[1] + ')';\n element.innerHTML = description[0] + source;\n }\n }\n });\n }\n }\n\n for (const el of d.querySelectorAll('[data-engine-name]')) {\n searxng.on(el, 'mouseenter', load_engine_descriptions);\n }\n });\n})(window, document, window.searxng);\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n(function (w, d, searxng) {\n 'use strict';\n\n if (searxng.endpoint !== 'results') {\n return;\n }\n\n searxng.ready(function () {\n d.querySelectorAll('#urls img.image').forEach(\n img =>\n img.addEventListener(\n 'error', () => {\n img.style.display = 'none';\n img.error = null;\n }\n ));\n\n searxng.on('.btn-collapse', 'click', function () {\n var btnLabelCollapsed = this.getAttribute('data-btn-text-collapsed');\n var btnLabelNotCollapsed = this.getAttribute('data-btn-text-not-collapsed');\n var target = this.getAttribute('data-target');\n var targetElement = d.querySelector(target);\n var html = this.innerHTML;\n if (this.classList.contains('collapsed')) {\n html = html.replace(btnLabelCollapsed, btnLabelNotCollapsed);\n } else {\n html = html.replace(btnLabelNotCollapsed, btnLabelCollapsed);\n }\n this.innerHTML = html;\n this.classList.toggle('collapsed');\n targetElement.classList.toggle('invisible');\n });\n\n searxng.on('.media-loader', 'click', function () {\n var target = this.getAttribute('data-target');\n var iframe_load = d.querySelector(target + ' > iframe');\n var srctest = iframe_load.getAttribute('src');\n if (srctest === null || srctest === undefined || srctest === false) {\n iframe_load.setAttribute('src', iframe_load.getAttribute('data-src'));\n }\n });\n\n searxng.selectImage = function (resultElement) {\n /* eslint no-unused-vars: 0 */\n if (resultElement) {\n // load full size image in background\n const imgElement = resultElement.querySelector('.result-images-source img');\n const thumbnailElement = resultElement.querySelector('.image_thumbnail');\n const detailElement = resultElement.querySelector('.detail');\n if (imgElement) {\n const imgSrc = imgElement.getAttribute('data-src');\n if (imgSrc) {\n const loader = d.createElement('div');\n const imgLoader = new Image();\n\n loader.classList.add('loader');\n detailElement.appendChild(loader);\n\n imgLoader.onload = e => {\n imgElement.src = imgSrc;\n loader.remove();\n };\n imgLoader.onerror = e => {\n loader.remove();\n };\n imgLoader.src = imgSrc;\n imgElement.src = thumbnailElement.src;\n imgElement.removeAttribute('data-src');\n }\n }\n }\n d.getElementById('results').classList.add('image-detail-open');\n searxng.scrollPageToSelected();\n }\n\n searxng.closeDetail = function (e) {\n d.getElementById('results').classList.remove('image-detail-open');\n searxng.scrollPageToSelected();\n }\n searxng.on('.result-detail-close', 'click', e => {\n e.preventDefault();\n searxng.closeDetail();\n });\n searxng.on('.result-detail-previous', 'click', e => searxng.selectPrevious(false));\n searxng.on('.result-detail-next', 'click', e => searxng.selectNext(false));\n\n w.addEventListener('scroll', function () {\n var e = d.getElementById('backToTop'),\n scrollTop = document.documentElement.scrollTop || document.body.scrollTop,\n results = d.getElementById('results');\n if (e !== null) {\n if (scrollTop >= 100) {\n results.classList.add('scrolling');\n } else {\n results.classList.remove('scrolling');\n }\n }\n }, true);\n\n });\n\n})(window, document, window.searxng);\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n/* global AutoComplete */\n(function (w, d, searxng) {\n 'use strict';\n\n var qinput_id = \"q\", qinput;\n\n const isMobile = window.matchMedia(\"only screen and (max-width: 50em)\").matches;\n\n function submitIfQuery () {\n if (qinput.value.length > 0) {\n var search = document.getElementById('search');\n setTimeout(search.submit.bind(search), 0);\n }\n }\n\n function createClearButton (qinput) {\n var cs = document.getElementById('clear_search');\n var updateClearButton = function () {\n if (qinput.value.length === 0) {\n cs.classList.add(\"empty\");\n } else {\n cs.classList.remove(\"empty\");\n }\n };\n\n // update status, event listener\n updateClearButton();\n cs.addEventListener('click', function (ev) {\n qinput.value = '';\n qinput.focus();\n updateClearButton();\n ev.preventDefault();\n });\n qinput.addEventListener('keyup', updateClearButton, false);\n }\n\n searxng.ready(function () {\n qinput = d.getElementById(qinput_id);\n\n if (qinput !== null) {\n // clear button\n createClearButton(qinput);\n\n // autocompleter\n if (searxng.settings.autocomplete_provider) {\n searxng.autocomplete = AutoComplete.call(w, {\n Url: \"./autocompleter\",\n EmptyMessage: searxng.settings.translations.no_item_found,\n HttpMethod: searxng.settings.http_method,\n HttpHeaders: {\n \"Content-type\": \"application/x-www-form-urlencoded\",\n \"X-Requested-With\": \"XMLHttpRequest\"\n },\n MinChars: searxng.settings.autocomplete_min,\n Delay: 300,\n _Position: function () {},\n _Open: function () {\n var params = this;\n Array.prototype.forEach.call(this.DOMResults.getElementsByTagName(\"li\"), function (li) {\n if (li.getAttribute(\"class\") != \"locked\") {\n li.onmousedown = function () {\n params._Select(li);\n };\n }\n });\n },\n }, \"#\" + qinput_id);\n }\n\n /*\n Monkey patch autocomplete.js to fix a bug\n With the POST method, the values are not URL encoded: query like \"1 + 1\" are sent as \"1 1\" since space are URL encoded as plus.\n See HTML specifications:\n * HTML5: https://url.spec.whatwg.org/#concept-urlencoded-serializer\n * HTML4: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1\n\n autocomplete.js does not URL encode the name and values:\n https://github.com/autocompletejs/autocomplete.js/blob/87069524f3b95e68f1b54d8976868e0eac1b2c83/src/autocomplete.ts#L665\n\n The monkey patch overrides the compiled version of the ajax function.\n See https://github.com/autocompletejs/autocomplete.js/blob/87069524f3b95e68f1b54d8976868e0eac1b2c83/dist/autocomplete.js#L143-L158\n The patch changes only the line 156 from\n params.Request.send(params._QueryArg() + \"=\" + params._Pre());\n to\n params.Request.send(encodeURIComponent(params._QueryArg()) + \"=\" + encodeURIComponent(params._Pre()));\n\n Related to:\n * https://github.com/autocompletejs/autocomplete.js/issues/78\n * https://github.com/searxng/searxng/issues/1695\n */\n AutoComplete.prototype.ajax = function (params, request, timeout) {\n if (timeout === void 0) { timeout = true; }\n if (params.$AjaxTimer) {\n window.clearTimeout(params.$AjaxTimer);\n }\n if (timeout === true) {\n params.$AjaxTimer = window.setTimeout(AutoComplete.prototype.ajax.bind(null, params, request, false), params.Delay);\n } else {\n if (params.Request) {\n params.Request.abort();\n }\n params.Request = request;\n params.Request.send(encodeURIComponent(params._QueryArg()) + \"=\" + encodeURIComponent(params._Pre()));\n }\n };\n\n if (!isMobile && document.querySelector('.index_endpoint')) {\n qinput.focus();\n }\n }\n\n // vanilla js version of search_on_category_select.js\n if (qinput !== null && d.querySelector('.help') != null && searxng.settings.search_on_category_select) {\n d.querySelector('.help').className = 'invisible';\n\n searxng.on('#categories input', 'change', function () {\n var i, categories = d.querySelectorAll('#categories input[type=\"checkbox\"]');\n for (i = 0; i < categories.length; i++) {\n if (categories[i] !== this && categories[i].checked) {\n categories[i].click();\n }\n }\n if (! this.checked) {\n this.click();\n }\n submitIfQuery();\n return false;\n });\n\n searxng.on(d.getElementById('safesearch'), 'change', submitIfQuery);\n searxng.on(d.getElementById('time_range'), 'change', submitIfQuery);\n searxng.on(d.getElementById('language'), 'change', submitIfQuery);\n }\n\n });\n\n})(window, document, window.searxng);\n","(function(f){if(typeof exports===\"object\"&&typeof module!==\"undefined\"){module.exports=f()}else if(typeof define===\"function\"&&define.amd){define([],f)}else{var g;if(typeof window!==\"undefined\"){g=window}else if(typeof global!==\"undefined\"){g=global}else if(typeof self!==\"undefined\"){g=self}else{g=this}g.AutoComplete = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i @baptistedonaux\n */\nvar AutoComplete = /** @class */ (function () {\n // Constructor\n function AutoComplete(params, selector) {\n if (params === void 0) { params = {}; }\n if (selector === void 0) { selector = \"[data-autocomplete]\"; }\n if (Array.isArray(selector)) {\n selector.forEach(function (s) {\n new AutoComplete(params, s);\n });\n }\n else if (typeof selector == \"string\") {\n var elements = document.querySelectorAll(selector);\n Array.prototype.forEach.call(elements, function (input) {\n new AutoComplete(params, input);\n });\n }\n else {\n var specificParams = AutoComplete.merge(AutoComplete.defaults, params, {\n DOMResults: document.createElement(\"div\")\n });\n AutoComplete.prototype.create(specificParams, selector);\n return specificParams;\n }\n }\n AutoComplete.prototype.create = function (params, element) {\n params.Input = element;\n if (params.Input.nodeName.match(/^INPUT$/i) && (params.Input.hasAttribute(\"type\") === false || params.Input.getAttribute(\"type\").match(/^TEXT|SEARCH$/i))) {\n params.Input.setAttribute(\"autocomplete\", \"off\");\n params._Position(params);\n params.Input.parentNode.appendChild(params.DOMResults);\n params.$Listeners = {\n blur: params._Blur.bind(params),\n destroy: AutoComplete.prototype.destroy.bind(null, params),\n focus: params._Focus.bind(params),\n keyup: AutoComplete.prototype.event.bind(null, params, EventType.KEYUP),\n keydown: AutoComplete.prototype.event.bind(null, params, EventType.KEYDOWN),\n position: params._Position.bind(params)\n };\n for (var event in params.$Listeners) {\n params.Input.addEventListener(event, params.$Listeners[event]);\n }\n }\n };\n AutoComplete.prototype.getEventsByType = function (params, type) {\n var mappings = {};\n for (var key in params.KeyboardMappings) {\n var event = EventType.KEYUP;\n if (params.KeyboardMappings[key].Event !== undefined) {\n event = params.KeyboardMappings[key].Event;\n }\n if (event == type) {\n mappings[key] = params.KeyboardMappings[key];\n }\n }\n return mappings;\n };\n AutoComplete.prototype.event = function (params, type, event) {\n var eventIdentifier = function (condition) {\n if ((match === true && mapping.Operator == ConditionOperator.AND) || (match === false && mapping.Operator == ConditionOperator.OR)) {\n condition = AutoComplete.merge({\n Not: false\n }, condition);\n if (condition.hasOwnProperty(\"Is\")) {\n if (condition.Is == event.keyCode) {\n match = !condition.Not;\n }\n else {\n match = condition.Not;\n }\n }\n else if (condition.hasOwnProperty(\"From\") && condition.hasOwnProperty(\"To\")) {\n if (event.keyCode >= condition.From && event.keyCode <= condition.To) {\n match = !condition.Not;\n }\n else {\n match = condition.Not;\n }\n }\n }\n };\n for (var name in AutoComplete.prototype.getEventsByType(params, type)) {\n var mapping = AutoComplete.merge({\n Operator: ConditionOperator.AND\n }, params.KeyboardMappings[name]), match = ConditionOperator.AND == mapping.Operator;\n mapping.Conditions.forEach(eventIdentifier);\n if (match === true) {\n mapping.Callback.call(params, event);\n }\n }\n };\n AutoComplete.prototype.makeRequest = function (params, callback, callbackErr) {\n var propertyHttpHeaders = Object.getOwnPropertyNames(params.HttpHeaders), request = new XMLHttpRequest(), method = params._HttpMethod(), url = params._Url(), queryParams = params._Pre(), queryParamsStringify = encodeURIComponent(params._QueryArg()) + \"=\" + encodeURIComponent(queryParams);\n if (method.match(/^GET$/i)) {\n if (url.indexOf(\"?\") !== -1) {\n url += \"&\" + queryParamsStringify;\n }\n else {\n url += \"?\" + queryParamsStringify;\n }\n }\n request.open(method, url, true);\n for (var i = propertyHttpHeaders.length - 1; i >= 0; i--) {\n request.setRequestHeader(propertyHttpHeaders[i], params.HttpHeaders[propertyHttpHeaders[i]]);\n }\n request.onreadystatechange = function () {\n if (request.readyState == 4 && request.status == 200) {\n params.$Cache[queryParams] = request.response;\n callback(request.response);\n }\n else if (request.status >= 400) {\n callbackErr();\n }\n };\n return request;\n };\n AutoComplete.prototype.ajax = function (params, request, timeout) {\n if (timeout === void 0) { timeout = true; }\n if (params.$AjaxTimer) {\n window.clearTimeout(params.$AjaxTimer);\n }\n if (timeout === true) {\n params.$AjaxTimer = window.setTimeout(AutoComplete.prototype.ajax.bind(null, params, request, false), params.Delay);\n }\n else {\n if (params.Request) {\n params.Request.abort();\n }\n params.Request = request;\n params.Request.send(params._QueryArg() + \"=\" + params._Pre());\n }\n };\n AutoComplete.prototype.cache = function (params, callback, callbackErr) {\n var response = params._Cache(params._Pre());\n if (response === undefined) {\n var request = AutoComplete.prototype.makeRequest(params, callback, callbackErr);\n AutoComplete.prototype.ajax(params, request);\n }\n else {\n callback(response);\n }\n };\n AutoComplete.prototype.destroy = function (params) {\n for (var event in params.$Listeners) {\n params.Input.removeEventListener(event, params.$Listeners[event]);\n }\n params.DOMResults.parentNode.removeChild(params.DOMResults);\n };\n AutoComplete.merge = function () {\n var merge = {}, tmp;\n for (var i = 0; i < arguments.length; i++) {\n for (tmp in arguments[i]) {\n merge[tmp] = arguments[i][tmp];\n }\n }\n return merge;\n };\n AutoComplete.defaults = {\n Delay: 150,\n EmptyMessage: \"No result here\",\n Highlight: {\n getRegex: function (value) {\n return new RegExp(value, \"ig\");\n },\n transform: function (value) {\n return \"\" + value + \"\";\n }\n },\n HttpHeaders: {\n \"Content-type\": \"application/x-www-form-urlencoded\"\n },\n Limit: 0,\n MinChars: 0,\n HttpMethod: \"GET\",\n QueryArg: \"q\",\n Url: null,\n KeyboardMappings: {\n \"Enter\": {\n Conditions: [{\n Is: 13,\n Not: false\n }],\n Callback: function (event) {\n if (this.DOMResults.getAttribute(\"class\").indexOf(\"open\") != -1) {\n var liActive = this.DOMResults.querySelector(\"li.active\");\n if (liActive !== null) {\n event.preventDefault();\n this._Select(liActive);\n this.DOMResults.setAttribute(\"class\", \"autocomplete\");\n }\n }\n },\n Operator: ConditionOperator.AND,\n Event: EventType.KEYDOWN\n },\n \"KeyUpAndDown_down\": {\n Conditions: [{\n Is: 38,\n Not: false\n },\n {\n Is: 40,\n Not: false\n }],\n Callback: function (event) {\n event.preventDefault();\n },\n Operator: ConditionOperator.OR,\n Event: EventType.KEYDOWN\n },\n \"KeyUpAndDown_up\": {\n Conditions: [{\n Is: 38,\n Not: false\n },\n {\n Is: 40,\n Not: false\n }],\n Callback: function (event) {\n event.preventDefault();\n var first = this.DOMResults.querySelector(\"li:first-child:not(.locked)\"), last = this.DOMResults.querySelector(\"li:last-child:not(.locked)\"), active = this.DOMResults.querySelector(\"li.active\");\n if (active) {\n var currentIndex = Array.prototype.indexOf.call(active.parentNode.children, active), position = currentIndex + (event.keyCode - 39), lisCount = this.DOMResults.getElementsByTagName(\"li\").length;\n if (position < 0) {\n position = lisCount - 1;\n }\n else if (position >= lisCount) {\n position = 0;\n }\n active.classList.remove(\"active\");\n active.parentElement.children.item(position).classList.add(\"active\");\n }\n else if (last && event.keyCode == 38) {\n last.classList.add(\"active\");\n }\n else if (first) {\n first.classList.add(\"active\");\n }\n },\n Operator: ConditionOperator.OR,\n Event: EventType.KEYUP\n },\n \"AlphaNum\": {\n Conditions: [{\n Is: 13,\n Not: true\n }, {\n From: 35,\n To: 40,\n Not: true\n }],\n Callback: function () {\n var oldValue = this.Input.getAttribute(\"data-autocomplete-old-value\"), currentValue = this._Pre();\n if (currentValue !== \"\" && currentValue.length >= this._MinChars()) {\n if (!oldValue || currentValue != oldValue) {\n this.DOMResults.setAttribute(\"class\", \"autocomplete open\");\n }\n AutoComplete.prototype.cache(this, function (response) {\n this._Render(this._Post(response));\n this._Open();\n }.bind(this), this._Error);\n }\n else {\n this._Close();\n }\n },\n Operator: ConditionOperator.AND,\n Event: EventType.KEYUP\n }\n },\n DOMResults: null,\n Request: null,\n Input: null,\n /**\n * Return the message when no result returns\n */\n _EmptyMessage: function () {\n var emptyMessage = \"\";\n if (this.Input.hasAttribute(\"data-autocomplete-empty-message\")) {\n emptyMessage = this.Input.getAttribute(\"data-autocomplete-empty-message\");\n }\n else if (this.EmptyMessage !== false) {\n emptyMessage = this.EmptyMessage;\n }\n else {\n emptyMessage = \"\";\n }\n return emptyMessage;\n },\n /**\n * Returns the maximum number of results\n */\n _Limit: function () {\n var limit = this.Input.getAttribute(\"data-autocomplete-limit\");\n if (isNaN(limit) || limit === null) {\n return this.Limit;\n }\n return parseInt(limit, 10);\n },\n /**\n * Returns the minimum number of characters entered before firing ajax\n */\n _MinChars: function () {\n var minchars = this.Input.getAttribute(\"data-autocomplete-minchars\");\n if (isNaN(minchars) || minchars === null) {\n return this.MinChars;\n }\n return parseInt(minchars, 10);\n },\n /**\n * Apply transformation on labels response\n */\n _Highlight: function (label) {\n return label.replace(this.Highlight.getRegex(this._Pre()), this.Highlight.transform);\n },\n /**\n * Returns the HHTP method to use\n */\n _HttpMethod: function () {\n if (this.Input.hasAttribute(\"data-autocomplete-method\")) {\n return this.Input.getAttribute(\"data-autocomplete-method\");\n }\n return this.HttpMethod;\n },\n /**\n * Returns the query param to use\n */\n _QueryArg: function () {\n if (this.Input.hasAttribute(\"data-autocomplete-param-name\")) {\n return this.Input.getAttribute(\"data-autocomplete-param-name\");\n }\n return this.QueryArg;\n },\n /**\n * Returns the URL to use for AJAX request\n */\n _Url: function () {\n if (this.Input.hasAttribute(\"data-autocomplete\")) {\n return this.Input.getAttribute(\"data-autocomplete\");\n }\n return this.Url;\n },\n /**\n * Manage the close\n */\n _Blur: function (now) {\n if (now === void 0) { now = false; }\n if (now) {\n this._Close();\n }\n else {\n var params = this;\n setTimeout(function () {\n params._Blur(true);\n }, 150);\n }\n },\n /**\n * Manage the cache\n */\n _Cache: function (value) {\n return this.$Cache[value];\n },\n /**\n * Manage the open\n */\n _Focus: function () {\n var oldValue = this.Input.getAttribute(\"data-autocomplete-old-value\");\n if ((!oldValue || this.Input.value != oldValue) && this._MinChars() <= this.Input.value.length) {\n this.DOMResults.setAttribute(\"class\", \"autocomplete open\");\n }\n },\n /**\n * Bind all results item if one result is opened\n */\n _Open: function () {\n var params = this;\n Array.prototype.forEach.call(this.DOMResults.getElementsByTagName(\"li\"), function (li) {\n if (li.getAttribute(\"class\") != \"locked\") {\n li.onclick = function () {\n params._Select(li);\n };\n }\n });\n },\n _Close: function () {\n this.DOMResults.setAttribute(\"class\", \"autocomplete\");\n },\n /**\n * Position the results HTML element\n */\n _Position: function () {\n this.DOMResults.setAttribute(\"class\", \"autocomplete\");\n this.DOMResults.setAttribute(\"style\", \"top:\" + (this.Input.offsetTop + this.Input.offsetHeight) + \"px;left:\" + this.Input.offsetLeft + \"px;width:\" + this.Input.clientWidth + \"px;\");\n },\n /**\n * Execute the render of results DOM element\n */\n _Render: function (response) {\n var ul;\n if (typeof response == \"string\") {\n ul = this._RenderRaw(response);\n }\n else {\n ul = this._RenderResponseItems(response);\n }\n if (this.DOMResults.hasChildNodes()) {\n this.DOMResults.removeChild(this.DOMResults.childNodes[0]);\n }\n this.DOMResults.appendChild(ul);\n },\n /**\n * ResponseItems[] rendering\n */\n _RenderResponseItems: function (response) {\n var ul = document.createElement(\"ul\"), li = document.createElement(\"li\"), limit = this._Limit();\n // Order\n if (limit < 0) {\n response = response.reverse();\n }\n else if (limit === 0) {\n limit = response.length;\n }\n for (var item = 0; item < Math.min(Math.abs(limit), response.length); item++) {\n li.innerHTML = response[item].Label;\n li.setAttribute(\"data-autocomplete-value\", response[item].Value);\n ul.appendChild(li);\n li = document.createElement(\"li\");\n }\n return ul;\n },\n /**\n * string response rendering (RAW HTML)\n */\n _RenderRaw: function (response) {\n var ul = document.createElement(\"ul\"), li = document.createElement(\"li\");\n if (response.length > 0) {\n this.DOMResults.innerHTML = response;\n }\n else {\n var emptyMessage = this._EmptyMessage();\n if (emptyMessage !== \"\") {\n li.innerHTML = emptyMessage;\n li.setAttribute(\"class\", \"locked\");\n ul.appendChild(li);\n }\n }\n return ul;\n },\n /**\n * Deal with request response\n */\n _Post: function (response) {\n try {\n var returnResponse = [];\n //JSON return\n var json = JSON.parse(response);\n if (Object.keys(json).length === 0) {\n return \"\";\n }\n if (Array.isArray(json)) {\n for (var i = 0; i < Object.keys(json).length; i++) {\n returnResponse[returnResponse.length] = { \"Value\": json[i], \"Label\": this._Highlight(json[i]) };\n }\n }\n else {\n for (var value in json) {\n returnResponse.push({\n \"Value\": value,\n \"Label\": this._Highlight(json[value])\n });\n }\n }\n return returnResponse;\n }\n catch (event) {\n //HTML return\n return response;\n }\n },\n /**\n * Return the autocomplete value to send (before request)\n */\n _Pre: function () {\n return this.Input.value;\n },\n /**\n * Choice one result item\n */\n _Select: function (item) {\n if (item.hasAttribute(\"data-autocomplete-value\")) {\n this.Input.value = item.getAttribute(\"data-autocomplete-value\");\n }\n else {\n this.Input.value = item.innerHTML;\n }\n this.Input.setAttribute(\"data-autocomplete-old-value\", this.Input.value);\n },\n /**\n * Handle HTTP error on the request\n */\n _Error: function () {\n },\n $AjaxTimer: null,\n $Cache: {},\n $Listeners: {}\n };\n return AutoComplete;\n}());\nmodule.exports = AutoComplete;\n\n},{}]},{},[1])(1)\n});\n"],"names":["window","searxng","w","d","Element","ElementPrototype","matches","matchesSelector","webkitMatchesSelector","msMatchesSelector","selector","node","this","nodes","parentNode","document","querySelectorAll","i","prototype","callbackSafe","callback","el","e","call","exception","console","log","on","obj","eventType","useCapture","addEventListener","target","srcElement","found","parentElement","ready","readyState","bind","http","method","url","data","Promise","resolve","reject","req","XMLHttpRequest","open","timeout","onload","status","response","responseType","Error","statusText","onerror","onabort","ontimeout","send","ex","loadStyle","src","path","settings","theme_static_path","id","replace","s","getElementById","createElement","setAttribute","body","appendChild","loadScript","hasAttribute","apply","insertBefore","newNode","referenceNode","insertAfter","nextSibling","classList","add","getEndpoint","className","getElementsByTagName","values","endsWith","split","endpoint","infinite_scroll_supported","IntersectionObserverEntry","let","onlyImages","contains","newLoadSpinner","loader","replaceChildrenWith","element","children","textContent","forEach","child","loadNextPage","form","querySelector","formData","FormData","getAttribute","then","nextPageDoc","DOMParser","parseFromString","articleList","paginationElement","remove","length","articleElement","catch","err","translations","error_loading_next_page","infinite_scroll","intersectionObserveOptions","rootMargin","observedSelector","observer","IntersectionObserver","entries","paginationEntry","isIntersecting","unobserve","observe","isElementInDetail","undefined","getResultElement","isImageResult","resultElement","highlightResult","preventDefault","selectImage","vimKeys","27","key","fun","removeFocus","des","cat","73","searchInputFocus","66","scrollPage","innerHeight","70","85","68","71","scrollPageTo","scrollHeight","86","75","74","80","GoToPreviousPage","78","GoToNextPage","79","openResult","84","82","reloadPage","72","toggleHelp","hotkeys","Object","hasOwnProperty","keyCode","ctrlKey","altKey","shiftKey","metaKey","tagName","toLowerCase","which","noScroll","keepFocus","current","effectiveWhich","next","results","top","documentElement","scrollTop","bot","clientHeight","etop","offsetTop","ebot","nextElementSibling","previousElementSibling","removeAttribute","link","focus","scrollPageToSelected","location","reload","activeElement","blur","closeDetail","pageButtonClick","css_selector","button","click","sel","wtop","wheight","offset","scroll","scrollX","wbot","amount","scrollBy","position","nav","scrollTo","q","setSelectionRange","len","value","newTab","href","initHelpContent","divElement","categories","k","push","sorted","keys","sort","a","b","html","lastCategory","first","cj","innerHTML","helpPanel","toggle","selectNext","selectPrevious","event","leaflet_target","dataset","leafletTarget","map_lon","parseFloat","mapLon","map_lat","mapLat","map_zoom","mapZoom","map_boundingbox","JSON","parse","mapBoundingbox","map_geojson","mapGeojson","map_bounds","southWest","L","latLng","northEast","latLngBounds","map","osmMapnikUrl","osmMapnikAttrib","osmMapnik","TileLayer","minZoom","maxZoom","attribution","osmWikimediaUrl","osmWikimediaAttrib","osmWikimedia","setTimeout","fitBounds","setView","addLayer","baseLayers","OSM Mapnik","OSM Wikimedia","control","layers","addTo","geoJson","engine_descriptions","load_engine_descriptions","content","engine_name","description","elements","source","Source","img","style","display","error","btnLabelCollapsed","btnLabelNotCollapsed","targetElement","iframe_load","srctest","imgElement","thumbnailElement","detailElement","imgSrc","imgLoader","Image","qinput_id","qinput","isMobile","matchMedia","submitIfQuery","search","submit","createClearButton","cs","updateClearButton","ev","autocomplete_provider","autocomplete","AutoComplete","Url","EmptyMessage","no_item_found","HttpMethod","http_method","HttpHeaders","Content-type","X-Requested-With","MinChars","autocomplete_min","Delay","_Position","_Open","params","Array","DOMResults","li","onmousedown","_Select","ajax","request","$AjaxTimer","clearTimeout","Request","abort","encodeURIComponent","_QueryArg","_Pre","search_on_category_select","checked","f","exports","module","define","amd","g","global","self","r","n","t","o","c","require","u","code","p","1","ConditionOperator","EventType","isArray","input","specificParams","merge","defaults","create","Input","nodeName","match","$Listeners","_Blur","destroy","_Focus","keyup","KEYUP","keydown","KEYDOWN","getEventsByType","type","mappings","KeyboardMappings","Event","eventIdentifier","condition","mapping","Operator","AND","OR","Not","Is","From","To","name","Conditions","Callback","makeRequest","callbackErr","propertyHttpHeaders","getOwnPropertyNames","_HttpMethod","_Url","queryParams","queryParamsStringify","indexOf","setRequestHeader","onreadystatechange","$Cache","cache","_Cache","removeEventListener","removeChild","tmp","arguments","Highlight","getRegex","RegExp","transform","Limit","QueryArg","Enter","liActive","KeyUpAndDown_down","KeyUpAndDown_up","last","active","currentIndex","lisCount","item","AlphaNum","oldValue","currentValue","_MinChars","_Render","_Post","_Error","_Close","_EmptyMessage","emptyMessage","_Limit","limit","isNaN","parseInt","minchars","_Highlight","label","now","onclick","offsetHeight","offsetLeft","clientWidth","ul","_RenderRaw","_RenderResponseItems","hasChildNodes","childNodes","reverse","Math","min","abs","Label","Value","returnResponse","json"],"mappings":";;;;;GAMAA;OAAOC,QAAU,SAAWC,EAAGC,GAE7B,aAMA,GAAID,EAAEE,QAAS,EACb,SAAWC,GACTA,EAAiBC,QAAUD,EAAiBC,SAC5CD,EAAiBE,iBACjBF,EAAiBG,uBACjBH,EAAiBI,mBACjB,SAAUC,GACR,IAAIC,EAAOC,KAAMC,GAASF,EAAKG,YAAcH,EAAKI,UAAUC,iBAAiBN,CAAQ,EAAGO,EAAI,CAAC,EAC7F,MAAOJ,EAAM,EAAEI,IAAMJ,EAAMI,IAAMN,GACjC,MAAO,CAAC,CAACE,EAAMI,EACjB,CACD,GAAEb,QAAQc,SAAS,CACtB,CAEA,SAASC,EAAcC,EAAUC,EAAIC,GACnC,IACEF,EAASG,KAAKF,EAAIC,CAAC,CAGrB,CAFE,MAAOE,GACPC,QAAQC,IAAIF,CAAS,CACvB,CACF,CAEA,IAAIvB,EAAUD,OAAOC,SAAW,GAEhCA,EAAQ0B,GAAK,SAAUC,EAAKC,EAAWT,EAAUU,GAC/CA,EAAaA,GAAc,MAC3B,GAAI,OAAOF,IAAQ,SAAU,CAE3BA,EAAIG,iBAAiBF,EAAWT,EAAUU,CAAU,CACtD,KAAO,CAEL3B,EAAE4B,iBAAiBF,EAAW,SAAUP,GACtC,IAAID,EAAKC,EAAEU,QAAUV,EAAEW,WAAYC,EAAQ,MAC3C,MAAOb,GAAMA,EAAGf,SAAWe,IAAOlB,GAAK,EAAE+B,EAAQb,EAAGf,QAAQsB,CAAG,GAAIP,EAAKA,EAAGc,cAC3E,GAAID,EAAOf,EAAaC,EAAUC,EAAIC,CAAC,CACzC,EAAGQ,CAAU,CACf,CACF,EAEA7B,EAAQmC,MAAQ,SAAUhB,GACxB,GAAIL,SAASsB,YAAc,UAAW,CACpCjB,EAASG,KAAKrB,CAAC,CACjB,KAAO,CACLA,EAAE6B,iBAAiB,mBAAoBX,EAASkB,KAAKpC,CAAC,CAAC,CACzD,CACF,EAEAD,EAAQsC,KAAO,SAAUC,EAAQC,EAAKC,EAAO,MAC3C,OAAO,IAAIC,QAAQ,SAAUC,EAASC,GACpC,IACE,IAAIC,EAAM,IAAIC,eACdD,EAAIE,KAAKR,EAAQC,EAAK,IAAI,EAC1BK,EAAIG,QAAU,IAGdH,EAAII,OAAS,WACX,GAAIJ,EAAIK,QAAU,IAAK,CACrBP,EAAQE,EAAIM,SAAUN,EAAIO,YAAY,CACxC,KAAO,CACLR,EAAOS,MAAMR,EAAIS,UAAU,CAAC,CAC9B,CACF,EAGAT,EAAIU,QAAU,WACZX,EAAOS,MAAM,eAAe,CAAC,CAC/B,EAEAR,EAAIW,QAAU,WACZZ,EAAOS,MAAM,wBAAwB,CAAC,CACxC,EAEAR,EAAIY,UAAY,WACdb,EAAOS,MAAM,SAAS,CAAC,CACzB,EAGA,GAAIZ,EAAM,CACRI,EAAIa,KAAKjB,CAAI,CACf,KAAO,CACLI,EAAIa,KAAK,CACX,CAGF,CAFE,MAAOC,GACPf,EAAOe,CAAE,CACX,CACF,CAAC,CACH,EAEA3D,EAAQ4D,UAAY,SAAUC,GAC5B,IAAIC,EAAO9D,EAAQ+D,SAASC,kBAAoB,IAAMH,EACpDI,EAAK,SAAWJ,EAAIK,QAAQ,IAAK,GAAG,EACpCC,EAAIjE,EAAEkE,eAAeH,CAAE,EACzB,GAAIE,IAAM,KAAM,CACdA,EAAIjE,EAAEmE,cAAc,MAAM,EAC1BF,EAAEG,aAAa,KAAML,CAAE,EACvBE,EAAEG,aAAa,MAAO,YAAY,EAClCH,EAAEG,aAAa,OAAQ,UAAU,EACjCH,EAAEG,aAAa,OAAQR,CAAI,EAC3B5D,EAAEqE,KAAKC,YAAYL,CAAC,CACtB,CACF,EAEAnE,EAAQyE,WAAa,SAAUZ,EAAK1C,GAClC,IAAI2C,EAAO9D,EAAQ+D,SAASC,kBAAoB,IAAMH,EACpDI,EAAK,UAAYJ,EAAIK,QAAQ,IAAK,GAAG,EACrCC,EAAIjE,EAAEkE,eAAeH,CAAE,EACzB,GAAIE,IAAM,KAAM,CACdA,EAAIjE,EAAEmE,cAAc,QAAQ,EAC5BF,EAAEG,aAAa,KAAML,CAAE,EACvBE,EAAEG,aAAa,MAAOR,CAAI,EAC1BK,EAAElB,OAAS9B,EACXgD,EAAEZ,QAAU,WACVY,EAAEG,aAAa,QAAS,GAAG,CAC7B,EACApE,EAAEqE,KAAKC,YAAYL,CAAC,CACtB,MAAO,GAAI,CAACA,EAAEO,aAAa,OAAO,EAAG,CACnC,IACEvD,EAASwD,MAAMR,EAAG,EAAE,CAGtB,CAFE,MAAO5C,GACPC,QAAQC,IAAIF,CAAS,CACvB,CACF,KAAO,CACLC,QAAQC,IAAI,mCAAqCqC,EAAO,eAAe,CACzE,CACF,EAEA9D,EAAQ4E,aAAe,SAAUC,EAASC,GACxCA,EAAcjE,WAAW+D,aAAaC,EAASC,CAAa,CAC9D,EAEA9E,EAAQ+E,YAAc,SAAUF,EAASC,GACvCA,EAAcjE,WAAWkE,YAAYF,EAASC,EAAcE,WAAW,CACzE,EAEAhF,EAAQ0B,GAAG,SAAU,QAAS,WAC5Bf,KAAKE,WAAWoE,UAAUC,IAAI,WAAW,CAC3C,CAAC,EAED,SAASC,IACP,IAAK,IAAIC,KAAalF,EAAEmF,qBAAqB,MAAM,EAAE,GAAGJ,UAAUK,OAAO,EAAG,CAC1E,GAAIF,EAAUG,SAAS,WAAW,EAAG,CACnC,OAAOH,EAAUI,MAAM,GAAG,EAAE,EAC9B,CACF,CACA,MAAO,EACT,CAEAxF,EAAQyF,SAAWN,EAAY,EAE/B,OAAOnF,CACR,EAAED,OAAQe,QAAQ,EChKnBd,QAAQmC,MAAM,WACZ,aAEAnC,QAAQ0F,0BACN,yBAA0B3F,QAC1B,8BAA+BA,QAC/B,sBAAuBA,OAAO4F,0BAA0B1E,UAE1D,GAAIjB,QAAQyF,WAAa,UAAW,CAClC,MACF,CAEA,GAAI,CAACzF,QAAQ0F,0BAA2B,CACtClE,QAAQC,IAAI,oCAAoC,EAChD,MACF,CAEAmE,IAAI1F,EAAIY,SACR,IAAI+E,EAAa3F,EAAEkE,eAAe,SAAS,EAAEa,UAAUa,SAAS,sBAAsB,EAEtF,SAASC,IACP,IAAIC,EAAS9F,EAAEmE,cAAc,KAAK,EAClC2B,EAAOf,UAAUC,IAAI,QAAQ,EAC7B,OAAOc,CACT,CAEA,SAASC,EAAqBC,EAASC,GACrCD,EAAQE,YAAc,GACtBD,EAASE,QAAQC,GAASJ,EAAQ1B,YAAY8B,CAAK,CAAC,CACtD,CAEA,SAASC,EAAcpF,GACrB,IAAIqF,EAAOtG,EAAEuG,cAAc,4BAA4B,EACvD,GAAI,CAACD,EAAM,CACT,MACF,CACAP,EAAoB/F,EAAEuG,cAAc,aAAa,EAAG,CAAEV,EAAe,EAAG,EACxE,IAAIW,EAAW,IAAIC,SAASH,CAAI,EAChCxG,QAAQsC,KAAK,OAAQpC,EAAEuG,cAAc,SAAS,EAAEG,aAAa,QAAQ,EAAGF,CAAQ,EAAEG,KAChF,SAAU1D,GACR,IAAI2D,GAAc,IAAIC,WAAYC,gBAAgB7D,EAAU,WAAW,EACvE,IAAI8D,EAAcH,EAAY/F,iBAAiB,eAAe,EAC9D,IAAImG,EAAoBJ,EAAYL,cAAc,aAAa,EAC/DvG,EAAEuG,cAAc,aAAa,EAAEU,OAAO,EACtC,GAAIF,EAAYG,OAAS,GAAK,CAACvB,EAAY,CAEzC3F,EAAEuG,cAAc,OAAO,EAAEjC,YAAYtE,EAAEmE,cAAc,IAAI,CAAC,CAC5D,CACA4C,EAAYZ,QAAQgB,IAClBnH,EAAEuG,cAAc,OAAO,EAAEjC,YAAY6C,CAAc,CACrD,CAAC,EACD,GAAIH,EAAmB,CACrBhH,EAAEuG,cAAc,UAAU,EAAEjC,YAAY0C,CAAiB,EACzD/F,EAAS,CACX,CACF,CACF,EAAEmG,MACA,SAAUC,GACR/F,QAAQC,IAAI8F,CAAG,EACf,IAAIlG,EAAInB,EAAEmE,cAAc,KAAK,EAC7BhD,EAAE+E,YAAcpG,QAAQ+D,SAASyD,aAAaC,wBAC9CpG,EAAE4D,UAAUC,IAAI,cAAc,EAC9B7D,EAAEiD,aAAa,OAAQ,OAAO,EAC9B2B,EAAoB/F,EAAEuG,cAAc,aAAa,EAAG,CAAEpF,EAAG,CAC3D,CACF,CACF,CAEA,GAAIrB,QAAQ+D,SAAS2D,iBAAmB1H,QAAQ0F,0BAA2B,CACzE,MAAMiC,EAA6B,CACjCC,WAAY,OACd,EACA,MAAMC,EAAmB,4BACzB,MAAMC,EAAW,IAAIC,qBAAqBC,IACxC,MAAMC,EAAkBD,EAAQ,GAChC,GAAIC,EAAgBC,eAAgB,CAClCJ,EAASK,UAAUF,EAAgBlG,MAAM,EACzCwE,EAAa,IAAMuB,EAASM,QAAQlI,EAAEuG,cAAcoB,CAAgB,EAAGF,CAA0B,CAAC,CACpG,CACF,CAAC,EACDG,EAASM,QAAQlI,EAAEuG,cAAcoB,CAAgB,EAAGF,CAA0B,CAChF,CAEF,CAAC,ECpFD3H,QAAQmC,MAAM,WAEZ,SAASkG,EAAmBjH,GAC1B,MAAOA,IAAOkH,UAAW,CACvB,GAAIlH,EAAG6D,UAAUa,SAAS,QAAQ,EAAG,CACnC,OAAO,IACT,CACA,GAAI1E,EAAG6D,UAAUa,SAAS,QAAQ,EAAG,CAGnC,OAAO,KACT,CACA1E,EAAKA,EAAGP,UACV,CACA,OAAO,KACT,CAEA,SAAS0H,EAAkBnH,GACzB,MAAOA,IAAOkH,UAAW,CACvB,GAAIlH,EAAG6D,UAAUa,SAAS,QAAQ,EAAG,CACnC,OAAO1E,CACT,CACAA,EAAKA,EAAGP,UACV,CACA,OAAOyH,SACT,CAEA,SAASE,EAAeC,GACtB,OAAOA,GAAiBA,EAAcxD,UAAUa,SAAS,eAAe,CAC1E,CAEA9F,QAAQ0B,GAAG,UAAW,QAAS,SAAUL,GACvC,GAAI,CAACgH,EAAkBhH,EAAEU,MAAM,EAAG,CAChC2G,EAAgB/H,IAAI,EAAE,KAAM,IAAI,EAChCiF,IAAI6C,EAAgBF,EAAiBlH,EAAEU,MAAM,EAC7C,GAAIyG,EAAcC,CAAa,EAAG,CAChCpH,EAAEsH,eAAe,EACjB3I,QAAQ4I,YAAYH,CAAa,CACnC,CACF,CACF,CAAC,EAEDzI,QAAQ0B,GAAG,YAAa,QAAS,SAAUL,GACzC,GAAI,CAACgH,EAAkBhH,EAAEU,MAAM,EAAG,CAChC6D,IAAI6C,EAAgBF,EAAiBlH,EAAEU,MAAM,EAC7C,GAAI0G,GAAiBA,EAAc7B,aAAa,mBAAmB,IAAM,KAAM,CAC7E8B,EAAgBD,CAAa,EAAE,IAAI,CACrC,CACA,GAAID,EAAcC,CAAa,EAAG,CAChCzI,QAAQ4I,YAAYH,CAAa,CACnC,CACF,CACF,EAAG,IAAI,EAEP,IAAII,EAAU,CACZC,GAAI,CACFC,IAAK,SACLC,IAAKC,EACLC,IAAK,sCACLC,IAAK,SACP,EACAC,GAAI,CACFL,IAAK,IACLC,IAAKK,EACLH,IAAK,4BACLC,IAAK,SACP,EACAG,GAAI,CACFP,IAAK,IACLC,IAAKO,EAAW,CAACxJ,OAAOyJ,WAAW,EACnCN,IAAK,qBACLC,IAAK,YACP,EACAM,GAAI,CACFV,IAAK,IACLC,IAAKO,EAAWxJ,OAAOyJ,WAAW,EAClCN,IAAK,uBACLC,IAAK,YACP,EACAO,GAAI,CACFX,IAAK,IACLC,IAAKO,EAAW,CAACxJ,OAAOyJ,YAAc,CAAC,EACvCN,IAAK,wBACLC,IAAK,YACP,EACAQ,GAAI,CACFZ,IAAK,IACLC,IAAKO,EAAWxJ,OAAOyJ,YAAc,CAAC,EACtCN,IAAK,0BACLC,IAAK,YACP,EACAS,GAAI,CACFb,IAAK,IACLC,IAAKa,EAAa,CAAC/I,SAASyD,KAAKuF,aAAc,KAAK,EACpDZ,IAAK,gCACLC,IAAK,YACP,EACAY,GAAI,CACFhB,IAAK,IACLC,IAAKa,EAAa/I,SAASyD,KAAKuF,aAAc,QAAQ,EACtDZ,IAAK,mCACLC,IAAK,YACP,EACAa,GAAI,CACFjB,IAAK,IACLC,IAAKN,EAAgB,IAAI,EACzBQ,IAAK,gCACLC,IAAK,SACP,EACAc,GAAI,CACFlB,IAAK,IACLC,IAAKN,EAAgB,MAAM,EAC3BQ,IAAK,4BACLC,IAAK,SACP,EACAe,GAAI,CACFnB,IAAK,IACLC,IAAKmB,EAAiB,EACtBjB,IAAK,sBACLC,IAAK,SACP,EACAiB,GAAI,CACFrB,IAAK,IACLC,IAAKqB,EAAa,EAClBnB,IAAK,kBACLC,IAAK,SACP,EACAmB,GAAI,CACFvB,IAAK,IACLC,IAAKuB,EAAW,KAAK,EACrBrB,IAAK,qBACLC,IAAK,SACP,EACAqB,GAAI,CACFzB,IAAK,IACLC,IAAKuB,EAAW,IAAI,EACpBrB,IAAK,+BACLC,IAAK,SACP,EACAsB,GAAI,CACF1B,IAAK,IACLC,IAAK0B,EACLxB,IAAK,8BACLC,IAAK,SACP,EACAwB,GAAI,CACF5B,IAAK,IACLC,IAAK4B,EACL1B,IAAK,qBACLC,IAAK,OACP,CACF,EAEA,GAAInJ,QAAQ+D,SAAS8G,QAAS,CAC5B7K,QAAQ0B,GAAGZ,SAAU,UAAW,SAAUO,GAExC,GAAIyJ,OAAO7J,UAAU8J,eAAezJ,KAAKuH,EAASxH,EAAE2J,OAAO,GAAK,CAAC3J,EAAE4J,SAAW,CAAC5J,EAAE6J,QAAU,CAAC7J,EAAE8J,UAAY,CAAC9J,EAAE+J,QAAS,CACpH,IAAIC,EAAUhK,EAAEU,OAAOsJ,QAAQC,YAAY,EAC3C,GAAIjK,EAAE2J,UAAY,GAAI,CACpBnC,EAAQxH,EAAE2J,SAAShC,IAAI3H,CAAC,CAC1B,KAAO,CACL,GAAIA,EAAEU,SAAWjB,SAASyD,MAAQ8G,IAAY,KAAOA,IAAY,SAAU,CACzEhK,EAAEsH,eAAe,EACjBE,EAAQxH,EAAE2J,SAAShC,IAAI,CACzB,CACF,CACF,CACF,CAAC,CACH,CAEA,SAASN,EAAiB6C,GACxB,OAAO,SAAUC,EAAUC,GACzB,IAAIC,EAAU5K,SAAS2F,cAAc,4BAA4B,EAC/DkF,EAAiBJ,EACnB,GAAIG,IAAY,KAAM,CAEpBA,EAAU5K,SAAS2F,cAAc,SAAS,EAC1C,GAAIiF,IAAY,KAAM,CAEpB,MACF,CAEA,GAAIH,IAAU,QAAUA,IAAU,KAAM,CACtCI,EAAiBD,CACnB,CACF,CAEA,IAAIE,EAAMC,EAAU/K,SAASC,iBAAiB,SAAS,EAEvD,GAAI,OAAO4K,IAAmB,SAAU,CACtCC,EAAOD,CACT,KAAO,CACL,OAAQA,GACR,IAAK,UACH,IAAIG,EAAMhL,SAASiL,gBAAgBC,WAAalL,SAASyD,KAAKyH,UAC9D,IAAIC,EAAMH,EAAMhL,SAASiL,gBAAgBG,aAEzC,IAAK,IAAIlL,EAAI,EAAGA,EAAI6K,EAAQzE,OAAQpG,CAAC,GAAI,CACvC4K,EAAOC,EAAQ7K,GACf,IAAImL,EAAOP,EAAKQ,UAChB,IAAIC,EAAOF,EAAOP,EAAKM,aAEvB,GAAKG,GAAQJ,GAASE,EAAOL,EAAM,CACjC,KACF,CACF,CACA,MACF,IAAK,OACHF,EAAOF,EAAQY,mBACf,GAAIV,IAAS,KAAM,CACjBA,EAAOC,EAAQ,EACjB,CACA,MACF,IAAK,KACHD,EAAOF,EAAQa,uBACf,GAAIX,IAAS,KAAM,CACjBA,EAAOC,EAAQA,EAAQzE,OAAS,EAClC,CACA,MACF,IAAK,SACHwE,EAAOC,EAAQA,EAAQzE,OAAS,GAChC,MACF,IAAK,MAEL,QACEwE,EAAOC,EAAQ,EACjB,CACF,CAEA,GAAID,EAAM,CACRF,EAAQc,gBAAgB,mBAAmB,EAC3CZ,EAAKtH,aAAa,oBAAqB,MAAM,EAC7C,GAAI,CAACmH,EAAW,CACd,IAAIgB,EAAOb,EAAKnF,cAAc,MAAM,GAAKmF,EAAKnF,cAAc,GAAG,EAC/D,GAAIgG,IAAS,KAAM,CACjBA,EAAKC,MAAM,CACb,CACF,CACA,GAAI,CAAClB,EAAU,CACbmB,EAAqB,CACvB,CACF,CACF,CACF,CAEA,SAASjC,IACP5J,SAAS8L,SAASC,OAAO,IAAI,CAC/B,CAEA,SAAS5D,EAAa5H,GACpB,MAAMgK,EAAUhK,EAAEU,OAAOsJ,QAAQC,YAAY,EAC7C,GAAIxK,SAASgM,gBAAkBzB,IAAY,SAAWA,IAAY,UAAYA,IAAY,YAAa,CACrGvK,SAASgM,cAAcC,KAAK,CAC9B,KAAO,CACL/M,QAAQgN,YAAY,CACtB,CACF,CAEA,SAASC,EAAiBC,GACxB,OAAO,WACL,IAAIC,EAASrM,SAAS2F,cAAcyG,CAAY,EAChD,GAAIC,EAAQ,CACVA,EAAOC,MAAM,CACf,CACF,CACF,CAEA,SAAS/C,IACP,OAAO4C,EAAgB,iDAAiD,CAC1E,CAEA,SAAS9C,IACP,OAAO8C,EAAgB,qDAAqD,CAC9E,CAEA,SAASN,IACP,IAAIU,EAAMvM,SAAS2F,cAAc,4BAA4B,EAC7D,GAAI4G,IAAQ,KAAM,CAChB,MACF,CACA,IAAIC,EAAOxM,SAASiL,gBAAgBC,WAAalL,SAASyD,KAAKyH,UAC7DuB,EAAUzM,SAASiL,gBAAgBG,aACnCC,EAAOkB,EAAIjB,UACXC,EAAOF,EAAOkB,EAAInB,aAClBsB,EAAS,IAEX,GAAKH,EAAId,yBAA2B,MAAUF,EAAOkB,EAAU,CAG7DxN,OAAO0N,OAAO1N,OAAO2N,QAAS,CAAC,EAC/B,MACF,CACA,GAAIJ,EAAQnB,EAAOqB,EAAS,CAC1BzN,OAAO0N,OAAO1N,OAAO2N,QAASvB,EAAOqB,CAAM,CAC7C,KAAO,CACL,IAAIG,EAAOL,EAAOC,EAClB,GAAII,EAAQtB,EAAOmB,EAAS,CAC1BzN,OAAO0N,OAAO1N,OAAO2N,QAASrB,EAAOkB,EAAUC,CAAM,CACvD,CACF,CACF,CAEA,SAASjE,EAAYqE,GACnB,OAAO,WACL7N,OAAO8N,SAAS,EAAGD,CAAM,EACzBlF,EAAgB,SAAS,EAAE,CAC7B,CACF,CAEA,SAASmB,EAAciE,EAAUC,GAC/B,OAAO,WACLhO,OAAOiO,SAAS,EAAGF,CAAQ,EAC3BpF,EAAgBqF,CAAG,EAAE,CACvB,CACF,CAEA,SAAS1E,IACPtJ,OAAOiO,SAAS,EAAG,CAAC,EACpB,IAAIC,EAAInN,SAAS2F,cAAc,IAAI,EACnCwH,EAAEvB,MAAM,EACR,GAAIuB,EAAEC,kBAAmB,CACvB,IAAIC,EAAMF,EAAEG,MAAMhH,OAClB6G,EAAEC,kBAAkBC,EAAKA,CAAG,CAC9B,CACF,CAEA,SAAS5D,EAAY8D,GACnB,OAAO,WACL,IAAI5B,EAAO3L,SAAS2F,cAAc,iCAAiC,EACnE,GAAIgG,IAAS,KAAM,CACjBA,EAAO3L,SAAS2F,cAAc,gCAAgC,CAChE,CACA,GAAIgG,IAAS,KAAM,CACjB,IAAIjK,EAAMiK,EAAK7F,aAAa,MAAM,EAClC,GAAIyH,EAAQ,CACVtO,OAAOgD,KAAKP,CAAG,CACjB,KAAO,CACLzC,OAAO6M,SAAS0B,KAAO9L,CACzB,CACF,CACF,CACF,CAEA,SAAS+L,EAAiBC,GACxB,IAAIC,EAAa,GAEjB,IAAK,IAAIC,KAAK7F,EAAS,CACrB,IAAIE,EAAMF,EAAQ6F,GAClBD,EAAW1F,EAAII,KAAOsF,EAAW1F,EAAII,MAAQ,GAC7CsF,EAAW1F,EAAII,KAAKwF,KAAK5F,CAAG,CAC9B,CAEA,IAAI6F,EAAS9D,OAAO+D,KAAKJ,CAAU,EAAEK,KAAK,SAAUC,EAAGC,GACrD,OAAOP,EAAWO,GAAG5H,OAASqH,EAAWM,GAAG3H,MAC9C,CAAC,EAED,GAAIwH,EAAOxH,SAAW,EAAG,CACvB,MACF,CAEA,IAAI6H,EAAO,mEACXA,GAAQ,uDACRA,GAAQ,UAER,IAAK,IAAIjO,EAAI,EAAGA,EAAI4N,EAAOxH,OAAQpG,CAAC,GAAI,CACtC,IAAImI,EAAMsF,EAAWG,EAAO5N,IAE5B,IAAIkO,EAAelO,IAAO4N,EAAOxH,OAAS,EAC1C,IAAI+H,EAAQnO,EAAI,IAAM,EAEtB,GAAImO,EAAO,CACTF,GAAQ,MACV,CACAA,GAAQ,OAERA,GAAQ,OAAS9F,EAAI,GAAGA,IAAM,QAC9B8F,GAAQ,6BAER,IAAK,IAAIG,KAAMjG,EAAK,CAClB8F,GAAQ,YAAc9F,EAAIiG,GAAIrG,IAAM,UAAYI,EAAIiG,GAAIlG,IAAM,OAChE,CAEA+F,GAAQ,QACRA,GAAQ,QAER,GAAI,CAACE,GAASD,EAAc,CAC1BD,GAAQ,OACV,CACF,CAEAA,GAAQ,WAERT,EAAWa,UAAYJ,CACzB,CAEA,SAASrE,IACP,IAAI0E,EAAYxO,SAAS2F,cAAc,mBAAmB,EAC1D,GAAI6I,IAAchH,WAAagH,IAAc,KAAM,CAEjDA,EAAYxO,SAASuD,cAAc,KAAK,EACxCiL,EAAUrL,GAAK,mBACfqL,EAAUlK,UAAY,eACtBmJ,EAAgBe,CAAS,EACzBf,EAAgBe,CAAS,EACzBf,EAAgBe,CAAS,EACzB,IAAI/K,EAAOzD,SAASuE,qBAAqB,MAAM,EAAE,GACjDd,EAAKC,YAAY8K,CAAS,CAC5B,KAAO,CAELA,EAAUrK,UAAUsK,OAAO,WAAW,EACtC,MACF,CACF,CAEAvP,QAAQ2M,qBAAuBA,EAC/B3M,QAAQwP,WAAa9G,EAAgB,MAAM,EAC3C1I,QAAQyP,eAAiB/G,EAAgB,IAAI,CAC/C,CAAC,GClaD,SAAWzI,EAAGC,EAAGF,GACf,aAEAA,EAAQmC,MAAM,WACZnC,EAAQ0B,GAAG,oBAAqB,QAAS,SAAUgO,GAEjD/O,KAAKsE,UAAUkC,OAAO,kBAAkB,EAGxC,IAAIwI,EAAiBhP,KAAKiP,QAAQC,cAClC,IAAIC,EAAUC,WAAWpP,KAAKiP,QAAQI,MAAM,EAC5C,IAAIC,EAAUF,WAAWpP,KAAKiP,QAAQM,MAAM,EAC5C,IAAIC,EAAWJ,WAAWpP,KAAKiP,QAAQQ,OAAO,EAC9C,IAAIC,EAAkBC,KAAKC,MAAM5P,KAAKiP,QAAQY,cAAc,EAC5D,IAAIC,EAAcH,KAAKC,MAAM5P,KAAKiP,QAAQc,UAAU,EAEpD1Q,EAAQ4D,UAAU,iBAAiB,EACnC5D,EAAQyE,WAAW,gBAAiB,WAClC,IAAIkM,EAAa,KACjB,GAAIN,EAAiB,CACnB,IAAIO,EAAYC,EAAEC,OAAOT,EAAgB,GAAIA,EAAgB,EAAE,EAC/D,IAAIU,EAAYF,EAAEC,OAAOT,EAAgB,GAAIA,EAAgB,EAAE,EAC/DM,EAAaE,EAAEG,aAAaJ,EAAWG,CAAS,CAClD,CAGA,IAAIE,EAAMJ,EAAEI,IAAItB,CAAc,EAE9B,IAAIuB,EAAe,qDACnB,IAAIC,EAAkB,gFACtB,IAAIC,EAAY,IAAIP,EAAEQ,UAAUH,EAAc,CAACI,QAAS,EAAGC,QAAS,GAAIC,YAAaL,CAAe,CAAC,EACrG,IAAIM,EAAkB,sDACtB,IAAIC,EAAqB,kGACzB,IAAIC,EAAe,IAAId,EAAEQ,UAAUI,EAAiB,CAACH,QAAS,EAAGC,QAAS,GAAIC,YAAaE,CAAkB,CAAC,EAE9G,GAAIf,EAAY,CAGdiB,WAAW,WACTX,EAAIY,UAAUlB,EAAY,CACxBY,QAAS,EACX,CAAC,CACH,EAAG,CAAC,CACN,MAAO,GAAIzB,GAAWG,EAAS,CAC7B,GAAIE,EAAU,CACZc,EAAIa,QAAQ,IAAIjB,EAAEC,OAAOb,EAASH,CAAO,EAAGK,CAAQ,CACtD,KAAO,CACLc,EAAIa,QAAQ,IAAIjB,EAAEC,OAAOb,EAASH,CAAO,EAAG,CAAC,CAC/C,CACF,CAEAmB,EAAIc,SAASX,CAAS,EAEtB,IAAIY,EAAa,CACfC,aAAcb,EACdc,gBAAiBP,CACnB,EAEAd,EAAEsB,QAAQC,OAAOJ,CAAU,EAAEK,MAAMpB,CAAG,EAEtC,GAAIR,EAAa,CACfI,EAAEyB,QAAQ7B,CAAW,EAAE4B,MAAMpB,CAAG,CAClC,CAGF,CAAC,EAGDvB,EAAM/G,eAAe,CACvB,CAAC,CACH,CAAC,CACF,GAAE5I,OAAQe,SAAUf,OAAOC,OAAO,GCxEnC,SAAWC,EAAGC,EAAGF,GACf,aAEA,GAAIA,EAAQyF,WAAa,cAAe,CACtC,MACF,CAEAzF,EAAQmC,MAAM,WACZyD,IAAI2M,EAAsB,KAC1B,SAASC,IACP,GAAID,GAAuB,KAAM,CAC/BvS,EAAQsC,KAAK,MAAO,0BAA0B,EAAEuE,KAAK,SAAU4L,GAC7DF,EAAsBjC,KAAKC,MAAMkC,CAAO,EACxC,IAAK,KAAM,CAACC,EAAaC,KAAgB7H,OAAO9C,QAAQuK,CAAmB,EAAG,CAC5E3M,IAAIgN,EAAW1S,EAAEa,iBAAiB,sBAAwB2R,EAAc,wBAAwB,EAChG,IAAK,MAAMxM,KAAW0M,EAAU,CAC9BhN,IAAIiN,EAAS,QAAU7S,EAAQ+D,SAASyD,aAAasL,OAAS,UAAYH,EAAY,GAAK,QAC3FzM,EAAQmJ,UAAYsD,EAAY,GAAKE,CACvC,CACF,CACF,CAAC,CACH,CACF,CAEA,IAAK,MAAMzR,KAAMlB,EAAEa,iBAAiB,oBAAoB,EAAG,CACzDf,EAAQ0B,GAAGN,EAAI,aAAcoR,CAAwB,CACvD,CACF,CAAC,CACF,GAAEzS,OAAQe,SAAUf,OAAOC,OAAO,GC5BnC,SAAWC,EAAGC,EAAGF,GACf,aAEA,GAAIA,EAAQyF,WAAa,UAAW,CAClC,MACF,CAEAzF,EAAQmC,MAAM,WACZjC,EAAEa,iBAAiB,iBAAiB,EAAEsF,QACpC0M,GACEA,EAAIjR,iBACF,QAAS,KACPiR,EAAIC,MAAMC,QAAU,OACpBF,EAAIG,MAAQ,IACd,CACF,CAAC,EAELlT,EAAQ0B,GAAG,gBAAiB,QAAS,WACnC,IAAIyR,EAAoBxS,KAAKiG,aAAa,yBAAyB,EACnE,IAAIwM,EAAuBzS,KAAKiG,aAAa,6BAA6B,EAC1E,IAAI7E,EAASpB,KAAKiG,aAAa,aAAa,EAC5C,IAAIyM,EAAgBnT,EAAEuG,cAAc1E,CAAM,EAC1C,IAAIkN,EAAOtO,KAAK0O,UAChB,GAAI1O,KAAKsE,UAAUa,SAAS,WAAW,EAAG,CACxCmJ,EAAOA,EAAK/K,QAAQiP,EAAmBC,CAAoB,CAC7D,KAAO,CACLnE,EAAOA,EAAK/K,QAAQkP,EAAsBD,CAAiB,CAC7D,CACAxS,KAAK0O,UAAYJ,EACjBtO,KAAKsE,UAAUsK,OAAO,WAAW,EACjC8D,EAAcpO,UAAUsK,OAAO,WAAW,CAC5C,CAAC,EAEDvP,EAAQ0B,GAAG,gBAAiB,QAAS,WACnC,IAAIK,EAASpB,KAAKiG,aAAa,aAAa,EAC5C,IAAI0M,EAAcpT,EAAEuG,cAAc1E,EAAS,WAAW,EACtD,IAAIwR,EAAUD,EAAY1M,aAAa,KAAK,EAC5C,GAAI2M,IAAY,MAAQA,IAAYjL,WAAaiL,IAAY,MAAO,CAClED,EAAYhP,aAAa,MAAOgP,EAAY1M,aAAa,UAAU,CAAC,CACtE,CACF,CAAC,EAED5G,EAAQ4I,YAAc,SAAUH,GAE9B,GAAIA,EAAe,CAEjB,MAAM+K,EAAa/K,EAAchC,cAAc,2BAA2B,EAC1E,MAAMgN,EAAmBhL,EAAchC,cAAc,kBAAkB,EACvE,MAAMiN,EAAgBjL,EAAchC,cAAc,SAAS,EAC3D,GAAI+M,EAAY,CACd,MAAMG,EAASH,EAAW5M,aAAa,UAAU,EACjD,GAAI+M,EAAQ,CACV,MAAM3N,EAAS9F,EAAEmE,cAAc,KAAK,EACpC,MAAMuP,EAAY,IAAIC,MAEtB7N,EAAOf,UAAUC,IAAI,QAAQ,EAC7BwO,EAAclP,YAAYwB,CAAM,EAEhC4N,EAAU3Q,OAAS5B,IACjBmS,EAAW3P,IAAM8P,EACjB3N,EAAOmB,OAAO,CAChB,EACAyM,EAAUrQ,QAAUlC,IAClB2E,EAAOmB,OAAO,CAChB,EACAyM,EAAU/P,IAAM8P,EAChBH,EAAW3P,IAAM4P,EAAiB5P,IAClC2P,EAAWhH,gBAAgB,UAAU,CACvC,CACF,CACF,CACAtM,EAAEkE,eAAe,SAAS,EAAEa,UAAUC,IAAI,mBAAmB,EAC7DlF,EAAQ2M,qBAAqB,CAC/B,EAEA3M,EAAQgN,YAAc,SAAU3L,GAC9BnB,EAAEkE,eAAe,SAAS,EAAEa,UAAUkC,OAAO,mBAAmB,EAChEnH,EAAQ2M,qBAAqB,CAC/B,EACA3M,EAAQ0B,GAAG,uBAAwB,QAASL,IAC1CA,EAAEsH,eAAe,EACjB3I,EAAQgN,YAAY,CACtB,CAAC,EACDhN,EAAQ0B,GAAG,0BAA2B,QAASL,GAAKrB,EAAQyP,eAAe,KAAK,CAAC,EACjFzP,EAAQ0B,GAAG,sBAAuB,QAASL,GAAKrB,EAAQwP,WAAW,KAAK,CAAC,EAEzEvP,EAAE6B,iBAAiB,SAAU,WAC3B,IAAIT,EAAInB,EAAEkE,eAAe,WAAW,EAClC4H,EAAYlL,SAASiL,gBAAgBC,WAAalL,SAASyD,KAAKyH,UAChEH,EAAU3L,EAAEkE,eAAe,SAAS,EACtC,GAAI/C,IAAM,KAAM,CACd,GAAI2K,GAAa,IAAK,CACpBH,EAAQ5G,UAAUC,IAAI,WAAW,CACnC,KAAO,CACL2G,EAAQ5G,UAAUkC,OAAO,WAAW,CACtC,CACF,CACF,EAAG,IAAI,CAET,CAAC,CAEF,GAAEpH,OAAQe,SAAUf,OAAOC,OAAO,GCpGnC,SAAWC,EAAGC,EAAGF,GACf,aAEA,IAAI8T,EAAY,IAAKC,EAErB,MAAMC,EAAWjU,OAAOkU,WAAW,mCAAmC,EAAE5T,QAExE,SAAS6T,IACP,GAAIH,EAAO3F,MAAMhH,OAAU,EAAG,CAC5B,IAAI+M,EAASrT,SAASsD,eAAe,QAAQ,EAC7CwN,WAAWuC,EAAOC,OAAO/R,KAAK8R,CAAM,EAAG,CAAC,CAC1C,CACF,CAEA,SAASE,EAAmBN,GAC1B,IAAIO,EAAKxT,SAASsD,eAAe,cAAc,EAC/C,IAAImQ,EAAoB,WACtB,GAAIR,EAAO3F,MAAMhH,SAAW,EAAG,CAC7BkN,EAAGrP,UAAUC,IAAI,OAAO,CAC1B,KAAO,CACLoP,EAAGrP,UAAUkC,OAAO,OAAO,CAC7B,CACF,EAGAoN,EAAkB,EAClBD,EAAGxS,iBAAiB,QAAS,SAAU0S,GACrCT,EAAO3F,MAAQ,GACf2F,EAAOrH,MAAM,EACb6H,EAAkB,EAClBC,EAAG7L,eAAe,CACpB,CAAC,EACDoL,EAAOjS,iBAAiB,QAASyS,EAAmB,KAAK,CAC3D,CAEAvU,EAAQmC,MAAM,WACZ4R,EAAS7T,EAAEkE,eAAe0P,CAAS,EAEnC,GAAIC,IAAW,KAAM,CAEnBM,EAAkBN,CAAM,EAGxB,GAAI/T,EAAQ+D,SAAS0Q,sBAAuB,CAC1CzU,EAAQ0U,aAAeC,aAAarT,KAAKrB,EAAG,CAC1C2U,IAAK,kBACLC,aAAc7U,EAAQ+D,SAASyD,aAAasN,cAC5CC,WAAY/U,EAAQ+D,SAASiR,YAC7BC,YAAa,CACXC,eAAgB,oCAChBC,mBAAoB,gBACtB,EACAC,SAAUpV,EAAQ+D,SAASsR,iBAC3BC,MAAO,IACPC,UAAW,aACXC,MAAO,WACL,IAAIC,EAAS9U,KACb+U,MAAMzU,UAAUoF,QAAQ/E,KAAKX,KAAKgV,WAAWtQ,qBAAqB,IAAI,EAAG,SAAUuQ,GACjF,GAAIA,EAAGhP,aAAa,OAAO,GAAK,SAAU,CACxCgP,EAAGC,YAAc,WACfJ,EAAOK,QAAQF,CAAE,CACnB,CACF,CACF,CAAC,CACH,CACF,EAAG,IAAM9B,CAAS,CACpB,CAuBAa,aAAa1T,UAAU8U,KAAO,SAAUN,EAAQO,EAAShT,GACvD,GAAIA,IAAY,KAAK,EAAG,CAAEA,EAAU,IAAM,CAC1C,GAAIyS,EAAOQ,WAAY,CACrBlW,OAAOmW,aAAaT,EAAOQ,UAAU,CACvC,CACA,GAAIjT,IAAY,KAAM,CACpByS,EAAOQ,WAAalW,OAAO6R,WAAW+C,aAAa1T,UAAU8U,KAAK1T,KAAK,KAAMoT,EAAQO,EAAS,KAAK,EAAGP,EAAOH,KAAK,CACpH,KAAO,CACL,GAAIG,EAAOU,QAAS,CAClBV,EAAOU,QAAQC,MAAM,CACvB,CACAX,EAAOU,QAAUH,EACjBP,EAAOU,QAAQzS,KAAK2S,mBAAmBZ,EAAOa,UAAU,CAAC,EAAI,IAAMD,mBAAmBZ,EAAOc,KAAK,CAAC,CAAC,CACtG,CACF,EAEA,GAAI,CAACvC,GAAYlT,SAAS2F,cAAc,iBAAiB,EAAG,CAC1DsN,EAAOrH,MAAM,CACf,CACF,CAGA,GAAIqH,IAAW,MAAQ7T,EAAEuG,cAAc,OAAO,GAAK,MAAQzG,EAAQ+D,SAASyS,0BAA2B,CACrGtW,EAAEuG,cAAc,OAAO,EAAErB,UAAY,YAErCpF,EAAQ0B,GAAG,oBAAqB,SAAU,WACxC,IAAIV,EAAGyN,EAAavO,EAAEa,iBAAiB,oCAAoC,EAC3E,IAAKC,EAAI,EAAGA,EAAIyN,EAAWrH,OAAQpG,CAAC,GAAI,CACtC,GAAIyN,EAAWzN,KAAOL,MAAQ8N,EAAWzN,GAAGyV,QAAS,CACnDhI,EAAWzN,GAAGoM,MAAM,CACtB,CACF,CACA,GAAI,CAAEzM,KAAK8V,QAAS,CAClB9V,KAAKyM,MAAM,CACb,CACA8G,EAAc,EACd,OAAO,KACT,CAAC,EAEDlU,EAAQ0B,GAAGxB,EAAEkE,eAAe,YAAY,EAAG,SAAU8P,CAAa,EAClElU,EAAQ0B,GAAGxB,EAAEkE,eAAe,YAAY,EAAG,SAAU8P,CAAa,EAClElU,EAAQ0B,GAAGxB,EAAEkE,eAAe,UAAU,EAAG,SAAU8P,CAAa,CAClE,CAEF,CAAC,CAEF,GAAEnU,OAAQe,SAAUf,OAAOC,OAAO,GCzInC,SAAU0W,GAAG,GAAG,OAAOC,UAAU,UAAU,OAAOC,SAAS,YAAY,CAACA,OAAOD,QAAQD,EAAE,CAAC,MAAM,GAAG,OAAOG,SAAS,YAAYA,OAAOC,IAAI,CAACD,OAAO,GAAGH,CAAC,CAAC,KAAK,CAAC,IAAIK,EAAE,GAAG,OAAOhX,SAAS,YAAY,CAACgX,EAAEhX,MAAM,MAAM,GAAG,OAAOiX,SAAS,YAAY,CAACD,EAAEC,MAAM,MAAM,GAAG,OAAOC,OAAO,YAAY,CAACF,EAAEE,IAAI,KAAK,CAACF,EAAEpW,IAAI,CAACoW,EAAEpC,aAAe+B,EAAE,CAAC,CAAE,GAAE,WAAW,IAAIG,EAAOD,EAAOD,EAAQ,OAAO,WAAY,SAASO,EAAE7V,EAAE8V,EAAEC,GAAG,SAASC,EAAErW,EAAE0V,GAAG,GAAG,CAACS,EAAEnW,GAAG,CAAC,GAAG,CAACK,EAAEL,GAAG,CAAC,IAAIsW,EAAE,YAAY,OAAOC,SAASA,QAAQ,GAAG,CAACb,GAAGY,EAAE,OAAOA,EAAEtW,EAAE,CAAC,CAAC,EAAE,GAAGwW,EAAE,OAAOA,EAAExW,EAAE,CAAC,CAAC,EAAE,IAAI+N,EAAE,IAAI1L,MAAM,uBAAuBrC,EAAE,GAAG,EAAE,MAAM+N,EAAE0I,KAAK,mBAAmB1I,CAAC,CAAC,IAAI2I,EAAEP,EAAEnW,GAAG,CAAC2V,QAAQ,EAAE,EAAEtV,EAAEL,GAAG,GAAGM,KAAKoW,EAAEf,QAAQ,SAASO,GAAG,IAAIC,EAAE9V,EAAEL,GAAG,GAAGkW,GAAG,OAAOG,EAAEF,GAAGD,CAAC,CAAC,EAAEQ,EAAEA,EAAEf,QAAQO,EAAE7V,EAAE8V,EAAEC,CAAC,CAAC,CAAC,OAAOD,EAAEnW,GAAG2V,OAAO,CAAC,IAAI,IAAIa,EAAE,YAAY,OAAOD,SAASA,QAAQvW,EAAE,EAAEA,EAAEoW,EAAEhQ,OAAOpG,CAAC,GAAGqW,EAAED,EAAEpW,EAAE,EAAE,OAAOqW,CAAC,CAAC,OAAOH,CAAE,EAAE,EAAE,CAACS,EAAE,CAAC,SAASJ,EAAQX,EAAOD;;;;;;;;;GAU51B;aACA,IAAIiB,GACJ,SAAWA,GACPA,EAAkBA,EAAkB,OAAS,GAAK,MAClDA,EAAkBA,EAAkB,MAAQ,GAAK,IACpD,GAAEA,IAAsBA,EAAoB,GAAG,EAChD,IAAIC,GACJ,SAAWA,GACPA,EAAUA,EAAU,WAAa,GAAK,UACtCA,EAAUA,EAAU,SAAW,GAAK,OACvC,GAAEA,IAAcA,EAAY,GAAG,EAOhC,IAAIlD,EAA8B,WAE9B,SAASA,EAAac,EAAQhV,GAC1B,GAAIgV,IAAW,KAAK,EAAG,CAAEA,EAAS,EAAI,CACtC,GAAIhV,IAAa,KAAK,EAAG,CAAEA,EAAW,qBAAuB,CAC7D,GAAIiV,MAAMoC,QAAQrX,CAAQ,EAAG,CACzBA,EAAS4F,QAAQ,SAAUlC,GACvB,IAAIwQ,EAAac,EAAQtR,CAAC,CAC9B,CAAC,CACL,MACK,GAAI,OAAO1D,GAAY,SAAU,CAClC,IAAImS,EAAW9R,SAASC,iBAAiBN,CAAQ,EACjDiV,MAAMzU,UAAUoF,QAAQ/E,KAAKsR,EAAU,SAAUmF,GAC7C,IAAIpD,EAAac,EAAQsC,CAAK,CAClC,CAAC,CACL,KACK,CACD,IAAIC,EAAiBrD,EAAasD,MAAMtD,EAAauD,SAAUzC,EAAQ,CACnEE,WAAY7U,SAASuD,cAAc,KAAK,CAC5C,CAAC,EACDsQ,EAAa1T,UAAUkX,OAAOH,EAAgBvX,CAAQ,EACtD,OAAOuX,CACX,CACJ,CACArD,EAAa1T,UAAUkX,OAAS,SAAU1C,EAAQvP,GAC9CuP,EAAO2C,MAAQlS,EACf,GAAIuP,EAAO2C,MAAMC,SAASC,MAAM,UAAU,IAAM7C,EAAO2C,MAAM1T,aAAa,MAAM,IAAM,OAAS+Q,EAAO2C,MAAMxR,aAAa,MAAM,EAAE0R,MAAM,gBAAgB,GAAI,CACvJ7C,EAAO2C,MAAM9T,aAAa,eAAgB,KAAK,EAC/CmR,EAAOF,UAAUE,CAAM,EACvBA,EAAO2C,MAAMvX,WAAW2D,YAAYiR,EAAOE,UAAU,EACrDF,EAAO8C,WAAa,CAChBxL,KAAM0I,EAAO+C,MAAMnW,KAAKoT,CAAM,EAC9BgD,QAAS9D,EAAa1T,UAAUwX,QAAQpW,KAAK,KAAMoT,CAAM,EACzD/I,MAAO+I,EAAOiD,OAAOrW,KAAKoT,CAAM,EAChCkD,MAAOhE,EAAa1T,UAAUyO,MAAMrN,KAAK,KAAMoT,EAAQoC,EAAUe,KAAK,EACtEC,QAASlE,EAAa1T,UAAUyO,MAAMrN,KAAK,KAAMoT,EAAQoC,EAAUiB,OAAO,EAC1EhL,SAAU2H,EAAOF,UAAUlT,KAAKoT,CAAM,CAC1C,EACA,IAAK,IAAI/F,KAAS+F,EAAO8C,WAAY,CACjC9C,EAAO2C,MAAMtW,iBAAiB4N,EAAO+F,EAAO8C,WAAW7I,EAAM,CACjE,CACJ,CACJ,EACAiF,EAAa1T,UAAU8X,gBAAkB,SAAUtD,EAAQuD,GACvD,IAAIC,EAAW,GACf,IAAK,IAAIlQ,KAAO0M,EAAOyD,iBAAkB,CACrC,IAAIxJ,EAAQmI,EAAUe,MACtB,GAAInD,EAAOyD,iBAAiBnQ,GAAKoQ,QAAU7Q,UAAW,CAClDoH,EAAQ+F,EAAOyD,iBAAiBnQ,GAAKoQ,KACzC,CACA,GAAIzJ,GAASsJ,EAAM,CACfC,EAASlQ,GAAO0M,EAAOyD,iBAAiBnQ,EAC5C,CACJ,CACA,OAAOkQ,CACX,EACAtE,EAAa1T,UAAUyO,MAAQ,SAAU+F,EAAQuD,EAAMtJ,GACnD,IAAI0J,EAAkB,SAAUC,GAC5B,GAAKf,IAAU,MAAQgB,EAAQC,UAAY3B,EAAkB4B,KAASlB,IAAU,OAASgB,EAAQC,UAAY3B,EAAkB6B,GAAK,CAChIJ,EAAY1E,EAAasD,MAAM,CAC3ByB,IAAK,KACT,EAAGL,CAAS,EACZ,GAAIA,EAAUtO,eAAe,IAAI,EAAG,CAChC,GAAIsO,EAAUM,IAAMjK,EAAM1E,QAAS,CAC/BsN,EAAQ,CAACe,EAAUK,GACvB,KACK,CACDpB,EAAQe,EAAUK,GACtB,CACJ,MACK,GAAIL,EAAUtO,eAAe,MAAM,GAAKsO,EAAUtO,eAAe,IAAI,EAAG,CACzE,GAAI2E,EAAM1E,SAAWqO,EAAUO,MAAQlK,EAAM1E,SAAWqO,EAAUQ,GAAI,CAClEvB,EAAQ,CAACe,EAAUK,GACvB,KACK,CACDpB,EAAQe,EAAUK,GACtB,CACJ,CACJ,CACJ,EACA,IAAK,IAAII,KAAQnF,EAAa1T,UAAU8X,gBAAgBtD,EAAQuD,CAAI,EAAG,CACnE,IAAIM,EAAU3E,EAAasD,MAAM,CAC7BsB,SAAU3B,EAAkB4B,GAChC,EAAG/D,EAAOyD,iBAAiBY,EAAK,EAAGxB,EAAQV,EAAkB4B,KAAOF,EAAQC,SAC5ED,EAAQS,WAAW1T,QAAQ+S,CAAe,EAC1C,GAAId,IAAU,KAAM,CAChBgB,EAAQU,SAAS1Y,KAAKmU,EAAQ/F,CAAK,CACvC,CACJ,CACJ,EACAiF,EAAa1T,UAAUgZ,YAAc,SAAUxE,EAAQtU,EAAU+Y,GAC7D,IAAIC,EAAsBrP,OAAOsP,oBAAoB3E,EAAOR,WAAW,EAAGe,EAAU,IAAIlT,eAAkBP,EAASkT,EAAO4E,YAAY,EAAG7X,EAAMiT,EAAO6E,KAAK,EAAGC,EAAc9E,EAAOc,KAAK,EAAGiE,EAAuBnE,mBAAmBZ,EAAOa,UAAU,CAAC,EAAI,IAAMD,mBAAmBkE,CAAW,EAC/R,GAAIhY,EAAO+V,MAAM,QAAQ,EAAG,CACxB,GAAI9V,EAAIiY,QAAQ,GAAG,IAAM,CAAC,EAAG,CACzBjY,GAAO,IAAMgY,CACjB,KACK,CACDhY,GAAO,IAAMgY,CACjB,CACJ,CACAxE,EAAQjT,KAAKR,EAAQC,EAAK,IAAI,EAC9B,IAAK,IAAIxB,EAAImZ,EAAoB/S,OAAS,EAAGpG,GAAK,EAAGA,CAAC,GAAI,CACtDgV,EAAQ0E,iBAAiBP,EAAoBnZ,GAAIyU,EAAOR,YAAYkF,EAAoBnZ,GAAG,CAC/F,CACAgV,EAAQ2E,mBAAqB,WACzB,GAAI3E,EAAQ5T,YAAc,GAAK4T,EAAQ9S,QAAU,IAAK,CAClDuS,EAAOmF,OAAOL,GAAevE,EAAQ7S,SACrChC,EAAS6U,EAAQ7S,QAAQ,CAC7B,MACK,GAAI6S,EAAQ9S,QAAU,IAAK,CAC5BgX,EAAY,CAChB,CACJ,EACA,OAAOlE,CACX,EACArB,EAAa1T,UAAU8U,KAAO,SAAUN,EAAQO,EAAShT,GACrD,GAAIA,IAAY,KAAK,EAAG,CAAEA,EAAU,IAAM,CAC1C,GAAIyS,EAAOQ,WAAY,CACnBlW,OAAOmW,aAAaT,EAAOQ,UAAU,CACzC,CACA,GAAIjT,IAAY,KAAM,CAClByS,EAAOQ,WAAalW,OAAO6R,WAAW+C,EAAa1T,UAAU8U,KAAK1T,KAAK,KAAMoT,EAAQO,EAAS,KAAK,EAAGP,EAAOH,KAAK,CACtH,KACK,CACD,GAAIG,EAAOU,QAAS,CAChBV,EAAOU,QAAQC,MAAM,CACzB,CACAX,EAAOU,QAAUH,EACjBP,EAAOU,QAAQzS,KAAK+R,EAAOa,UAAU,EAAI,IAAMb,EAAOc,KAAK,CAAC,CAChE,CACJ,EACA5B,EAAa1T,UAAU4Z,MAAQ,SAAUpF,EAAQtU,EAAU+Y,GACvD,IAAI/W,EAAWsS,EAAOqF,OAAOrF,EAAOc,KAAK,CAAC,EAC1C,GAAIpT,IAAamF,UAAW,CACxB,IAAI0N,EAAUrB,EAAa1T,UAAUgZ,YAAYxE,EAAQtU,EAAU+Y,CAAW,EAC9EvF,EAAa1T,UAAU8U,KAAKN,EAAQO,CAAO,CAC/C,KACK,CACD7U,EAASgC,CAAQ,CACrB,CACJ,EACAwR,EAAa1T,UAAUwX,QAAU,SAAUhD,GACvC,IAAK,IAAI/F,KAAS+F,EAAO8C,WAAY,CACjC9C,EAAO2C,MAAM2C,oBAAoBrL,EAAO+F,EAAO8C,WAAW7I,EAAM,CACpE,CACA+F,EAAOE,WAAW9U,WAAWma,YAAYvF,EAAOE,UAAU,CAC9D,EACAhB,EAAasD,MAAQ,WACjB,IAAIA,EAAQ,GAAIgD,EAChB,IAAK,IAAIja,EAAI,EAAGA,EAAIka,UAAU9T,OAAQpG,CAAC,GAAI,CACvC,IAAKia,KAAOC,UAAUla,GAAI,CACtBiX,EAAMgD,GAAOC,UAAUla,GAAGia,EAC9B,CACJ,CACA,OAAOhD,CACX,EACAtD,EAAauD,SAAW,CACpB5C,MAAO,IACPT,aAAc,iBACdsG,UAAW,CACPC,SAAU,SAAUhN,GAChB,OAAO,IAAIiN,OAAOjN,EAAO,IAAI,CACjC,EACAkN,UAAW,SAAUlN,GACjB,MAAO,WAAaA,EAAQ,WAChC,CACJ,EACA6G,YAAa,CACTC,eAAgB,mCACpB,EACAqG,MAAO,EACPnG,SAAU,EACVL,WAAY,MACZyG,SAAU,IACV5G,IAAK,KACLsE,iBAAkB,CACduC,MAAS,CACL1B,WAAY,CAAC,CACLJ,GAAI,GACJD,IAAK,KACT,GACJM,SAAU,SAAUtK,GAChB,GAAI/O,KAAKgV,WAAW/O,aAAa,OAAO,EAAE6T,QAAQ,MAAM,GAAK,CAAC,EAAG,CAC7D,IAAIiB,EAAW/a,KAAKgV,WAAWlP,cAAc,WAAW,EACxD,GAAIiV,IAAa,KAAM,CACnBhM,EAAM/G,eAAe,EACrBhI,KAAKmV,QAAQ4F,CAAQ,EACrB/a,KAAKgV,WAAWrR,aAAa,QAAS,cAAc,CACxD,CACJ,CACJ,EACAiV,SAAU3B,EAAkB4B,IAC5BL,MAAOtB,EAAUiB,OACrB,EACA6C,kBAAqB,CACjB5B,WAAY,CAAC,CACLJ,GAAI,GACJD,IAAK,KACT,EACA,CACIC,GAAI,GACJD,IAAK,KACT,GACJM,SAAU,SAAUtK,GAChBA,EAAM/G,eAAe,CACzB,EACA4Q,SAAU3B,EAAkB6B,GAC5BN,MAAOtB,EAAUiB,OACrB,EACA8C,gBAAmB,CACf7B,WAAY,CAAC,CACLJ,GAAI,GACJD,IAAK,KACT,EACA,CACIC,GAAI,GACJD,IAAK,KACT,GACJM,SAAU,SAAUtK,GAChBA,EAAM/G,eAAe,EACrB,IAAIwG,EAAQxO,KAAKgV,WAAWlP,cAAc,6BAA6B,EAAGoV,EAAOlb,KAAKgV,WAAWlP,cAAc,4BAA4B,EAAGqV,EAASnb,KAAKgV,WAAWlP,cAAc,WAAW,EAChM,GAAIqV,EAAQ,CACR,IAAIC,EAAerG,MAAMzU,UAAUwZ,QAAQnZ,KAAKwa,EAAOjb,WAAWsF,SAAU2V,CAAM,EAAGhO,EAAWiO,GAAgBrM,EAAM1E,QAAU,IAAKgR,EAAWrb,KAAKgV,WAAWtQ,qBAAqB,IAAI,EAAE+B,OAC3L,GAAI0G,EAAW,EAAG,CACdA,EAAWkO,EAAW,CAC1B,MACK,GAAIlO,GAAYkO,EAAU,CAC3BlO,EAAW,CACf,CACAgO,EAAO7W,UAAUkC,OAAO,QAAQ,EAChC2U,EAAO5Z,cAAciE,SAAS8V,KAAKnO,CAAQ,EAAE7I,UAAUC,IAAI,QAAQ,CACvE,MACK,GAAI2W,GAAQnM,EAAM1E,SAAW,GAAI,CAClC6Q,EAAK5W,UAAUC,IAAI,QAAQ,CAC/B,MACK,GAAIiK,EAAO,CACZA,EAAMlK,UAAUC,IAAI,QAAQ,CAChC,CACJ,EACAqU,SAAU3B,EAAkB6B,GAC5BN,MAAOtB,EAAUe,KACrB,EACAsD,SAAY,CACRnC,WAAY,CAAC,CACLJ,GAAI,GACJD,IAAK,IACT,EAAG,CACCE,KAAM,GACNC,GAAI,GACJH,IAAK,IACT,GACJM,SAAU,WACN,IAAImC,EAAWxb,KAAKyX,MAAMxR,aAAa,6BAA6B,EAAGwV,EAAezb,KAAK4V,KAAK,EAChG,GAAI6F,IAAiB,IAAMA,EAAahV,QAAUzG,KAAK0b,UAAU,EAAG,CAChE,GAAI,CAACF,GAAYC,GAAgBD,EAAU,CACvCxb,KAAKgV,WAAWrR,aAAa,QAAS,mBAAmB,CAC7D,CACAqQ,EAAa1T,UAAU4Z,MAAMla,KAAM,SAAUwC,GACzCxC,KAAK2b,QAAQ3b,KAAK4b,MAAMpZ,CAAQ,CAAC,EACjCxC,KAAK6U,MAAM,CACf,EAAEnT,KAAK1B,IAAI,EAAGA,KAAK6b,MAAM,CAC7B,KACK,CACD7b,KAAK8b,OAAO,CAChB,CACJ,EACAlD,SAAU3B,EAAkB4B,IAC5BL,MAAOtB,EAAUe,KACrB,CACJ,EACAjD,WAAY,KACZQ,QAAS,KACTiC,MAAO,KAIPsE,cAAe,WACX,IAAIC,EAAe,GACnB,GAAIhc,KAAKyX,MAAM1T,aAAa,iCAAiC,EAAG,CAC5DiY,EAAehc,KAAKyX,MAAMxR,aAAa,iCAAiC,CAC5E,MACK,GAAIjG,KAAKkU,eAAiB,MAAO,CAClC8H,EAAehc,KAAKkU,YACxB,KACK,CACD8H,EAAe,EACnB,CACA,OAAOA,CACX,EAIAC,OAAQ,WACJ,IAAIC,EAAQlc,KAAKyX,MAAMxR,aAAa,yBAAyB,EAC7D,GAAIkW,MAAMD,CAAK,GAAKA,IAAU,KAAM,CAChC,OAAOlc,KAAK4a,KAChB,CACA,OAAOwB,SAASF,EAAO,EAAE,CAC7B,EAIAR,UAAW,WACP,IAAIW,EAAWrc,KAAKyX,MAAMxR,aAAa,4BAA4B,EACnE,GAAIkW,MAAME,CAAQ,GAAKA,IAAa,KAAM,CACtC,OAAOrc,KAAKyU,QAChB,CACA,OAAO2H,SAASC,EAAU,EAAE,CAChC,EAIAC,WAAY,SAAUC,GAClB,OAAOA,EAAMhZ,QAAQvD,KAAKwa,UAAUC,SAASza,KAAK4V,KAAK,CAAC,EAAG5V,KAAKwa,UAAUG,SAAS,CACvF,EAIAjB,YAAa,WACT,GAAI1Z,KAAKyX,MAAM1T,aAAa,0BAA0B,EAAG,CACrD,OAAO/D,KAAKyX,MAAMxR,aAAa,0BAA0B,CAC7D,CACA,OAAOjG,KAAKoU,UAChB,EAIAuB,UAAW,WACP,GAAI3V,KAAKyX,MAAM1T,aAAa,8BAA8B,EAAG,CACzD,OAAO/D,KAAKyX,MAAMxR,aAAa,8BAA8B,CACjE,CACA,OAAOjG,KAAK6a,QAChB,EAIAlB,KAAM,WACF,GAAI3Z,KAAKyX,MAAM1T,aAAa,mBAAmB,EAAG,CAC9C,OAAO/D,KAAKyX,MAAMxR,aAAa,mBAAmB,CACtD,CACA,OAAOjG,KAAKiU,GAChB,EAIA4D,MAAO,SAAU2E,GACb,GAAIA,IAAQ,KAAK,EAAG,CAAEA,EAAM,KAAO,CACnC,GAAIA,EAAK,CACLxc,KAAK8b,OAAO,CAChB,KACK,CACD,IAAIhH,EAAS9U,KACbiR,WAAW,WACP6D,EAAO+C,MAAM,IAAI,CACrB,EAAG,GAAG,CACV,CACJ,EAIAsC,OAAQ,SAAU1M,GACd,OAAOzN,KAAKia,OAAOxM,EACvB,EAIAsK,OAAQ,WACJ,IAAIyD,EAAWxb,KAAKyX,MAAMxR,aAAa,6BAA6B,EACpE,IAAK,CAACuV,GAAYxb,KAAKyX,MAAMhK,OAAS+N,IAAaxb,KAAK0b,UAAU,GAAK1b,KAAKyX,MAAMhK,MAAMhH,OAAQ,CAC5FzG,KAAKgV,WAAWrR,aAAa,QAAS,mBAAmB,CAC7D,CACJ,EAIAkR,MAAO,WACH,IAAIC,EAAS9U,KACb+U,MAAMzU,UAAUoF,QAAQ/E,KAAKX,KAAKgV,WAAWtQ,qBAAqB,IAAI,EAAG,SAAUuQ,GAC/E,GAAIA,EAAGhP,aAAa,OAAO,GAAK,SAAU,CACtCgP,EAAGwH,QAAU,WACT3H,EAAOK,QAAQF,CAAE,CACrB,CACJ,CACJ,CAAC,CACL,EACA6G,OAAQ,WACJ9b,KAAKgV,WAAWrR,aAAa,QAAS,cAAc,CACxD,EAIAiR,UAAW,WACP5U,KAAKgV,WAAWrR,aAAa,QAAS,cAAc,EACpD3D,KAAKgV,WAAWrR,aAAa,QAAS,QAAU3D,KAAKyX,MAAMhM,UAAYzL,KAAKyX,MAAMiF,cAAgB,WAAa1c,KAAKyX,MAAMkF,WAAa,YAAc3c,KAAKyX,MAAMmF,YAAc,KAAK,CACvL,EAIAjB,QAAS,SAAUnZ,GACf,IAAIqa,EACJ,GAAI,OAAOra,GAAY,SAAU,CAC7Bqa,EAAK7c,KAAK8c,WAAWta,CAAQ,CACjC,KACK,CACDqa,EAAK7c,KAAK+c,qBAAqBva,CAAQ,CAC3C,CACA,GAAIxC,KAAKgV,WAAWgI,cAAc,EAAG,CACjChd,KAAKgV,WAAWqF,YAAYra,KAAKgV,WAAWiI,WAAW,EAAE,CAC7D,CACAjd,KAAKgV,WAAWnR,YAAYgZ,CAAE,CAClC,EAIAE,qBAAsB,SAAUva,GAC5B,IAAIqa,EAAK1c,SAASuD,cAAc,IAAI,EAAGuR,EAAK9U,SAASuD,cAAc,IAAI,EAAGwY,EAAQlc,KAAKic,OAAO,EAE9F,GAAIC,EAAQ,EAAG,CACX1Z,EAAWA,EAAS0a,QAAQ,CAChC,MACK,GAAIhB,IAAU,EAAG,CAClBA,EAAQ1Z,EAASiE,MACrB,CACA,IAAK,IAAI6U,EAAO,EAAGA,EAAO6B,KAAKC,IAAID,KAAKE,IAAInB,CAAK,EAAG1Z,EAASiE,MAAM,EAAG6U,CAAI,GAAI,CAC1ErG,EAAGvG,UAAYlM,EAAS8Y,GAAMgC,MAC9BrI,EAAGtR,aAAa,0BAA2BnB,EAAS8Y,GAAMiC,KAAK,EAC/DV,EAAGhZ,YAAYoR,CAAE,EACjBA,EAAK9U,SAASuD,cAAc,IAAI,CACpC,CACA,OAAOmZ,CACX,EAIAC,WAAY,SAAUta,GAClB,IAAIqa,EAAK1c,SAASuD,cAAc,IAAI,EAAGuR,EAAK9U,SAASuD,cAAc,IAAI,EACvE,GAAIlB,EAASiE,OAAS,EAAG,CACrBzG,KAAKgV,WAAWtG,UAAYlM,CAChC,KACK,CACD,IAAIwZ,EAAehc,KAAK+b,cAAc,EACtC,GAAIC,IAAiB,GAAI,CACrB/G,EAAGvG,UAAYsN,EACf/G,EAAGtR,aAAa,QAAS,QAAQ,EACjCkZ,EAAGhZ,YAAYoR,CAAE,CACrB,CACJ,CACA,OAAO4H,CACX,EAIAjB,MAAO,SAAUpZ,GACb,IACI,IAAIgb,EAAiB,GAErB,IAAIC,EAAO9N,KAAKC,MAAMpN,CAAQ,EAC9B,GAAI2H,OAAO+D,KAAKuP,CAAI,EAAEhX,SAAW,EAAG,CAChC,MAAO,EACX,CACA,GAAIsO,MAAMoC,QAAQsG,CAAI,EAAG,CACrB,IAAK,IAAIpd,EAAI,EAAGA,EAAI8J,OAAO+D,KAAKuP,CAAI,EAAEhX,OAAQpG,CAAC,GAAI,CAC/Cmd,EAAeA,EAAe/W,QAAU,CAAE8W,MAASE,EAAKpd,GAAIid,MAAStd,KAAKsc,WAAWmB,EAAKpd,EAAE,CAAE,CAClG,CACJ,KACK,CACD,IAAK,IAAIoN,KAASgQ,EAAM,CACpBD,EAAexP,KAAK,CAChBuP,MAAS9P,EACT6P,MAAStd,KAAKsc,WAAWmB,EAAKhQ,EAAM,CACxC,CAAC,CACL,CACJ,CACA,OAAO+P,CAKX,CAHA,MAAOzO,GAEH,OAAOvM,CACX,CACJ,EAIAoT,KAAM,WACF,OAAO5V,KAAKyX,MAAMhK,KACtB,EAIA0H,QAAS,SAAUmG,GACf,GAAIA,EAAKvX,aAAa,yBAAyB,EAAG,CAC9C/D,KAAKyX,MAAMhK,MAAQ6N,EAAKrV,aAAa,yBAAyB,CAClE,KACK,CACDjG,KAAKyX,MAAMhK,MAAQ6N,EAAK5M,SAC5B,CACA1O,KAAKyX,MAAM9T,aAAa,8BAA+B3D,KAAKyX,MAAMhK,KAAK,CAC3E,EAIAoO,OAAQ,aAERvG,WAAY,KACZ2E,OAAQ,GACRrC,WAAY,EAChB,EACA,OAAO5D,CACX,EAAG,EACHiC,EAAOD,QAAUhC,CAEjB,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,EAAE,CAAC,CAChB,CAAC"} \ No newline at end of file +{"version":3,"file":"searxng.min.js","sources":["../src/js/main/00_toolkit.js","../src/js/main/infinite_scroll.js","../src/js/main/keyboard.js","../src/js/main/mapresult.js","../src/js/main/preferences.js","../src/js/main/results.js","../src/js/main/search.js","../node_modules/autocomplete-js/dist/autocomplete.js"],"sourcesContent":["/**\n * @license\n * (C) Copyright Contributors to the SearXNG project.\n * (C) Copyright Contributors to the searx project (2014 - 2021).\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\nwindow.searxng = (function (w, d) {\n\n 'use strict';\n\n // not invented here tookit with bugs fixed elsewhere\n // purposes : be just good enough and as small as possible\n\n // from https://plainjs.com/javascript/events/live-binding-event-handlers-14/\n if (w.Element) {\n (function (ElementPrototype) {\n ElementPrototype.matches = ElementPrototype.matches ||\n ElementPrototype.matchesSelector ||\n ElementPrototype.webkitMatchesSelector ||\n ElementPrototype.msMatchesSelector ||\n function (selector) {\n var node = this, nodes = (node.parentNode || node.document).querySelectorAll(selector), i = -1;\n while (nodes[++i] && nodes[i] != node);\n return !!nodes[i];\n };\n })(Element.prototype);\n }\n\n function callbackSafe (callback, el, e) {\n try {\n callback.call(el, e);\n } catch (exception) {\n console.log(exception);\n }\n }\n\n var searxng = window.searxng || {};\n\n searxng.on = function (obj, eventType, callback, useCapture) {\n useCapture = useCapture || false;\n if (typeof obj !== 'string') {\n // obj HTMLElement, HTMLDocument\n obj.addEventListener(eventType, callback, useCapture);\n } else {\n // obj is a selector\n d.addEventListener(eventType, function (e) {\n var el = e.target || e.srcElement, found = false;\n while (el && el.matches && el !== d && !(found = el.matches(obj))) el = el.parentElement;\n if (found) callbackSafe(callback, el, e);\n }, useCapture);\n }\n };\n\n searxng.ready = function (callback) {\n if (document.readyState != 'loading') {\n callback.call(w);\n } else {\n w.addEventListener('DOMContentLoaded', callback.bind(w));\n }\n };\n\n searxng.http = function (method, url, data = null) {\n return new Promise(function (resolve, reject) {\n try {\n var req = new XMLHttpRequest();\n req.open(method, url, true);\n req.timeout = 20000;\n\n // On load\n req.onload = function () {\n if (req.status == 200) {\n resolve(req.response, req.responseType);\n } else {\n reject(Error(req.statusText));\n }\n };\n\n // Handle network errors\n req.onerror = function () {\n reject(Error(\"Network Error\"));\n };\n\n req.onabort = function () {\n reject(Error(\"Transaction is aborted\"));\n };\n\n req.ontimeout = function () {\n reject(Error(\"Timeout\"));\n }\n\n // Make the request\n if (data) {\n req.send(data)\n } else {\n req.send();\n }\n } catch (ex) {\n reject(ex);\n }\n });\n };\n\n searxng.loadStyle = function (src) {\n var path = searxng.settings.theme_static_path + \"/\" + src,\n id = \"style_\" + src.replace('.', '_'),\n s = d.getElementById(id);\n if (s === null) {\n s = d.createElement('link');\n s.setAttribute('id', id);\n s.setAttribute('rel', 'stylesheet');\n s.setAttribute('type', 'text/css');\n s.setAttribute('href', path);\n d.body.appendChild(s);\n }\n };\n\n searxng.loadScript = function (src, callback) {\n var path = searxng.settings.theme_static_path + \"/\" + src,\n id = \"script_\" + src.replace('.', '_'),\n s = d.getElementById(id);\n if (s === null) {\n s = d.createElement('script');\n s.setAttribute('id', id);\n s.setAttribute('src', path);\n s.onload = callback;\n s.onerror = function () {\n s.setAttribute('error', '1');\n };\n d.body.appendChild(s);\n } else if (!s.hasAttribute('error')) {\n try {\n callback.apply(s, []);\n } catch (exception) {\n console.log(exception);\n }\n } else {\n console.log(\"callback not executed : script '\" + path + \"' not loaded.\");\n }\n };\n\n searxng.insertBefore = function (newNode, referenceNode) {\n referenceNode.parentNode.insertBefore(newNode, referenceNode);\n };\n\n searxng.insertAfter = function (newNode, referenceNode) {\n referenceNode.parentNode.insertAfter(newNode, referenceNode.nextSibling);\n };\n\n searxng.on('.close', 'click', function () {\n this.parentNode.classList.add('invisible');\n });\n\n function getEndpoint () {\n for (var className of d.getElementsByTagName('body')[0].classList.values()) {\n if (className.endsWith('_endpoint')) {\n return className.split('_')[0];\n }\n }\n return '';\n }\n\n searxng.endpoint = getEndpoint();\n\n return searxng;\n})(window, document);\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n\n/* global searxng */\n\nsearxng.ready(function () {\n 'use strict';\n\n searxng.infinite_scroll_supported = (\n 'IntersectionObserver' in window &&\n 'IntersectionObserverEntry' in window &&\n 'intersectionRatio' in window.IntersectionObserverEntry.prototype);\n\n if (searxng.endpoint !== 'results') {\n return;\n }\n\n if (!searxng.infinite_scroll_supported) {\n console.log('IntersectionObserver not supported');\n return;\n }\n\n let d = document;\n var onlyImages = d.getElementById('results').classList.contains('only_template_images');\n\n function newLoadSpinner () {\n var loader = d.createElement('div');\n loader.classList.add('loader');\n return loader;\n }\n\n function replaceChildrenWith (element, children) {\n element.textContent = '';\n children.forEach(child => element.appendChild(child));\n }\n\n function loadNextPage (callback) {\n var form = d.querySelector('#pagination form.next_page');\n if (!form) {\n return\n }\n replaceChildrenWith(d.querySelector('#pagination'), [ newLoadSpinner() ]);\n var formData = new FormData(form);\n searxng.http('POST', d.querySelector('#search').getAttribute('action'), formData).then(\n function (response) {\n var nextPageDoc = new DOMParser().parseFromString(response, 'text/html');\n var articleList = nextPageDoc.querySelectorAll('#urls article');\n var paginationElement = nextPageDoc.querySelector('#pagination');\n d.querySelector('#pagination').remove();\n if (articleList.length > 0 && !onlyImages) {\n // do not add
element when there are only images\n d.querySelector('#urls').appendChild(d.createElement('hr'));\n }\n articleList.forEach(articleElement => {\n d.querySelector('#urls').appendChild(articleElement);\n });\n if (paginationElement) {\n d.querySelector('#results').appendChild(paginationElement);\n callback();\n }\n }\n ).catch(\n function (err) {\n console.log(err);\n var e = d.createElement('div');\n e.textContent = searxng.settings.translations.error_loading_next_page;\n e.classList.add('dialog-error');\n e.setAttribute('role', 'alert');\n replaceChildrenWith(d.querySelector('#pagination'), [ e ]);\n }\n )\n }\n\n if (searxng.settings.infinite_scroll && searxng.infinite_scroll_supported) {\n const intersectionObserveOptions = {\n rootMargin: \"20rem\",\n };\n const observedSelector = 'article.result:last-child';\n const observer = new IntersectionObserver(entries => {\n const paginationEntry = entries[0];\n if (paginationEntry.isIntersecting) {\n observer.unobserve(paginationEntry.target);\n loadNextPage(() => observer.observe(d.querySelector(observedSelector), intersectionObserveOptions));\n }\n });\n observer.observe(d.querySelector(observedSelector), intersectionObserveOptions);\n }\n\n});\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n/* global searxng */\n\nsearxng.ready(function () {\n\n function isElementInDetail (el) {\n while (el !== undefined) {\n if (el.classList.contains('detail')) {\n return true;\n }\n if (el.classList.contains('result')) {\n // we found a result, no need to go to the root of the document:\n // el is not inside a
element\n return false;\n }\n el = el.parentNode;\n }\n return false;\n }\n\n function getResultElement (el) {\n while (el !== undefined) {\n if (el.classList.contains('result')) {\n return el;\n }\n el = el.parentNode;\n }\n return undefined;\n }\n\n function isImageResult (resultElement) {\n return resultElement && resultElement.classList.contains('result-images');\n }\n\n searxng.on('.result', 'click', function (e) {\n if (!isElementInDetail(e.target)) {\n highlightResult(this)(true, true);\n let resultElement = getResultElement(e.target);\n if (isImageResult(resultElement)) {\n e.preventDefault();\n searxng.selectImage(resultElement);\n }\n }\n });\n\n searxng.on('.result a', 'focus', function (e) {\n if (!isElementInDetail(e.target)) {\n let resultElement = getResultElement(e.target);\n if (resultElement && resultElement.getAttribute(\"data-vim-selected\") === null) {\n highlightResult(resultElement)(true);\n }\n if (isImageResult(resultElement)) {\n searxng.selectImage(resultElement);\n }\n }\n }, true);\n\n var vimKeys = {\n 27: {\n key: 'Escape',\n fun: removeFocus,\n des: 'remove focus from the focused input',\n cat: 'Control'\n },\n 73: {\n key: 'i',\n fun: searchInputFocus,\n des: 'focus on the search input',\n cat: 'Control'\n },\n 66: {\n key: 'b',\n fun: scrollPage(-window.innerHeight),\n des: 'scroll one page up',\n cat: 'Navigation'\n },\n 70: {\n key: 'f',\n fun: scrollPage(window.innerHeight),\n des: 'scroll one page down',\n cat: 'Navigation'\n },\n 85: {\n key: 'u',\n fun: scrollPage(-window.innerHeight / 2),\n des: 'scroll half a page up',\n cat: 'Navigation'\n },\n 68: {\n key: 'd',\n fun: scrollPage(window.innerHeight / 2),\n des: 'scroll half a page down',\n cat: 'Navigation'\n },\n 71: {\n key: 'g',\n fun: scrollPageTo(-document.body.scrollHeight, 'top'),\n des: 'scroll to the top of the page',\n cat: 'Navigation'\n },\n 86: {\n key: 'v',\n fun: scrollPageTo(document.body.scrollHeight, 'bottom'),\n des: 'scroll to the bottom of the page',\n cat: 'Navigation'\n },\n 75: {\n key: 'k',\n fun: highlightResult('up'),\n des: 'select previous search result',\n cat: 'Results'\n },\n 74: {\n key: 'j',\n fun: highlightResult('down'),\n des: 'select next search result',\n cat: 'Results'\n },\n 80: {\n key: 'p',\n fun: GoToPreviousPage(),\n des: 'go to previous page',\n cat: 'Results'\n },\n 78: {\n key: 'n',\n fun: GoToNextPage(),\n des: 'go to next page',\n cat: 'Results'\n },\n 79: {\n key: 'o',\n fun: openResult(false),\n des: 'open search result',\n cat: 'Results'\n },\n 84: {\n key: 't',\n fun: openResult(true),\n des: 'open the result in a new tab',\n cat: 'Results'\n },\n 82: {\n key: 'r',\n fun: reloadPage,\n des: 'reload page from the server',\n cat: 'Control'\n },\n 72: {\n key: 'h',\n fun: toggleHelp,\n des: 'toggle help window',\n cat: 'Other'\n }\n };\n\n if (searxng.settings.hotkeys) {\n searxng.on(document, \"keydown\", function (e) {\n // check for modifiers so we don't break browser's hotkeys\n if (Object.prototype.hasOwnProperty.call(vimKeys, e.keyCode) && !e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey) {\n var tagName = e.target.tagName.toLowerCase();\n if (e.keyCode === 27) {\n vimKeys[e.keyCode].fun(e);\n } else {\n if (e.target === document.body || tagName === 'a' || tagName === 'button') {\n e.preventDefault();\n vimKeys[e.keyCode].fun();\n }\n }\n }\n });\n }\n\n function highlightResult (which) {\n return function (noScroll, keepFocus) {\n var current = document.querySelector('.result[data-vim-selected]'),\n effectiveWhich = which;\n if (current === null) {\n // no selection : choose the first one\n current = document.querySelector('.result');\n if (current === null) {\n // no first one : there are no results\n return;\n }\n // replace up/down actions by selecting first one\n if (which === \"down\" || which === \"up\") {\n effectiveWhich = current;\n }\n }\n\n var next, results = document.querySelectorAll('.result');\n\n if (typeof effectiveWhich !== 'string') {\n next = effectiveWhich;\n } else {\n switch (effectiveWhich) {\n case 'visible':\n var top = document.documentElement.scrollTop || document.body.scrollTop;\n var bot = top + document.documentElement.clientHeight;\n\n for (var i = 0; i < results.length; i++) {\n next = results[i];\n var etop = next.offsetTop;\n var ebot = etop + next.clientHeight;\n\n if ((ebot <= bot) && (etop > top)) {\n break;\n }\n }\n break;\n case 'down':\n next = current.nextElementSibling;\n if (next === null) {\n next = results[0];\n }\n break;\n case 'up':\n next = current.previousElementSibling;\n if (next === null) {\n next = results[results.length - 1];\n }\n break;\n case 'bottom':\n next = results[results.length - 1];\n break;\n case 'top':\n /* falls through */\n default:\n next = results[0];\n }\n }\n\n if (next) {\n current.removeAttribute('data-vim-selected');\n next.setAttribute('data-vim-selected', 'true');\n if (!keepFocus) {\n var link = next.querySelector('h3 a') || next.querySelector('a');\n if (link !== null) {\n link.focus();\n }\n }\n if (!noScroll) {\n scrollPageToSelected();\n }\n }\n };\n }\n\n function reloadPage () {\n document.location.reload(true);\n }\n\n function removeFocus (e) {\n const tagName = e.target.tagName.toLowerCase();\n if (document.activeElement && (tagName === 'input' || tagName === 'select' || tagName === 'textarea')) {\n document.activeElement.blur();\n } else {\n searxng.closeDetail();\n }\n }\n\n function pageButtonClick (css_selector) {\n return function () {\n var button = document.querySelector(css_selector);\n if (button) {\n button.click();\n }\n };\n }\n\n function GoToNextPage () {\n return pageButtonClick('nav#pagination .next_page button[type=\"submit\"]');\n }\n\n function GoToPreviousPage () {\n return pageButtonClick('nav#pagination .previous_page button[type=\"submit\"]');\n }\n\n function scrollPageToSelected () {\n var sel = document.querySelector('.result[data-vim-selected]');\n if (sel === null) {\n return;\n }\n var wtop = document.documentElement.scrollTop || document.body.scrollTop,\n wheight = document.documentElement.clientHeight,\n etop = sel.offsetTop,\n ebot = etop + sel.clientHeight,\n offset = 120;\n // first element ?\n if ((sel.previousElementSibling === null) && (ebot < wheight)) {\n // set to the top of page if the first element\n // is fully included in the viewport\n window.scroll(window.scrollX, 0);\n return;\n }\n if (wtop > (etop - offset)) {\n window.scroll(window.scrollX, etop - offset);\n } else {\n var wbot = wtop + wheight;\n if (wbot < (ebot + offset)) {\n window.scroll(window.scrollX, ebot - wheight + offset);\n }\n }\n }\n\n function scrollPage (amount) {\n return function () {\n window.scrollBy(0, amount);\n highlightResult('visible')();\n };\n }\n\n function scrollPageTo (position, nav) {\n return function () {\n window.scrollTo(0, position);\n highlightResult(nav)();\n };\n }\n\n function searchInputFocus () {\n window.scrollTo(0, 0);\n var q = document.querySelector('#q');\n q.focus();\n if (q.setSelectionRange) {\n var len = q.value.length;\n q.setSelectionRange(len, len);\n }\n }\n\n function openResult (newTab) {\n return function () {\n var link = document.querySelector('.result[data-vim-selected] h3 a');\n if (link === null) {\n link = document.querySelector('.result[data-vim-selected] > a');\n }\n if (link !== null) {\n var url = link.getAttribute('href');\n if (newTab) {\n window.open(url);\n } else {\n window.location.href = url;\n }\n }\n };\n }\n\n function initHelpContent (divElement) {\n var categories = {};\n\n for (var k in vimKeys) {\n var key = vimKeys[k];\n categories[key.cat] = categories[key.cat] || [];\n categories[key.cat].push(key);\n }\n\n var sorted = Object.keys(categories).sort(function (a, b) {\n return categories[b].length - categories[a].length;\n });\n\n if (sorted.length === 0) {\n return;\n }\n\n var html = '×';\n html += '

How to navigate searx with Vim-like hotkeys

';\n html += '';\n\n for (var i = 0; i < sorted.length; i++) {\n var cat = categories[sorted[i]];\n\n var lastCategory = i === (sorted.length - 1);\n var first = i % 2 === 0;\n\n if (first) {\n html += '';\n }\n html += ''; // col-sm-*\n\n if (!first || lastCategory) {\n html += ''; // row\n }\n }\n\n html += '
';\n\n html += '

' + cat[0].cat + '

';\n html += '
    ';\n\n for (var cj in cat) {\n html += '
  • ' + cat[cj].key + ' ' + cat[cj].des + '
  • ';\n }\n\n html += '
';\n html += '
';\n\n divElement.innerHTML = html;\n }\n\n function toggleHelp () {\n var helpPanel = document.querySelector('#vim-hotkeys-help');\n if (helpPanel === undefined || helpPanel === null) {\n // first call\n helpPanel = document.createElement('div');\n helpPanel.id = 'vim-hotkeys-help';\n helpPanel.className = 'dialog-modal';\n initHelpContent(helpPanel);\n initHelpContent(helpPanel);\n initHelpContent(helpPanel);\n var body = document.getElementsByTagName('body')[0];\n body.appendChild(helpPanel);\n } else {\n // togggle hidden\n helpPanel.classList.toggle('invisible');\n return;\n }\n }\n\n searxng.scrollPageToSelected = scrollPageToSelected;\n searxng.selectNext = highlightResult('down');\n searxng.selectPrevious = highlightResult('up');\n});\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n/* global L */\n(function (w, d, searxng) {\n 'use strict';\n\n searxng.ready(function () {\n searxng.on('.searxng_init_map', 'click', function (event) {\n // no more request\n this.classList.remove(\"searxng_init_map\");\n\n //\n var leaflet_target = this.dataset.leafletTarget;\n var map_lon = parseFloat(this.dataset.mapLon);\n var map_lat = parseFloat(this.dataset.mapLat);\n var map_zoom = parseFloat(this.dataset.mapZoom);\n var map_boundingbox = JSON.parse(this.dataset.mapBoundingbox);\n var map_geojson = JSON.parse(this.dataset.mapGeojson);\n\n searxng.loadStyle('css/leaflet.css');\n searxng.loadScript('js/leaflet.js', function () {\n var map_bounds = null;\n if (map_boundingbox) {\n var southWest = L.latLng(map_boundingbox[0], map_boundingbox[2]);\n var northEast = L.latLng(map_boundingbox[1], map_boundingbox[3]);\n map_bounds = L.latLngBounds(southWest, northEast);\n }\n\n // init map\n var map = L.map(leaflet_target);\n // create the tile layer with correct attribution\n var osmMapnikUrl = 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';\n var osmMapnikAttrib = 'Map data © OpenStreetMap contributors';\n var osmMapnik = new L.TileLayer(osmMapnikUrl, {minZoom: 1, maxZoom: 19, attribution: osmMapnikAttrib});\n var osmWikimediaUrl = 'https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png';\n var osmWikimediaAttrib = 'Wikimedia maps | Maps data © OpenStreetMap contributors';\n var osmWikimedia = new L.TileLayer(osmWikimediaUrl, {minZoom: 1, maxZoom: 19, attribution: osmWikimediaAttrib});\n // init map view\n if (map_bounds) {\n // TODO hack: https://github.com/Leaflet/Leaflet/issues/2021\n // Still useful ?\n setTimeout(function () {\n map.fitBounds(map_bounds, {\n maxZoom: 17\n });\n }, 0);\n } else if (map_lon && map_lat) {\n if (map_zoom) {\n map.setView(new L.latLng(map_lat, map_lon), map_zoom);\n } else {\n map.setView(new L.latLng(map_lat, map_lon), 8);\n }\n }\n\n map.addLayer(osmMapnik);\n\n var baseLayers = {\n \"OSM Mapnik\": osmMapnik,\n \"OSM Wikimedia\": osmWikimedia,\n };\n\n L.control.layers(baseLayers).addTo(map);\n\n if (map_geojson) {\n L.geoJson(map_geojson).addTo(map);\n } /* else if(map_bounds) {\n L.rectangle(map_bounds, {color: \"#ff7800\", weight: 3, fill:false}).addTo(map);\n } */\n });\n\n // this event occour only once per element\n event.preventDefault();\n });\n });\n})(window, document, window.searxng);\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n(function (w, d, searxng) {\n 'use strict';\n\n if (searxng.endpoint !== 'preferences') {\n return;\n }\n\n searxng.ready(function () {\n let engine_descriptions = null;\n function load_engine_descriptions () {\n if (engine_descriptions == null) {\n searxng.http(\"GET\", \"engine_descriptions.json\").then(function (content) {\n engine_descriptions = JSON.parse(content);\n for (const [engine_name, description] of Object.entries(engine_descriptions)) {\n let elements = d.querySelectorAll('[data-engine-name=\"' + engine_name + '\"] .engine-description');\n for (const element of elements) {\n let source = ' (' + searxng.settings.translations.Source + ': ' + description[1] + ')';\n element.innerHTML = description[0] + source;\n }\n }\n });\n }\n }\n\n for (const el of d.querySelectorAll('[data-engine-name]')) {\n searxng.on(el, 'mouseenter', load_engine_descriptions);\n }\n });\n})(window, document, window.searxng);\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n(function (w, d, searxng) {\n 'use strict';\n\n if (searxng.endpoint !== 'results') {\n return;\n }\n\n searxng.ready(function () {\n d.querySelectorAll('#urls img.image').forEach(\n img =>\n img.addEventListener(\n 'error', () => {\n img.style.display = 'none';\n img.error = null;\n }\n ));\n\n searxng.on('.btn-collapse', 'click', function () {\n var btnLabelCollapsed = this.getAttribute('data-btn-text-collapsed');\n var btnLabelNotCollapsed = this.getAttribute('data-btn-text-not-collapsed');\n var target = this.getAttribute('data-target');\n var targetElement = d.querySelector(target);\n var html = this.innerHTML;\n if (this.classList.contains('collapsed')) {\n html = html.replace(btnLabelCollapsed, btnLabelNotCollapsed);\n } else {\n html = html.replace(btnLabelNotCollapsed, btnLabelCollapsed);\n }\n this.innerHTML = html;\n this.classList.toggle('collapsed');\n targetElement.classList.toggle('invisible');\n });\n\n searxng.on('.media-loader', 'click', function () {\n var target = this.getAttribute('data-target');\n var iframe_load = d.querySelector(target + ' > iframe');\n var srctest = iframe_load.getAttribute('src');\n if (srctest === null || srctest === undefined || srctest === false) {\n iframe_load.setAttribute('src', iframe_load.getAttribute('data-src'));\n }\n });\n\n searxng.selectImage = function (resultElement) {\n /* eslint no-unused-vars: 0 */\n if (resultElement) {\n // load full size image in background\n const imgElement = resultElement.querySelector('.result-images-source img');\n const thumbnailElement = resultElement.querySelector('.image_thumbnail');\n const detailElement = resultElement.querySelector('.detail');\n if (imgElement) {\n const imgSrc = imgElement.getAttribute('data-src');\n if (imgSrc) {\n const loader = d.createElement('div');\n const imgLoader = new Image();\n\n loader.classList.add('loader');\n detailElement.appendChild(loader);\n\n imgLoader.onload = e => {\n imgElement.src = imgSrc;\n loader.remove();\n };\n imgLoader.onerror = e => {\n loader.remove();\n };\n imgLoader.src = imgSrc;\n imgElement.src = thumbnailElement.src;\n imgElement.removeAttribute('data-src');\n }\n }\n }\n d.getElementById('results').classList.add('image-detail-open');\n searxng.scrollPageToSelected();\n }\n\n searxng.closeDetail = function (e) {\n d.getElementById('results').classList.remove('image-detail-open');\n searxng.scrollPageToSelected();\n }\n searxng.on('.result-detail-close', 'click', e => {\n e.preventDefault();\n searxng.closeDetail();\n });\n searxng.on('.result-detail-previous', 'click', e => searxng.selectPrevious(false));\n searxng.on('.result-detail-next', 'click', e => searxng.selectNext(false));\n\n w.addEventListener('scroll', function () {\n var e = d.getElementById('backToTop'),\n scrollTop = document.documentElement.scrollTop || document.body.scrollTop,\n results = d.getElementById('results');\n if (e !== null) {\n if (scrollTop >= 100) {\n results.classList.add('scrolling');\n } else {\n results.classList.remove('scrolling');\n }\n }\n }, true);\n\n });\n\n})(window, document, window.searxng);\n","/* SPDX-License-Identifier: AGPL-3.0-or-later */\n/* global AutoComplete */\n(function (w, d, searxng) {\n 'use strict';\n\n var qinput_id = \"q\", qinput;\n\n const isMobile = window.matchMedia(\"only screen and (max-width: 50em)\").matches;\n\n function submitIfQuery () {\n if (qinput.value.length > 0) {\n var search = document.getElementById('search');\n setTimeout(search.submit.bind(search), 0);\n }\n }\n\n function createClearButton (qinput) {\n var cs = document.getElementById('clear_search');\n var updateClearButton = function () {\n if (qinput.value.length === 0) {\n cs.classList.add(\"empty\");\n } else {\n cs.classList.remove(\"empty\");\n }\n };\n\n // update status, event listener\n updateClearButton();\n cs.addEventListener('click', function (ev) {\n qinput.value = '';\n qinput.focus();\n updateClearButton();\n ev.preventDefault();\n });\n qinput.addEventListener('keyup', updateClearButton, false);\n }\n\n searxng.ready(function () {\n qinput = d.getElementById(qinput_id);\n\n if (qinput !== null) {\n // clear button\n createClearButton(qinput);\n\n // autocompleter\n if (searxng.settings.autocomplete_provider) {\n searxng.autocomplete = AutoComplete.call(w, {\n Url: \"./autocompleter\",\n EmptyMessage: searxng.settings.translations.no_item_found,\n HttpMethod: searxng.settings.http_method,\n HttpHeaders: {\n \"Content-type\": \"application/x-www-form-urlencoded\",\n \"X-Requested-With\": \"XMLHttpRequest\"\n },\n MinChars: searxng.settings.autocomplete_min,\n Delay: 300,\n _Position: function () {},\n _Open: function () {\n var params = this;\n Array.prototype.forEach.call(this.DOMResults.getElementsByTagName(\"li\"), function (li) {\n if (li.getAttribute(\"class\") != \"locked\") {\n li.onmousedown = function () {\n params._Select(li);\n };\n }\n });\n },\n }, \"#\" + qinput_id);\n }\n\n /*\n Monkey patch autocomplete.js to fix a bug\n With the POST method, the values are not URL encoded: query like \"1 + 1\" are sent as \"1 1\" since space are URL encoded as plus.\n See HTML specifications:\n * HTML5: https://url.spec.whatwg.org/#concept-urlencoded-serializer\n * HTML4: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1\n\n autocomplete.js does not URL encode the name and values:\n https://github.com/autocompletejs/autocomplete.js/blob/87069524f3b95e68f1b54d8976868e0eac1b2c83/src/autocomplete.ts#L665\n\n The monkey patch overrides the compiled version of the ajax function.\n See https://github.com/autocompletejs/autocomplete.js/blob/87069524f3b95e68f1b54d8976868e0eac1b2c83/dist/autocomplete.js#L143-L158\n The patch changes only the line 156 from\n params.Request.send(params._QueryArg() + \"=\" + params._Pre());\n to\n params.Request.send(encodeURIComponent(params._QueryArg()) + \"=\" + encodeURIComponent(params._Pre()));\n\n Related to:\n * https://github.com/autocompletejs/autocomplete.js/issues/78\n * https://github.com/searxng/searxng/issues/1695\n */\n AutoComplete.prototype.ajax = function (params, request, timeout) {\n if (timeout === void 0) { timeout = true; }\n if (params.$AjaxTimer) {\n window.clearTimeout(params.$AjaxTimer);\n }\n if (timeout === true) {\n params.$AjaxTimer = window.setTimeout(AutoComplete.prototype.ajax.bind(null, params, request, false), params.Delay);\n } else {\n if (params.Request) {\n params.Request.abort();\n }\n params.Request = request;\n params.Request.send(encodeURIComponent(params._QueryArg()) + \"=\" + encodeURIComponent(params._Pre()));\n }\n };\n\n if (!isMobile && document.querySelector('.index_endpoint')) {\n qinput.focus();\n }\n }\n\n // vanilla js version of search_on_category_select.js\n if (qinput !== null && d.querySelector('.help') != null && searxng.settings.search_on_category_select) {\n d.querySelector('.help').className = 'invisible';\n\n searxng.on('#categories input', 'change', function () {\n var i, categories = d.querySelectorAll('#categories input[type=\"checkbox\"]');\n for (i = 0; i < categories.length; i++) {\n if (categories[i] !== this && categories[i].checked) {\n categories[i].click();\n }\n }\n if (! this.checked) {\n this.click();\n }\n submitIfQuery();\n return false;\n });\n\n searxng.on(d.getElementById('safesearch'), 'change', submitIfQuery);\n searxng.on(d.getElementById('time_range'), 'change', submitIfQuery);\n searxng.on(d.getElementById('language'), 'change', submitIfQuery);\n }\n\n });\n\n})(window, document, window.searxng);\n","(function(f){if(typeof exports===\"object\"&&typeof module!==\"undefined\"){module.exports=f()}else if(typeof define===\"function\"&&define.amd){define([],f)}else{var g;if(typeof window!==\"undefined\"){g=window}else if(typeof global!==\"undefined\"){g=global}else if(typeof self!==\"undefined\"){g=self}else{g=this}g.AutoComplete = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i @baptistedonaux\n */\nvar AutoComplete = /** @class */ (function () {\n // Constructor\n function AutoComplete(params, selector) {\n if (params === void 0) { params = {}; }\n if (selector === void 0) { selector = \"[data-autocomplete]\"; }\n if (Array.isArray(selector)) {\n selector.forEach(function (s) {\n new AutoComplete(params, s);\n });\n }\n else if (typeof selector == \"string\") {\n var elements = document.querySelectorAll(selector);\n Array.prototype.forEach.call(elements, function (input) {\n new AutoComplete(params, input);\n });\n }\n else {\n var specificParams = AutoComplete.merge(AutoComplete.defaults, params, {\n DOMResults: document.createElement(\"div\")\n });\n AutoComplete.prototype.create(specificParams, selector);\n return specificParams;\n }\n }\n AutoComplete.prototype.create = function (params, element) {\n params.Input = element;\n if (params.Input.nodeName.match(/^INPUT$/i) && (params.Input.hasAttribute(\"type\") === false || params.Input.getAttribute(\"type\").match(/^TEXT|SEARCH$/i))) {\n params.Input.setAttribute(\"autocomplete\", \"off\");\n params._Position(params);\n params.Input.parentNode.appendChild(params.DOMResults);\n params.$Listeners = {\n blur: params._Blur.bind(params),\n destroy: AutoComplete.prototype.destroy.bind(null, params),\n focus: params._Focus.bind(params),\n keyup: AutoComplete.prototype.event.bind(null, params, EventType.KEYUP),\n keydown: AutoComplete.prototype.event.bind(null, params, EventType.KEYDOWN),\n position: params._Position.bind(params)\n };\n for (var event in params.$Listeners) {\n params.Input.addEventListener(event, params.$Listeners[event]);\n }\n }\n };\n AutoComplete.prototype.getEventsByType = function (params, type) {\n var mappings = {};\n for (var key in params.KeyboardMappings) {\n var event = EventType.KEYUP;\n if (params.KeyboardMappings[key].Event !== undefined) {\n event = params.KeyboardMappings[key].Event;\n }\n if (event == type) {\n mappings[key] = params.KeyboardMappings[key];\n }\n }\n return mappings;\n };\n AutoComplete.prototype.event = function (params, type, event) {\n var eventIdentifier = function (condition) {\n if ((match === true && mapping.Operator == ConditionOperator.AND) || (match === false && mapping.Operator == ConditionOperator.OR)) {\n condition = AutoComplete.merge({\n Not: false\n }, condition);\n if (condition.hasOwnProperty(\"Is\")) {\n if (condition.Is == event.keyCode) {\n match = !condition.Not;\n }\n else {\n match = condition.Not;\n }\n }\n else if (condition.hasOwnProperty(\"From\") && condition.hasOwnProperty(\"To\")) {\n if (event.keyCode >= condition.From && event.keyCode <= condition.To) {\n match = !condition.Not;\n }\n else {\n match = condition.Not;\n }\n }\n }\n };\n for (var name in AutoComplete.prototype.getEventsByType(params, type)) {\n var mapping = AutoComplete.merge({\n Operator: ConditionOperator.AND\n }, params.KeyboardMappings[name]), match = ConditionOperator.AND == mapping.Operator;\n mapping.Conditions.forEach(eventIdentifier);\n if (match === true) {\n mapping.Callback.call(params, event);\n }\n }\n };\n AutoComplete.prototype.makeRequest = function (params, callback, callbackErr) {\n var propertyHttpHeaders = Object.getOwnPropertyNames(params.HttpHeaders), request = new XMLHttpRequest(), method = params._HttpMethod(), url = params._Url(), queryParams = params._Pre(), queryParamsStringify = encodeURIComponent(params._QueryArg()) + \"=\" + encodeURIComponent(queryParams);\n if (method.match(/^GET$/i)) {\n if (url.indexOf(\"?\") !== -1) {\n url += \"&\" + queryParamsStringify;\n }\n else {\n url += \"?\" + queryParamsStringify;\n }\n }\n request.open(method, url, true);\n for (var i = propertyHttpHeaders.length - 1; i >= 0; i--) {\n request.setRequestHeader(propertyHttpHeaders[i], params.HttpHeaders[propertyHttpHeaders[i]]);\n }\n request.onreadystatechange = function () {\n if (request.readyState == 4 && request.status == 200) {\n params.$Cache[queryParams] = request.response;\n callback(request.response);\n }\n else if (request.status >= 400) {\n callbackErr();\n }\n };\n return request;\n };\n AutoComplete.prototype.ajax = function (params, request, timeout) {\n if (timeout === void 0) { timeout = true; }\n if (params.$AjaxTimer) {\n window.clearTimeout(params.$AjaxTimer);\n }\n if (timeout === true) {\n params.$AjaxTimer = window.setTimeout(AutoComplete.prototype.ajax.bind(null, params, request, false), params.Delay);\n }\n else {\n if (params.Request) {\n params.Request.abort();\n }\n params.Request = request;\n params.Request.send(params._QueryArg() + \"=\" + params._Pre());\n }\n };\n AutoComplete.prototype.cache = function (params, callback, callbackErr) {\n var response = params._Cache(params._Pre());\n if (response === undefined) {\n var request = AutoComplete.prototype.makeRequest(params, callback, callbackErr);\n AutoComplete.prototype.ajax(params, request);\n }\n else {\n callback(response);\n }\n };\n AutoComplete.prototype.destroy = function (params) {\n for (var event in params.$Listeners) {\n params.Input.removeEventListener(event, params.$Listeners[event]);\n }\n params.DOMResults.parentNode.removeChild(params.DOMResults);\n };\n AutoComplete.merge = function () {\n var merge = {}, tmp;\n for (var i = 0; i < arguments.length; i++) {\n for (tmp in arguments[i]) {\n merge[tmp] = arguments[i][tmp];\n }\n }\n return merge;\n };\n AutoComplete.defaults = {\n Delay: 150,\n EmptyMessage: \"No result here\",\n Highlight: {\n getRegex: function (value) {\n return new RegExp(value, \"ig\");\n },\n transform: function (value) {\n return \"\" + value + \"\";\n }\n },\n HttpHeaders: {\n \"Content-type\": \"application/x-www-form-urlencoded\"\n },\n Limit: 0,\n MinChars: 0,\n HttpMethod: \"GET\",\n QueryArg: \"q\",\n Url: null,\n KeyboardMappings: {\n \"Enter\": {\n Conditions: [{\n Is: 13,\n Not: false\n }],\n Callback: function (event) {\n if (this.DOMResults.getAttribute(\"class\").indexOf(\"open\") != -1) {\n var liActive = this.DOMResults.querySelector(\"li.active\");\n if (liActive !== null) {\n event.preventDefault();\n this._Select(liActive);\n this.DOMResults.setAttribute(\"class\", \"autocomplete\");\n }\n }\n },\n Operator: ConditionOperator.AND,\n Event: EventType.KEYDOWN\n },\n \"KeyUpAndDown_down\": {\n Conditions: [{\n Is: 38,\n Not: false\n },\n {\n Is: 40,\n Not: false\n }],\n Callback: function (event) {\n event.preventDefault();\n },\n Operator: ConditionOperator.OR,\n Event: EventType.KEYDOWN\n },\n \"KeyUpAndDown_up\": {\n Conditions: [{\n Is: 38,\n Not: false\n },\n {\n Is: 40,\n Not: false\n }],\n Callback: function (event) {\n event.preventDefault();\n var first = this.DOMResults.querySelector(\"li:first-child:not(.locked)\"), last = this.DOMResults.querySelector(\"li:last-child:not(.locked)\"), active = this.DOMResults.querySelector(\"li.active\");\n if (active) {\n var currentIndex = Array.prototype.indexOf.call(active.parentNode.children, active), position = currentIndex + (event.keyCode - 39), lisCount = this.DOMResults.getElementsByTagName(\"li\").length;\n if (position < 0) {\n position = lisCount - 1;\n }\n else if (position >= lisCount) {\n position = 0;\n }\n active.classList.remove(\"active\");\n active.parentElement.children.item(position).classList.add(\"active\");\n }\n else if (last && event.keyCode == 38) {\n last.classList.add(\"active\");\n }\n else if (first) {\n first.classList.add(\"active\");\n }\n },\n Operator: ConditionOperator.OR,\n Event: EventType.KEYUP\n },\n \"AlphaNum\": {\n Conditions: [{\n Is: 13,\n Not: true\n }, {\n From: 35,\n To: 40,\n Not: true\n }],\n Callback: function () {\n var oldValue = this.Input.getAttribute(\"data-autocomplete-old-value\"), currentValue = this._Pre();\n if (currentValue !== \"\" && currentValue.length >= this._MinChars()) {\n if (!oldValue || currentValue != oldValue) {\n this.DOMResults.setAttribute(\"class\", \"autocomplete open\");\n }\n AutoComplete.prototype.cache(this, function (response) {\n this._Render(this._Post(response));\n this._Open();\n }.bind(this), this._Error);\n }\n else {\n this._Close();\n }\n },\n Operator: ConditionOperator.AND,\n Event: EventType.KEYUP\n }\n },\n DOMResults: null,\n Request: null,\n Input: null,\n /**\n * Return the message when no result returns\n */\n _EmptyMessage: function () {\n var emptyMessage = \"\";\n if (this.Input.hasAttribute(\"data-autocomplete-empty-message\")) {\n emptyMessage = this.Input.getAttribute(\"data-autocomplete-empty-message\");\n }\n else if (this.EmptyMessage !== false) {\n emptyMessage = this.EmptyMessage;\n }\n else {\n emptyMessage = \"\";\n }\n return emptyMessage;\n },\n /**\n * Returns the maximum number of results\n */\n _Limit: function () {\n var limit = this.Input.getAttribute(\"data-autocomplete-limit\");\n if (isNaN(limit) || limit === null) {\n return this.Limit;\n }\n return parseInt(limit, 10);\n },\n /**\n * Returns the minimum number of characters entered before firing ajax\n */\n _MinChars: function () {\n var minchars = this.Input.getAttribute(\"data-autocomplete-minchars\");\n if (isNaN(minchars) || minchars === null) {\n return this.MinChars;\n }\n return parseInt(minchars, 10);\n },\n /**\n * Apply transformation on labels response\n */\n _Highlight: function (label) {\n return label.replace(this.Highlight.getRegex(this._Pre()), this.Highlight.transform);\n },\n /**\n * Returns the HHTP method to use\n */\n _HttpMethod: function () {\n if (this.Input.hasAttribute(\"data-autocomplete-method\")) {\n return this.Input.getAttribute(\"data-autocomplete-method\");\n }\n return this.HttpMethod;\n },\n /**\n * Returns the query param to use\n */\n _QueryArg: function () {\n if (this.Input.hasAttribute(\"data-autocomplete-param-name\")) {\n return this.Input.getAttribute(\"data-autocomplete-param-name\");\n }\n return this.QueryArg;\n },\n /**\n * Returns the URL to use for AJAX request\n */\n _Url: function () {\n if (this.Input.hasAttribute(\"data-autocomplete\")) {\n return this.Input.getAttribute(\"data-autocomplete\");\n }\n return this.Url;\n },\n /**\n * Manage the close\n */\n _Blur: function (now) {\n if (now === void 0) { now = false; }\n if (now) {\n this._Close();\n }\n else {\n var params = this;\n setTimeout(function () {\n params._Blur(true);\n }, 150);\n }\n },\n /**\n * Manage the cache\n */\n _Cache: function (value) {\n return this.$Cache[value];\n },\n /**\n * Manage the open\n */\n _Focus: function () {\n var oldValue = this.Input.getAttribute(\"data-autocomplete-old-value\");\n if ((!oldValue || this.Input.value != oldValue) && this._MinChars() <= this.Input.value.length) {\n this.DOMResults.setAttribute(\"class\", \"autocomplete open\");\n }\n },\n /**\n * Bind all results item if one result is opened\n */\n _Open: function () {\n var params = this;\n Array.prototype.forEach.call(this.DOMResults.getElementsByTagName(\"li\"), function (li) {\n if (li.getAttribute(\"class\") != \"locked\") {\n li.onclick = function () {\n params._Select(li);\n };\n }\n });\n },\n _Close: function () {\n this.DOMResults.setAttribute(\"class\", \"autocomplete\");\n },\n /**\n * Position the results HTML element\n */\n _Position: function () {\n this.DOMResults.setAttribute(\"class\", \"autocomplete\");\n this.DOMResults.setAttribute(\"style\", \"top:\" + (this.Input.offsetTop + this.Input.offsetHeight) + \"px;left:\" + this.Input.offsetLeft + \"px;width:\" + this.Input.clientWidth + \"px;\");\n },\n /**\n * Execute the render of results DOM element\n */\n _Render: function (response) {\n var ul;\n if (typeof response == \"string\") {\n ul = this._RenderRaw(response);\n }\n else {\n ul = this._RenderResponseItems(response);\n }\n if (this.DOMResults.hasChildNodes()) {\n this.DOMResults.removeChild(this.DOMResults.childNodes[0]);\n }\n this.DOMResults.appendChild(ul);\n },\n /**\n * ResponseItems[] rendering\n */\n _RenderResponseItems: function (response) {\n var ul = document.createElement(\"ul\"), li = document.createElement(\"li\"), limit = this._Limit();\n // Order\n if (limit < 0) {\n response = response.reverse();\n }\n else if (limit === 0) {\n limit = response.length;\n }\n for (var item = 0; item < Math.min(Math.abs(limit), response.length); item++) {\n li.innerHTML = response[item].Label;\n li.setAttribute(\"data-autocomplete-value\", response[item].Value);\n ul.appendChild(li);\n li = document.createElement(\"li\");\n }\n return ul;\n },\n /**\n * string response rendering (RAW HTML)\n */\n _RenderRaw: function (response) {\n var ul = document.createElement(\"ul\"), li = document.createElement(\"li\");\n if (response.length > 0) {\n this.DOMResults.innerHTML = response;\n }\n else {\n var emptyMessage = this._EmptyMessage();\n if (emptyMessage !== \"\") {\n li.innerHTML = emptyMessage;\n li.setAttribute(\"class\", \"locked\");\n ul.appendChild(li);\n }\n }\n return ul;\n },\n /**\n * Deal with request response\n */\n _Post: function (response) {\n try {\n var returnResponse = [];\n //JSON return\n var json = JSON.parse(response);\n if (Object.keys(json).length === 0) {\n return \"\";\n }\n if (Array.isArray(json)) {\n for (var i = 0; i < Object.keys(json).length; i++) {\n returnResponse[returnResponse.length] = { \"Value\": json[i], \"Label\": this._Highlight(json[i]) };\n }\n }\n else {\n for (var value in json) {\n returnResponse.push({\n \"Value\": value,\n \"Label\": this._Highlight(json[value])\n });\n }\n }\n return returnResponse;\n }\n catch (event) {\n //HTML return\n return response;\n }\n },\n /**\n * Return the autocomplete value to send (before request)\n */\n _Pre: function () {\n return this.Input.value;\n },\n /**\n * Choice one result item\n */\n _Select: function (item) {\n if (item.hasAttribute(\"data-autocomplete-value\")) {\n this.Input.value = item.getAttribute(\"data-autocomplete-value\");\n }\n else {\n this.Input.value = item.innerHTML;\n }\n this.Input.setAttribute(\"data-autocomplete-old-value\", this.Input.value);\n },\n /**\n * Handle HTTP error on the request\n */\n _Error: function () {\n },\n $AjaxTimer: null,\n $Cache: {},\n $Listeners: {}\n };\n return AutoComplete;\n}());\nmodule.exports = AutoComplete;\n\n},{}]},{},[1])(1)\n});\n"],"names":["window","searxng","w","d","Element","ElementPrototype","matches","matchesSelector","webkitMatchesSelector","msMatchesSelector","selector","node","this","nodes","parentNode","document","querySelectorAll","i","prototype","callbackSafe","callback","el","e","call","exception","console","log","on","obj","eventType","useCapture","addEventListener","target","srcElement","found","parentElement","ready","readyState","bind","http","method","url","data","Promise","resolve","reject","req","XMLHttpRequest","open","timeout","onload","status","response","responseType","Error","statusText","onerror","onabort","ontimeout","send","ex","loadStyle","src","path","settings","theme_static_path","id","replace","s","getElementById","createElement","setAttribute","body","appendChild","loadScript","hasAttribute","apply","insertBefore","newNode","referenceNode","insertAfter","nextSibling","classList","add","getEndpoint","className","getElementsByTagName","values","endsWith","split","endpoint","infinite_scroll_supported","IntersectionObserverEntry","let","onlyImages","contains","newLoadSpinner","loader","replaceChildrenWith","element","children","textContent","forEach","child","loadNextPage","form","querySelector","formData","FormData","getAttribute","then","nextPageDoc","DOMParser","parseFromString","articleList","paginationElement","remove","length","articleElement","catch","err","translations","error_loading_next_page","infinite_scroll","intersectionObserveOptions","rootMargin","observedSelector","observer","IntersectionObserver","entries","paginationEntry","isIntersecting","unobserve","observe","isElementInDetail","undefined","getResultElement","isImageResult","resultElement","highlightResult","preventDefault","selectImage","vimKeys","27","key","fun","removeFocus","des","cat","73","searchInputFocus","66","scrollPage","innerHeight","70","85","68","71","scrollPageTo","scrollHeight","86","75","74","80","GoToPreviousPage","78","GoToNextPage","79","openResult","84","82","reloadPage","72","toggleHelp","hotkeys","Object","hasOwnProperty","keyCode","ctrlKey","altKey","shiftKey","metaKey","tagName","toLowerCase","which","noScroll","keepFocus","current","effectiveWhich","next","results","top","documentElement","scrollTop","bot","clientHeight","etop","offsetTop","ebot","nextElementSibling","previousElementSibling","removeAttribute","link","focus","scrollPageToSelected","location","reload","activeElement","blur","closeDetail","pageButtonClick","css_selector","button","click","sel","wtop","wheight","offset","scroll","scrollX","wbot","amount","scrollBy","position","nav","scrollTo","q","setSelectionRange","len","value","newTab","href","initHelpContent","divElement","categories","k","push","sorted","keys","sort","a","b","html","lastCategory","first","cj","innerHTML","helpPanel","toggle","selectNext","selectPrevious","event","leaflet_target","dataset","leafletTarget","map_lon","parseFloat","mapLon","map_lat","mapLat","map_zoom","mapZoom","map_boundingbox","JSON","parse","mapBoundingbox","map_geojson","mapGeojson","map_bounds","southWest","L","latLng","northEast","latLngBounds","map","osmMapnikUrl","osmMapnikAttrib","osmMapnik","TileLayer","minZoom","maxZoom","attribution","osmWikimediaUrl","osmWikimediaAttrib","osmWikimedia","setTimeout","fitBounds","setView","addLayer","baseLayers","OSM Mapnik","OSM Wikimedia","control","layers","addTo","geoJson","engine_descriptions","load_engine_descriptions","content","engine_name","description","elements","source","Source","img","style","display","error","btnLabelCollapsed","btnLabelNotCollapsed","targetElement","iframe_load","srctest","imgElement","thumbnailElement","detailElement","imgSrc","imgLoader","Image","qinput_id","qinput","isMobile","matchMedia","submitIfQuery","search","submit","createClearButton","cs","updateClearButton","ev","autocomplete_provider","autocomplete","AutoComplete","Url","EmptyMessage","no_item_found","HttpMethod","http_method","HttpHeaders","Content-type","X-Requested-With","MinChars","autocomplete_min","Delay","_Position","_Open","params","Array","DOMResults","li","onmousedown","_Select","ajax","request","$AjaxTimer","clearTimeout","Request","abort","encodeURIComponent","_QueryArg","_Pre","search_on_category_select","checked","f","exports","module","define","amd","g","global","self","r","n","t","o","c","require","u","code","p","1","ConditionOperator","EventType","isArray","input","specificParams","merge","defaults","create","Input","nodeName","match","$Listeners","_Blur","destroy","_Focus","keyup","KEYUP","keydown","KEYDOWN","getEventsByType","type","mappings","KeyboardMappings","Event","eventIdentifier","condition","mapping","Operator","AND","OR","Not","Is","From","To","name","Conditions","Callback","makeRequest","callbackErr","propertyHttpHeaders","getOwnPropertyNames","_HttpMethod","_Url","queryParams","queryParamsStringify","indexOf","setRequestHeader","onreadystatechange","$Cache","cache","_Cache","removeEventListener","removeChild","tmp","arguments","Highlight","getRegex","RegExp","transform","Limit","QueryArg","Enter","liActive","KeyUpAndDown_down","KeyUpAndDown_up","last","active","currentIndex","lisCount","item","AlphaNum","oldValue","currentValue","_MinChars","_Render","_Post","_Error","_Close","_EmptyMessage","emptyMessage","_Limit","limit","isNaN","parseInt","minchars","_Highlight","label","now","onclick","offsetHeight","offsetLeft","clientWidth","ul","_RenderRaw","_RenderResponseItems","hasChildNodes","childNodes","reverse","Math","min","abs","Label","Value","returnResponse","json"],"mappings":"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"} \ No newline at end of file diff --git a/searx/static/themes/simple/package.json b/searx/static/themes/simple/package.json index 91ceb3f22..530a96c88 100644 --- a/searx/static/themes/simple/package.json +++ b/searx/static/themes/simple/package.json @@ -1,7 +1,7 @@ { "devDependencies": { "eslint": "^8.18.0", - "grunt": "~1.5.3", + "grunt": "~1.6.1", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-cssmin": "^4.0.0", "grunt-contrib-less": "~3.0.0", diff --git a/searx/static/themes/simple/src/less/style.less b/searx/static/themes/simple/src/less/style.less index e43508dd1..962dbeba0 100644 --- a/searx/static/themes/simple/src/less/style.less +++ b/searx/static/themes/simple/src/less/style.less @@ -362,7 +362,7 @@ article[data-vim-selected].category-social { .category-files, .category-social { border: 1px solid var(--color-result-border); - margin: 1rem @results-tablet-offset 0 @results-tablet-offset !important; + margin: 0 @results-tablet-offset 1rem @results-tablet-offset !important; .rounded-corners; } @@ -734,6 +734,26 @@ article[data-vim-selected].category-social { } } +.numbered_pagination { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + overflow: hidden; +} + +.page_number { + background: transparent !important; + color: var(--color-result-link-font) !important; + text-decoration: underline; +} + +.page_number_current { + background: transparent; + color: var(--color-result-link-visited-font); + border: none; +} + #apis { margin-top: 8px; clear: both; @@ -1009,6 +1029,10 @@ article[data-vim-selected].category-social { background-color: var(--color-sidebar-background); } + .numbered_pagination { + display: none; + } + .result-paper { .attributes { display: block; diff --git a/searx/templates/simple/filters/languages.html b/searx/templates/simple/filters/languages.html index e9e4d47ce..54e07e209 100644 --- a/searx/templates/simple/filters/languages.html +++ b/searx/templates/simple/filters/languages.html @@ -1,5 +1,9 @@ {{- '' -}} + {%- for lang_id,lang_name,country_name,english_name,flag in language_codes | sort(attribute=1) -%} {%- endfor -%} {{- '' -}}

-
{{ _('What language do you prefer for search?') }}
+
+ {{- _('What language do you prefer for search?') }} {{ _('Choose Auto-detect to let SearXNG detect the language of your query.') -}} +
{% endif %} {% if 'autocomplete' not in locked_preferences %} diff --git a/searx/templates/simple/results.html b/searx/templates/simple/results.html index b05841bbb..f73a25d09 100644 --- a/searx/templates/simple/results.html +++ b/searx/templates/simple/results.html @@ -65,7 +65,7 @@ {% if suggestions %} diff --git a/searx/translations/af/LC_MESSAGES/messages.mo b/searx/translations/af/LC_MESSAGES/messages.mo index 4cf540acc..f1f5847c3 100644 Binary files a/searx/translations/af/LC_MESSAGES/messages.mo and b/searx/translations/af/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/af/LC_MESSAGES/messages.po b/searx/translations/af/LC_MESSAGES/messages.po index 0795ed3d7..cc7c281bd 100644 --- a/searx/translations/af/LC_MESSAGES/messages.po +++ b/searx/translations/af/LC_MESSAGES/messages.po @@ -5,21 +5,21 @@ # Edrean Ernst , 2022. # Markus Heiser , 2022. # Sean Botha , 2022. +# jestie , 2023. msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-30 07:14+0000\n" -"Last-Translator: Sean Botha \n" -"Language-Team: Afrikaans \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-14 09:56+0000\n" +"Last-Translator: jestie \n" "Language: af\n" +"Language-Team: Afrikaans " +"\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -199,40 +199,40 @@ msgstr "toegang geweier" msgid "server API error" msgstr "bediener API fout" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Geen item gevind" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Bron" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Fout met die laai van die volgende bladsy" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Ongeldige opstellings, redigeer asb jou voorkeure" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ongeldige opstellings" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "soekfout" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Opgehef" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minute terug" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} ure, {minutes} minute terug" @@ -273,6 +273,8 @@ msgid "" "{numCitations} citations from the year {firstCitationVelocityYear} to " "{lastCitationVelocityYear}" msgstr "" +"{numCitations} aanhalings vanaf die jaar {firstCitationVelocityYear} tot " +"{lastCitationVelocityYear}" #: searx/engines/tineye.py:40 msgid "" @@ -313,29 +315,23 @@ msgstr "aand" msgid "Night" msgstr "Nag" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Outo-bespeur soektog taal" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." -msgstr "" +msgstr "Skakel snare om na verskillende hash digests." #: searx/plugins/hash_plugin.py:52 msgid "hash digest" -msgstr "" +msgstr "hash digest" #: searx/plugins/hostname_replace.py:9 msgid "Hostname replace" -msgstr "" +msgstr "vervang Gasheernaam" #: searx/plugins/hostname_replace.py:10 msgid "Rewrite result hostnames or remove results based on the hostname" msgstr "" +"Herskryf resultaatgasheername of verwyder resultate op grond van die " +"gasheernaam" #: searx/plugins/oa_doi_rewrite.py:9 msgid "Open Access DOI rewrite" @@ -363,7 +359,7 @@ msgstr "" #: searx/plugins/self_info.py:20 msgid "Self Information" -msgstr "" +msgstr "Self-inligting" #: searx/plugins/self_info.py:21 msgid "" @@ -379,40 +375,37 @@ msgstr "Tor toets inprop" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Hierdie inprop toepassing kontroleer of die adres van die versoek 'n TOR " -"uitgang nodus is en stel die gebruiker in kennis indien wel, soos " -"check.torproject.org maar vanaf searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Die TOR uitgang nodus lys (https://check.torproject.org/exit-addresses) " -"is nie bereikbaar nie." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Jy gebruik tans TOR. Jou IP adres lyk na : {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Jy gebruik nie tans TOR nie. Jou IP adres lyk na: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" -msgstr "" +msgstr "Spoorsnyer URL verwyderaar" #: searx/plugins/tracker_url_remover.py:30 msgid "Remove trackers arguments from the returned URL" -msgstr "" +msgstr "Verwyder spoorsnyersargumente van die teruggestuurde URL" #: searx/plugins/vim_hotkeys.py:3 msgid "Vim-like hotkeys" -msgstr "" +msgstr "Soortgelyke-VIM kortpad sleutels" #: searx/plugins/vim_hotkeys.py:4 msgid "" @@ -573,15 +566,24 @@ msgstr "Soek taal" msgid "Default language" msgstr "Verstek taal" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Watter taal verkies jy vir soek?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Outovoltooi" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Vind goed soos jy tik" @@ -589,152 +591,152 @@ msgstr "Vind goed soos jy tik" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "VeiligeSoek" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Streng" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Matig" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Geen" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filter inhoud" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Verander die uitleg taal" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Verander SearXNG uitleg" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Tema styl" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Kies outo om jou blaaier verstellings te volg" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Aan" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Af" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Vertoon resultate in die middel van die bladsy (Oscar uitleg)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultate op nuwe oortjies" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Maak resultaat skakels oop in nuwe blaaier oortjies" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Oneindige blaai" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Laai die volgende bladsy outomaties wanneer blaai na die onderkant van " "die huidige bladsy" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privaatheid" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Metode" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Beeld proksie" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Geaktiveer" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Gedeaktiveer" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Proksie beeld resultate deur SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Navraag in die bladsy se titel" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -742,148 +744,148 @@ msgstr "" "Wanneer geaktiveer sal die resultaat se bladsy titel jou navraag bevat. " "Jou blaaier kan hierdie titel opneem" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Enjins" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Huidige gebruikte soekenjins" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Laat toe" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Enjin naam" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Kortpad" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Ondersteun gekose taal" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Tydreeks" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Reaksietyd" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maks tyd" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Betroubaarheid" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Spesiale Navrae" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Sleutelwoorde" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Naam" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Beskrywing" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Voorbeelde" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Koekies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1224,3 +1226,53 @@ msgstr "" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\"> leer meer oor versoek" #~ " metodes" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Hierdie inprop toepassing kontroleer of " +#~ "die adres van die versoek 'n TOR" +#~ " uitgang nodus is en stel die " +#~ "gebruiker in kennis indien wel, soos " +#~ "check.torproject.org maar vanaf searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Die TOR uitgang nodus lys " +#~ "(https://check.torproject.org/exit-addresses) is nie" +#~ " bereikbaar nie." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Jy gebruik tans TOR. Jou IP adres lyk na : {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Jy gebruik nie tans TOR nie. Jou IP adres lyk na: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Outo-bespeur soektog taal" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Spoor die navraagsoektaal outomaties op en skakel daaroor oor." + diff --git a/searx/translations/ar/LC_MESSAGES/messages.mo b/searx/translations/ar/LC_MESSAGES/messages.mo index 48e04923f..91186bed0 100644 Binary files a/searx/translations/ar/LC_MESSAGES/messages.mo and b/searx/translations/ar/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ar/LC_MESSAGES/messages.po b/searx/translations/ar/LC_MESSAGES/messages.po index f00b49612..19c549c72 100644 --- a/searx/translations/ar/LC_MESSAGES/messages.po +++ b/searx/translations/ar/LC_MESSAGES/messages.po @@ -10,22 +10,24 @@ # ken kailer , 2022. # George Kashkosh , 2022. # Droid , 2022. +# return42 , 2023. +# Cavemanly , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2023-01-13 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Arabic " -"\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-13 18:37+0000\n" +"Last-Translator: Cavemanly \n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.16.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -46,7 +48,7 @@ msgstr "ملفات" #. CATEGORY_NAMES['GENERAL'] #: searx/searxng.msg msgid "general" -msgstr "عامة" +msgstr "عام" #. CATEGORY_NAMES['MUSIC'] #: searx/searxng.msg @@ -56,7 +58,7 @@ msgstr "موسيقى" #. CATEGORY_NAMES['SOCIAL_MEDIA'] #: searx/searxng.msg msgid "social media" -msgstr "الشبكات التواصل الإجتماعية" +msgstr "شبكات التواصل الإجتماعي" #. CATEGORY_NAMES['IMAGES'] #: searx/searxng.msg @@ -66,7 +68,7 @@ msgstr "صور" #. CATEGORY_NAMES['VIDEOS'] #: searx/searxng.msg msgid "videos" -msgstr "فيديوهات" +msgstr "ڤيديوهات" #. CATEGORY_NAMES['IT'] #: searx/searxng.msg @@ -205,40 +207,40 @@ msgstr "الدخول مرفوض" msgid "server API error" msgstr "خطأ في API الخادم" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "تعذر العثور على عناصر" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "المصدر" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "حدث خلل أثناء تحميل الصفحة التالية" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "إعدادات غير صالحة" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "خطأ في البحث" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "معلق" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "قبل دقائق" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "قبل {hours} ساعات، {minutes} دقائق" @@ -256,7 +258,7 @@ msgstr "الدالات الإحصائية" #: searx/answerers/statistics/answerer.py:48 msgid "Compute {functions} of the arguments" -msgstr "حوسبة معطيات ال{العملية}" +msgstr "حوسبة معطيات ال{functions}" #: searx/engines/openstreetmap.py:160 msgid "Get directions" @@ -319,14 +321,6 @@ msgstr "مساء" msgid "Night" msgstr "ليلا" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "كشف تلقائي عن لغة البحث" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "كشف تلقائي عن لغة البحث والتبديل إليها." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "يحول السلسلة إلى ملخص التجزئة." @@ -385,27 +379,29 @@ msgstr "فحص المكون الإضافي ل Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" "يتحقق هذا المكون الإضافي مما إذا كان عنوان الطلب هو عقدة خروج TOR ، ويبلغ" -" المستخدم إذا كان كذلك ، مثل check.torproject.org ولكن من searxng." +" المستخدم إذا كان كذلك ، مثل check.torproject.org ولكن من SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"لا يمكن الوصول إلى قائمة عقدة الخروج TOR (https://check.torproject.org" -"/exit-addresses)." +"لم يمكن تنزيل قائمة Tor exit-nodes من عناوين: " +"https://check.torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "انك تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "انت تستعمل Tor ويبدو انه لديك هذا الIP: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "انك لا تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "أنت لا تستعمل Tor حالياً وهذا هو عنوان الـIP الخاص بك: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -583,15 +579,24 @@ msgstr "لغة البحث" msgid "Default language" msgstr "اللغة الإفتراضية" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "الاكتشاف التلقائي" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "ما هي لغتك المفضلة للبحث ؟" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "اختر الاكتشاف التلقائي للسماح لـ SearXNG باكتشاف لغة استعلامك." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "تكملة تلقائية" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "العثور على نتائج أثناء الكتابة" @@ -599,35 +604,35 @@ msgstr "العثور على نتائج أثناء الكتابة" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "البحث المؤمَّن" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "صارم" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "معتدل" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "لا شيء" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "فلترة المحتوى" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "فتح الوصول إلى محلل DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -635,87 +640,87 @@ msgstr "" "إعادة التوجيه إلى إصدارات مفتوحة الوصول من المنشورات حيثما أمكن ذلك (يلزم" " وجود مكون إضافي)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "الرمز المميز للمحرك" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "رمز الوصول إلى المحرك الخاص" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "واجهة المستخدم" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "لغة الواجهة" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "تغيير لغة واجهة البحث" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "السمة" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "تغيير مظهر سيركس" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "نمط" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "اختر تلقائي لاحترام إعدادات متصفحك" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "محاذاة المركز" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "يشتغل" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "مُعطَّل" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "اعرض النتائج في منتصف الصفحة (تخطيط Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "عرض نتائج البحث في ألسنة جديدة" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "عرض روابط نتائج البحث في ألسنة جديدة للمتصفح" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "تمرير الصفحات بلا حدود" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "حمّل تلقائيا الصفحة التالية عن السحب إلى أسفل النتائج" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "الخصوصية" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "أسلوب HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, إعرف المزيد عن طرق الطلب" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "وكيل بروكسي الصور" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "مُفَعَّل" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "غير مُفَعَّل" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "تمرير نتائج البحث عن الصور عبر بروكسي SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "طلب بحث في عنوان الصفحة" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -755,15 +760,15 @@ msgstr "" "عند التمكين ، يحتوي عنوان صفحة النتائج على كلمات البحث الرئيسية الخاصة " "بك. يمكن لمتصفحك تسجيل هذا العنوان" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "المحركات" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "محركات البحث المُستخدَمة حاليًا" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -771,76 +776,76 @@ msgstr "" "لا تظهر علامة التبويب هذه في نتائج البحث ، ولكن يمكنك البحث في المحركات " "المدرجة هنا عبر bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "تمكين" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "إسم المحرك" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "الإختصار" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "يدعم اللغة المختارة" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "الفترة" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "مدة الإستجابة" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "أقصى مدّة" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "إمكانية الإشتغال" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "استفسارات خاصة" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "الكلمات الرمزية" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "التسمية" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "الوصف" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "أمثلة" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "هذه قائمة وحدات الرد الفوري في SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "هذه قائمة المكونات الإضافية." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "كعكات الكوكيز" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -848,23 +853,23 @@ msgstr "" "هذه قائمة ملفات تعريف الارتباط وقيمها التي يخزنها SearXNG على جهاز " "الكمبيوتر الخاص بك." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "باستخدام هذه القائمة ، يمكنك تقييم شفافية SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "إسم الكوكي" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "القيمة" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "ابحث عن عنوان URL للتفضيلات المحفوظة حاليًا" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -872,11 +877,11 @@ msgstr "" "ملاحظة: يمكن أن يؤدي تحديد إعدادات مخصصة في عنوان URL للبحث إلى تقليل " "الخصوصية عن طريق تسريب البيانات إلى مواقع النتائج التي تم النقر عليها." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL لاستعادة تفضيلاتك في متصفح آخر" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -884,7 +889,7 @@ msgstr "" "يمكن استخدام تحديد الإعدادات المخصصة في تفضيلات URL لمزامنة التفضيلات عبر" " الأجهزة." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -892,7 +897,7 @@ msgstr "" "يتم تخزين هذه الإعدادات في ملفات تعريف الارتباط الخاصة بك ، وهذا يسمح لنا" " بعدم تخزين هذه البيانات عنك." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -900,15 +905,15 @@ msgstr "" "تخدم ملفات تعريف الارتباط هذه راحتك وحدك ، فنحن لا نستخدم ملفات تعريف " "الارتباط هذه لتتبعك." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "حفظ" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "إعاد التعيين إلى الإعدادات الإفتراضية" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "الخلف" @@ -978,7 +983,7 @@ msgstr "بحث" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "لم يتم العثور على أية بيانات بعد." +msgstr "لم يتم العثور على أية بيانات في الوقت الحالي. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1495,3 +1500,52 @@ msgstr "إخفاء الفيديو" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\"> تعرف على المزيد حول " #~ "طرق الطلب " + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "يتحقق هذا المكون الإضافي مما إذا " +#~ "كان عنوان الطلب هو عقدة خروج TOR" +#~ " ، ويبلغ المستخدم إذا كان كذلك " +#~ "، مثل check.torproject.org ولكن من " +#~ "searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "لا يمكن الوصول إلى قائمة عقدة " +#~ "الخروج TOR (https://check.torproject.org/exit-" +#~ "addresses)." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "انك تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "انك لا تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "كشف تلقائي عن لغة البحث" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "كشف تلقائي عن لغة البحث والتبديل إليها." diff --git a/searx/translations/bg/LC_MESSAGES/messages.mo b/searx/translations/bg/LC_MESSAGES/messages.mo index b71f837ca..4aaedb420 100644 Binary files a/searx/translations/bg/LC_MESSAGES/messages.mo and b/searx/translations/bg/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/bg/LC_MESSAGES/messages.po b/searx/translations/bg/LC_MESSAGES/messages.po index 34847fb22..ac897e1f2 100644 --- a/searx/translations/bg/LC_MESSAGES/messages.po +++ b/searx/translations/bg/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-11 07:18+0000\n" "Last-Translator: vynaaa \n" "Language: bg\n" @@ -201,40 +201,40 @@ msgstr "отказан достъп" msgid "server API error" msgstr "грешка в API на сървъра" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Не е намерен артикул" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Източник" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Грешка при зареждането на следващата страница" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Неправилни настройки, моля проверете предпочитанията си" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "невалидни настройки" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "грешка при търсенето" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "преустановен" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "преди {minutes} минута(минути)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "преди {hours} час(ове), {minutes} минута(минути)" @@ -317,14 +317,6 @@ msgstr "Вечер" msgid "Night" msgstr "Нощ" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Преобразува низове в различни хаш-извлечение." @@ -383,27 +375,25 @@ msgstr "Проверка на Tor приставката" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Тази добавка проверява дали адресът на заявката е изходен възел на TOR и " -"осведомява потребителя ако е - като check.torproject.org, но от searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Листа с изходните възли на TOR (https://check.torproject.org/exit-" -"addresses) е недостижим." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Използвате TOR. Вашият IP адрес изглежда е: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Не използвате TOR. Вашият IP адрес изглежда е: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -583,15 +573,24 @@ msgstr "Език на търсене" msgid "Default language" msgstr "Основен език" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Кой език предпочитате за търсене?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Автоматично допълване" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Намери докато пишеш" @@ -599,35 +598,35 @@ msgstr "Намери докато пишеш" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Безопасно търсене" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Стриктно" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Умерено" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Нищо" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Филтрирай съдържание" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Дигитален идентификатор на обекти с отворен достъп" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -635,87 +634,87 @@ msgstr "" "Пренасочване към версий на публикации с отворен достъп, когато са " "достъпни (Изисква допълнение)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Жетони на търсачката" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Жетони за достъп до частни търсачки" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Потребителски интерфейс" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Език на интерфейса" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Промени езика на оформлението" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Тема" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Смяна на оформлението на SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Тематичен стил" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Изберете автоматични настойки, за да следвате настройките на браузъра си" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Централно подреждане" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Включено" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Изключено" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Показване на резултатите в средата на страницата (Оскарово оформление)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Резултати на нови раздели" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Отвори връзките в нов раздел" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Списък без страници" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Автоматично зареждане на следващата страница" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Поверителност" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Метод" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, научете повече за методите на заявка" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Прокси на изображения" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Включено" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Изключено" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Прекарване на получените изображения през прокси на SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Запитване в заглавието на страницата" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -755,15 +754,15 @@ msgstr "" "Когато включено, резултата от заглавието на страницата съдържа вашето " "запитване. Браузърът ви може да записва това" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Търсачки" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Използвани търсачки в момента" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -771,76 +770,76 @@ msgstr "" "Този раздел не се показва за резултатите от търсенето, но можете да " "прегледате търсачките, изброени тук." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Позволи" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Име на търсачка" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Пряк път" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Поддържка на избраният език" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Времева зона" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Време за отговор" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Максимално време" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Надеждност" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Специялни Запитвания" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Ключови думи" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Име" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Описание" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Примери" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Това е листа, съдържащ моментално-отговарящите модули на SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Това е листа с добавки." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Бисквитки" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -848,23 +847,23 @@ msgstr "" "Това е листът с бисквитките и техните стойност които SearXNG запазва на " "компютъра ви." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "С този лист можете да оцените прозрачността на SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Име на бисквитката" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Стойност" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Потърсете URL на запазените предпочитания" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -873,11 +872,11 @@ msgstr "" "да намалят поверителността Ви като издадат данни към кликнатите сайтове " "при търсене." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL да възстановите предпочитанията си в друг браузър" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -885,7 +884,7 @@ msgstr "" "Специфицирането на персонализирани настройки в URL-то за предпочитания " "може да позволи синхронизация между различни устройства." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -893,7 +892,7 @@ msgstr "" "Тези настройки се съхраняват във вашите бисквитки. Това ни позволява да " "не съхраняваме тази информация за вас." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -901,15 +900,15 @@ msgstr "" "Тези бисквитки служат за ваше удобство. Ние не ги използваме, за да ви " "следим." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Запази" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Върни първоначалните" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Назад" @@ -1496,3 +1495,51 @@ msgstr "скрий видеото" #~ " rel=\"external\">learn more about request " #~ "methods" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Тази добавка проверява дали адресът на" +#~ " заявката е изходен възел на TOR " +#~ "и осведомява потребителя ако е - " +#~ "като check.torproject.org, но от searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Листа с изходните възли на TOR " +#~ "(https://check.torproject.org/exit-addresses) е " +#~ "недостижим." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Използвате TOR. Вашият IP адрес изглежда е: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Не използвате TOR. Вашият IP адрес изглежда е: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/bn/LC_MESSAGES/messages.mo b/searx/translations/bn/LC_MESSAGES/messages.mo index 4d8635763..117d597ba 100644 Binary files a/searx/translations/bn/LC_MESSAGES/messages.mo and b/searx/translations/bn/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/bn/LC_MESSAGES/messages.po b/searx/translations/bn/LC_MESSAGES/messages.po index 1f0aaa177..eb6d46370 100644 --- a/searx/translations/bn/LC_MESSAGES/messages.po +++ b/searx/translations/bn/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-25 07:16+0000\n" "Last-Translator: MSI Shafik \n" "Language: bn\n" @@ -199,40 +199,40 @@ msgstr "অ্যাক্সেস অমান্য" msgid "server API error" msgstr "সার্ভার এপিআই ত্রুটি" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "কোন আইটেম পাওয়া যায়নি" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "উৎস" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "পরবর্তী পৃষ্ঠাটি লোড করার সময় ত্রুটি৷." -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "অবৈধ সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন৷" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "অবৈধ সেটিংস" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "অনুসন্ধানের ত্রুটি" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "স্থগিত" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} মিনিট আগে" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} ঘণ্টা, {minutes} মিনিট আগে" @@ -314,14 +314,6 @@ msgstr "রাত" msgid "Night" msgstr "রাত" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "স্ট্রিংগুলিকে বিভিন্ন হ্যাশ ডাইজেস্টে রূপান্তর করে।" @@ -380,28 +372,25 @@ msgstr "টর চেক প্লাগইন" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"এই প্লাগইনটি চেক করে যে অনুরোধের ঠিকানাটি একটি TOR প্রস্থান নোড কিনা এবং " -"ব্যবহারকারীকে জানিয়ে দেয় যে এটি কিনা, যেমন check.torproject.org কিন্তু " -"searxng থেকে।" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"TOR প্রস্থান নোড তালিকা (https://check.torproject.org/exit-addresses) " -"পৌঁছানো যায় না।" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "আপনি TOR ব্যবহার করছেন। আপনার আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।" +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "আপনি TOR ব্যবহার করছেন না। আপনার আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।" +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -580,15 +569,24 @@ msgstr "অনুসন্ধানের ভাষা" msgid "Default language" msgstr "পূর্বনির্ধারিত ভাষা" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "আপনি অনুসন্ধানের জন্য কোন ভাষা পছন্দ করেন?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "স্বয়ংক্রিয়ভাবে পূরণ" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "টাইপ করার সময় শব্দগুলো খুঁজুন" @@ -596,35 +594,35 @@ msgstr "টাইপ করার সময় শব্দগুলো খু #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "নিরাপদ অনুসন্ধান" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "কঠোর" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "মধ্যম" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "নেই" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "বাছাইকৃত উপাত্ত" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "উন্মুক্ত প্রবেশাধিকারযুক্ত DOI সমাধানদাতা" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -632,263 +630,263 @@ msgstr "" "যখন এভেইলেবল হবে তখন উন্মুক্ত প্রবেশাধিকার ভার্সনে ফিরিয়ে নিন (প্লাগিন " "বাধ‍্যতামূলক)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "ইঞ্জিন টোকেন" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "প্রাইভেট ইঞ্জিনের জন‍্য প্রবেশাধিকার টোকেন" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "ব‍্যবহারকারীর সম্মুখে প্রদর্শিত" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "ইন্টারফেসের ভাষা" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "লে আউটের ভাষা পরিবর্তন করুন" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "রঙ" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "SearXNG এর লেআউট পরিবর্তন করুন" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "থিমের ধরণ" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "আপনার ব্রাউজার সেটিংস অনুসরণ করার জন‍্য auto সিলেক্ট করুন" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "মধ‍্যবর্তী বিন‍্যাস" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "চালু" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "বন্ধ" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "পেইজের মাঝখানে রেজাল্ট দেখান (অস্কার লেআউট)।" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "নতুন ট‍্যাবে রেজাল্ট রয়েছে" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "গোপনীয়তা" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "সক্রিয়" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "নিষ্ক্রিয়" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "ইঞ্জিন" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "অনুমোদন" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "শর্টকাট" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "নির্ভরযোগ্যতা" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "মূলশব্দ" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "নাম" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "বর্ণনা" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "উদাহরণ" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "কুকি" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "মান" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "সংরক্ষণ" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "পিছনে" @@ -1235,3 +1233,54 @@ msgstr "ভিডিও লুকিয়ে ফেলুন" #~ "methods" #~ msgstr "" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "এই প্লাগইনটি চেক করে যে অনুরোধের " +#~ "ঠিকানাটি একটি TOR প্রস্থান নোড কিনা " +#~ "এবং ব্যবহারকারীকে জানিয়ে দেয় যে এটি" +#~ " কিনা, যেমন check.torproject.org কিন্তু " +#~ "searxng থেকে।" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "TOR প্রস্থান নোড তালিকা " +#~ "(https://check.torproject.org/exit-addresses) পৌঁছানো " +#~ "যায় না।" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "আপনি TOR ব্যবহার করছেন। আপনার আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" +#~ "আপনি TOR ব্যবহার করছেন না। আপনার " +#~ "আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/bo/LC_MESSAGES/messages.mo b/searx/translations/bo/LC_MESSAGES/messages.mo index 71f8cb9f9..ece0e471c 100644 Binary files a/searx/translations/bo/LC_MESSAGES/messages.mo and b/searx/translations/bo/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/bo/LC_MESSAGES/messages.po b/searx/translations/bo/LC_MESSAGES/messages.po index 42a203842..20c7d1dc9 100644 --- a/searx/translations/bo/LC_MESSAGES/messages.po +++ b/searx/translations/bo/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2021-12-17 07:17+0000\n" "Last-Translator: Markus Heiser \n" "Language: bo\n" @@ -198,40 +198,40 @@ msgstr "" msgid "server API error" msgstr "" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "སྐར་མ་ {minutes} སྔོན་ལ།" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།" @@ -306,14 +306,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -370,22 +362,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -559,15 +553,24 @@ msgstr "འཚོལ་བཤེར་ནང་དོན་མཚོན་བྱ msgid "Default language" msgstr "གཞི་བཞག་སྐད་རིགས།" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "ཁྱེད་ཀྱིས་ཆེས་སྤྱོད་བདེ་པའི་འཚོལ་བཤེར་སྐད་རིགས་གང་ཡིན་ནམ།" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "རང་ཤུགས་ཀྱིས་སྒྲུབ།" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "འཚོལ་བྱ་གཏགས་པ་ཇི་བཞིན་བཙལ།" @@ -575,297 +578,297 @@ msgstr "འཚོལ་བྱ་གཏགས་པ་ཇི་བཞིན་བ #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "བདེ་འཇགས་འཚོལ་བཤེར།" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "ནན་ཏན།" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "འབྲིང་ཙམ།" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "གང་ཡང་མེད།" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "ནང་དོན་བཙག་བྱེད།" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "མདུན་ངོས།" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "དྲ་ངོས་སྐད་རིགས།" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "སྐད་རིགས་གདམ་གསེས་ཀྱི་དྲ་ངོས་བརྗེ་བསྒྱུར།" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "ཁ་ཕྱེས།" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "ཁ་རྒྱབ།" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "ཤོག་ངོས་གསར་བ་ནས་འཚོལ་འབྲས་འཆར།" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "ཤོག་ངོས་གསར་བ་ཞིག་ནས་དྲ་ངོས་འཆར་པར་བྱེད།" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "མཐའ་མེད་པའི་འཆར་ངོས།" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "དྲ་ངོས་མར་འདྲུད་ནས་ཞབས་ལ་སླེབས་དུས་རང་འགུལ་སྒོས་འཕྲོ་མའི་ནང་དོན་འཆར་པར་བྱེད།" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "མི་སྒེར་གསང་དོན།" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "རི་མོ་མངག་བཅོལ་གྱི་ཞབས་ཞུ་སྒྲིག་ཆས།" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "ཁ་འབྱེད་ཟིན།" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "ཁ་རྒྱབ་ཟིན།" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "སྒུལ་བྱེད།" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "ཉེ་ལམ་སྤྱད་ཟིན་པའི་འཚོལ་བྱེད་སྒུལ་བྱེད།" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "ཆོག་མཆན།" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "སྒུལ་བྱེད་ཀྱི་མིང་།" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "མགྱོགས་མྱུར་མཐེབ་གཞོང་།" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "རྒྱབ་སྐྱོར་ཐོབ་པའི་སྐད་རིགས་གདམ་གསེས།" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "དུས་ཀྱི་ཁྱབ་ཁོངས།" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "མང་མཐའི་དུས་ཚོད།" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "ཐ་སྙད་གཙོ་བོ།" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "མིང་།" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "འབྲེལ་ཡོད་ངོ་སྤྲོད།" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "དཔེ་བརྗོད།" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "རྐང་རྗེས།" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "རྗེས་འདེད་ཀྱི་ཡིག་ཆའི་མིང་།" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "ཚད་གཞི།" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "ཉེ་ལམ་རང་མོས་སྒྲིག་འགོད་ཁྲོད་དུ་གསོག་འཇོག་བྱས་ཟིན་པའི་དྲ་གནས་འཚོལ་བཤེར།" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "གཞི་བཞག་གི་རྣམ་པར་སྒྲིག་བཀོད་བྱེད།" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1451,3 +1454,44 @@ msgstr "རྙན་ཟློས་སྦས།" #~ "methods" #~ msgstr "" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/ca/LC_MESSAGES/messages.mo b/searx/translations/ca/LC_MESSAGES/messages.mo index f7b0fee7b..8e496509d 100644 Binary files a/searx/translations/ca/LC_MESSAGES/messages.mo and b/searx/translations/ca/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ca/LC_MESSAGES/messages.po b/searx/translations/ca/LC_MESSAGES/messages.po index a699a1f4c..793e3318a 100644 --- a/searx/translations/ca/LC_MESSAGES/messages.po +++ b/searx/translations/ca/LC_MESSAGES/messages.po @@ -11,16 +11,17 @@ # alexfs2015 , 2022. # Joan Montané , 2022. # Markus Heiser , 2022. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-11-04 07:18+0000\n" -"Last-Translator: alexfs2015 \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-19 11:39+0000\n" +"Last-Translator: return42 \n" "Language: ca\n" "Language-Team: Catalan " -"\n" +"\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -204,40 +205,40 @@ msgstr "accés denegat" msgid "server API error" msgstr "error en l'API del servidor" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "No s'ha trobat cap element" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Origen" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "S'ha produït un error en carregar la pàgina següent" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "La configuració no és vàlida, editeu-la" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "La configuració no és vàlida" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "error en la cerca" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspès" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "fa {minutes} minuts" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "fa {hours} hores i {minutes} minuts" @@ -320,14 +321,6 @@ msgstr "Vespre" msgid "Night" msgstr "Nit" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Converteix cadenes a diferent formats de resum." @@ -388,28 +381,25 @@ msgstr "Plugin de comprovació de Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Aquest plugin comprova si l'adreça de la sol·licitud és un node de " -"sortida TOR i informa a l'usuari si ho és, com check.torproject.org però " -"des de searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"No es pot accedir a la llista de nodes de sortida TOR " -"(https://check.torproject.org/exit-addresses)." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "No esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -585,15 +575,24 @@ msgstr "Llengua de cerca" msgid "Default language" msgstr "Llengua predeterminada" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "En quina llengua preferiu cercar?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Compleció automàtica" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Troba coses tal com escriu" @@ -601,35 +600,35 @@ msgstr "Troba coses tal com escriu" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Cerca segura" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Estricta" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderada" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Cap" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtra el contingut" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Solucionador de l'Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -637,89 +636,89 @@ msgstr "" "Redirigeix cap a versions d'accés obert de les publicacions si són " "disponibles (cal un connector)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Claus de motors" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Claus d'accés per a motors privats" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfície d'usuari" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Llengua de la interfície" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Canvia la llengua de la disposició" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Canvia la interfície del SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Estil del tema" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Trieu automàtic per a mantenir la configuració del navegador" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Centrat central" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Activat" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Desactivat" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Mostrar els resultats en el centre de la pàgina (disseny Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultats en pestanyes noves" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Obre els enllaços de resultats en una pestanya nova" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Desplaçament infinit" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Carrega automàticament la pàgina següent en desplaçar-se al final de la " "pàgina actual" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privadesa" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Mètode HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, més informació sobre els mètodes de petició" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Servidor intermediari d'imatges" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Activat" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Desactivat" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Les imatges es carreguen via un servidor intermediari SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Consulta en el títol de la pàgina" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -759,15 +758,15 @@ msgstr "" "Si està activat, el títol de la pàgina conté la consulta. El navegador " "pot enregistrar aquest títol" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motors" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motors de cerca usats actualment" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -775,76 +774,76 @@ msgstr "" "Aquesta pestanya no es mostra per als resultats de la cerca, però podeu " "cercar en els motors llistats aquí amb els bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permet" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nom del motor" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Drecera" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Suporta la llengua seleccionada" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Interval de temps" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Temps de resposta" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Temps màxim" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Fiabilitat" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Consultes especials" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Paraules clau" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nom" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descripció" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemples" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Aquesta és la llista dels mòduls de resposta instantània de SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Això és la llista dels connectors." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Galetes" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -852,23 +851,23 @@ msgstr "" "Això és la llista de les galetes, i els seus valors, que el SearXNG " "emmagatzema en el vostre ordinador." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Amb aquesta llista, podeu comprovar la transparència de SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nom de la galeta" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valor" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL de cerca de les preferències desades actualment" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -877,11 +876,11 @@ msgstr "" " reduir-ne la privadesa i filtrar dades, en fer clic en els llocs dels " "resultats." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL per a recuperar les preferències en un altre navegador" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -889,7 +888,7 @@ msgstr "" "Indicar els paràmetres personalitzats en l'URL de preferències pot usar-" "se per a sincronitzar preferències entre aparells." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -897,7 +896,7 @@ msgstr "" "Aquesta configuració es desa en les galetes. Això ens permet no " "emmagatzemar les vostres dades." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -905,15 +904,15 @@ msgstr "" "Aquestes galetes només són per a la vostra comoditat. No les usem per a " "rastrejar-vos." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Desa" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Restaura els valors predeterminats" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Enrere" @@ -983,7 +982,7 @@ msgstr "cerca" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Actualment, no hi ha dades disponibles." +msgstr "Actualment no hi ha dades disponibles. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1510,3 +1509,52 @@ msgstr "amaga el vídeo" #~ " rel=\"external\">més informació sobre els " #~ "mètodes de petició" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Aquest plugin comprova si l'adreça de" +#~ " la sol·licitud és un node de " +#~ "sortida TOR i informa a l'usuari " +#~ "si ho és, com check.torproject.org però" +#~ " des de searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "No es pot accedir a la llista " +#~ "de nodes de sortida TOR " +#~ "(https://check.torproject.org/exit-addresses)." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "No esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Detecta automàticament la llengua de cerca" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/cs/LC_MESSAGES/messages.mo b/searx/translations/cs/LC_MESSAGES/messages.mo index fa36e75db..644478212 100644 Binary files a/searx/translations/cs/LC_MESSAGES/messages.mo and b/searx/translations/cs/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/cs/LC_MESSAGES/messages.po b/searx/translations/cs/LC_MESSAGES/messages.po index f66abe8db..4f2bd25b1 100644 --- a/searx/translations/cs/LC_MESSAGES/messages.po +++ b/searx/translations/cs/LC_MESSAGES/messages.po @@ -10,22 +10,22 @@ # Markus Heiser , 2022. # Masterix , 2022. # LagManCZ , 2022. +# zenobit , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-23 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Czech " -"\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-12 09:56+0000\n" +"Last-Translator: zenobit \n" "Language: cs\n" +"Language-Team: Czech " +"\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && " +"n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -205,40 +205,40 @@ msgstr "přístup odepřen" msgid "server API error" msgstr "chyba API serveru" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nic nenalezeno" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "zdroj" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Chyba při načítání další stránky" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Neplatné nastavení, upravte své předvolby" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Neplatné nastavení" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "chyba vyhledávání" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Pozastaveno" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "před {minutes} minutami" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "před {hours} hodinami, {minutes} minutami" @@ -320,14 +320,6 @@ msgstr "Večer" msgid "Night" msgstr "Noc" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Automaticky rozpoznaný jazyk vyhledávání" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Automaticky detekuj jazyk vyhledávaného dotazu a přepni se do něj." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Převádí řetězce na různé hash hodnoty." @@ -386,27 +378,25 @@ msgstr "Plugin kontroly TORu" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Tento plugin kontroluje, jestli adresa požadavku je výstupní uzel TORu, a" -" infromuje uživatele pokud je, jako check.torproject.org ale od searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Seznam výstupních uzlů TOR (https://check.torproject.org/exit-addresses) " -"je nedostupný." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Používáte TOR. Zdá se, že vaše IP adresa je: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Nepoužíváte TOR. Zdá se, že vaše IP adresa je: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -584,15 +574,24 @@ msgstr "Jazyk hledání" msgid "Default language" msgstr "Výchozí jazyk" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Jaký jazyk vyhledávání upřednostňujete?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Našeptávač" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Vyhledávat během psaní" @@ -600,35 +599,35 @@ msgstr "Vyhledávat během psaní" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Bezpečné vyhledávání" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Přísné" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Střední" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Vypnuto" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrovat obsah" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Web pro přesměrování na Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -636,87 +635,87 @@ msgstr "" "Přesměrovat na volně přístupné verze publikací, pokud jsou k dispozici " "(vyžaduje zásuvný modul)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokeny vyhledávačů" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Přístupové tokeny pro soukromé vyhledávače" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Uživatelské rozhraní" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Jazyk rozhraní" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Nastavit jazyk rozhraní" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Vzhled" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Změnit vzhled SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Styl vzhledu" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Zvolte automaticky pro sledování nastavení vašeho prohlížeče" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Zarovnání na střed" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Zapnuto" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Vypnuto" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Zobrazí výsledky uprostřed stránky (rozložení Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Výsledky na novém panelu" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Otevírat výsledky na novém panelu prohlížeče" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Nekonečné výsledky" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Automaticky načítat další výsledky při rolování" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Soukromí" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Metoda HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, naočit se více o metodách žádání" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Nepřímé vyhledávání obrázků" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Zapnuto" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Vypnuto" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Používat SearXNG jako prostředníka pro vyhledávání obrázků" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Dotaz v titulku stránky" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -756,15 +755,15 @@ msgstr "" "Titulek stránky s výsledky bude obsahovat váš vyhledávací dotaz, pokud " "toto zapnete. Váš prohlížeč může tento titulek zaznamenat" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Vyhledávače" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Aktuálně používané vyhledávače" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -772,76 +771,76 @@ msgstr "" "Tato záložka se nezobrazuje ve výsledcích vyhledávání, ale můžete použít " "vyhledávače zde uvedené pomocí vykřičníku." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Povolit" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Jméno vyhledávače" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Zkratka" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Podporuje vybraný jazyk" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Čásový interval" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Čas odpovědi" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Max. čas" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Spolehlivost" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Zvláštní dotazy" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Klíčová slova" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Název" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Popis" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Příklady" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Toto je seznam našeptávačů SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Toto je seznam doplňků." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -849,23 +848,23 @@ msgstr "" "Toto je seznam cookies a jejich hodnoty, které si SearXNG ukládá na vašem" " počítači." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "S pomocí tohoto seznamu můžete určit transparentnost SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Název cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Hodnota" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL pro vyhledávání s aktuálně uloženými předvolbami" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -873,11 +872,11 @@ msgstr "" "Poznámka: zadaní vlastních nastavení v URL může snížit soukromí " "prozrazením dat při kliknutí na výsledky hledání." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL k obnovení vašich preferencí v jiném prohlížeči" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -885,7 +884,7 @@ msgstr "" "Zadání vlastních nastavení v URL předvoleb lze použít k synchronizaci " "předvoleb mezi zařízeními." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -893,7 +892,7 @@ msgstr "" "Tato nastavení jsou uložena ve vašich cookies, což nám umožňuje tyto data" " neuchovávat nikde jinde." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -901,15 +900,15 @@ msgstr "" "Tyto cookies existují výhradně pro vaše pohodlí, nepoužíváme je ke " "sledování." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Uložit" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "obnovit výchozí" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Zpět" @@ -979,7 +978,7 @@ msgstr "vyhledat" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Aktuálně nejsou k dispozici žádná data." +msgstr "Aktuálně nejsou k dispozici žádná data. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1502,3 +1501,52 @@ msgstr "skrýt video" #~ " o dotazovacích metodách viz Wikipedie" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Tento plugin kontroluje, jestli adresa " +#~ "požadavku je výstupní uzel TORu, a " +#~ "infromuje uživatele pokud je, jako " +#~ "check.torproject.org ale od searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Seznam výstupních uzlů TOR " +#~ "(https://check.torproject.org/exit-addresses) je " +#~ "nedostupný." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Používáte TOR. Zdá se, že vaše IP adresa je: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Nepoužíváte TOR. Zdá se, že vaše IP adresa je: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Automaticky rozpoznaný jazyk vyhledávání" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Automaticky detekuj jazyk vyhledávaného dotazu a přepni se do něj." + diff --git a/searx/translations/cy/LC_MESSAGES/messages.mo b/searx/translations/cy/LC_MESSAGES/messages.mo index 8e1df5bd8..cfa0feff2 100644 Binary files a/searx/translations/cy/LC_MESSAGES/messages.mo and b/searx/translations/cy/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/cy/LC_MESSAGES/messages.po b/searx/translations/cy/LC_MESSAGES/messages.po index f2afa7e79..855777146 100644 --- a/searx/translations/cy/LC_MESSAGES/messages.po +++ b/searx/translations/cy/LC_MESSAGES/messages.po @@ -6,21 +6,23 @@ # Cymrodor , 2019 # Markus Heiser , 2022. # CJ , 2022. +# RhysJones , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-09-28 07:29+0000\n" -"Last-Translator: CJ \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-15 15:37+0000\n" +"Last-Translator: RhysJones \n" +"Language-Team: Welsh \n" "Language: cy\n" -"Language-Team: Welsh " -"\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n " -"!= 11) ? 2 : 3;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " +"11) ? 2 : 3;\n" +"X-Generator: Weblate 4.16.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -91,7 +93,7 @@ msgstr "gwyddoniaeth" #. CATEGORY_GROUPS['APPS'] #: searx/searxng.msg msgid "apps" -msgstr "apps" +msgstr "apiau" #. CATEGORY_GROUPS['DICTIONARIES'] #: searx/searxng.msg @@ -116,7 +118,7 @@ msgstr "q&a" #. CATEGORY_GROUPS['REPOS'] #: searx/searxng.msg msgid "repos" -msgstr "repos" +msgstr "Gorffwys" #. CATEGORY_GROUPS['SOFTWARE_WIKIS'] #: searx/searxng.msg @@ -166,7 +168,7 @@ msgstr "gwall rhwydwaith" #: searx/webapp.py:169 msgid "SSL error: certificate validation has failed" -msgstr "" +msgstr "Gwall SSL: dilysu tystysgrif wedi methu" #: searx/webapp.py:171 msgid "unexpected crash" @@ -200,80 +202,82 @@ msgstr "mynediad wedi ei wrthod" msgid "server API error" msgstr "gwall API gweinydd" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Ni chanfuwyd eitem" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Ffynhonnell" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Gwall wrth lwytho'r dudalen nesaf" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" -msgstr "Gosodiadau annilys. Addasa dy ddewisiadau." +msgstr "Gosodiadau annilys, golygu eich dewisiadau" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Gosodiadau annilys" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "gwall chwilio" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" -msgstr "" +msgstr "Atal" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} munud yn ôl" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} awr, {minutes} munud yn ôl" #: searx/answerers/random/answerer.py:67 msgid "Random value generator" -msgstr "" +msgstr "Generadur gwerth ar hap" #: searx/answerers/random/answerer.py:68 msgid "Generate different random values" -msgstr "" +msgstr "Cynhyrchu gwahanol werthoedd ar hap" #: searx/answerers/statistics/answerer.py:47 msgid "Statistics functions" -msgstr "" +msgstr "Swyddogaethau ystadegau" #: searx/answerers/statistics/answerer.py:48 msgid "Compute {functions} of the arguments" -msgstr "" +msgstr "Compute {functions} o'r dadleuon" #: searx/engines/openstreetmap.py:160 msgid "Get directions" -msgstr "" +msgstr "Cael cyfarwyddiadau" #: searx/engines/pdbe.py:96 msgid "{title} (OBSOLETE)" -msgstr "" +msgstr "{title} (OBSOLETE)" #: searx/engines/pdbe.py:103 msgid "This entry has been superseded by" -msgstr "" +msgstr "Mae'r cofnod hwn wedi ei ddisodli gan" #: searx/engines/qwant.py:219 msgid "Channel" -msgstr "" +msgstr "Sianel" #: searx/engines/semantic_scholar.py:81 msgid "" "{numCitations} citations from the year {firstCitationVelocityYear} to " "{lastCitationVelocityYear}" msgstr "" +"{numCitations} dyfyniadau o'r flwyddyn {firstCitationVelocityYear} i " +"{lastCitationVelocityYear}" #: searx/engines/tineye.py:40 msgid "" @@ -281,48 +285,45 @@ msgid "" "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or" " WebP." msgstr "" +"Allai ddim darllen yr url delwedd hwnnw. Gall hyn fod oherwydd fformat ffeil " +"heb gymorth. Mae TinEye yn cefnogi delweddau yn unig sy'n JPEG, PNG, GIF, " +"BMP, TIFF neu WebP." #: searx/engines/tineye.py:46 msgid "" "The image is too simple to find matches. TinEye requires a basic level of" " visual detail to successfully identify matches." msgstr "" +"Mae'r ddelwedd yn rhy syml i ddod o hyd i gemau. Mae TinEye angen lefel " +"sylfaenol o fanylion gweledol i adnabod gemau yn llwyddiannus." #: searx/engines/tineye.py:52 msgid "The image could not be downloaded." -msgstr "" +msgstr "Doedd dim modd lawrlwytho'r ddelwedd." #: searx/engines/wttr.py:101 msgid "Morning" -msgstr "" +msgstr "Bore" #: searx/engines/wttr.py:101 msgid "Noon" -msgstr "" +msgstr "Canol Dydd" #: searx/engines/wttr.py:101 msgid "Evening" -msgstr "" +msgstr "Noswaith" #: searx/engines/wttr.py:101 msgid "Night" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" +msgstr "Nos" #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." -msgstr "" +msgstr "Trosi llinynnau i wahanol dreuliadau hash." #: searx/plugins/hash_plugin.py:52 msgid "hash digest" -msgstr "" +msgstr "Digon o hash" #: searx/plugins/hostname_replace.py:9 msgid "Hostname replace" @@ -368,22 +369,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -557,15 +560,24 @@ msgstr "Iaith chwilio" msgid "Default language" msgstr "Iaith arferol" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Ym mha iaith wyt ti'n ffafrio chwilio?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Awto-gwblhau" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Darganfod pethau wrth i chi deipio" @@ -573,297 +585,297 @@ msgstr "Darganfod pethau wrth i chi deipio" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Caeth" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Cymhedrol" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Dim" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Rhyngwyneb defnyddiwr" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Iaith y rhyngwyneb" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Newid iaith rhyngwyneb searX" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ymlaen" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "I ffwrdd" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Canlyniadau mewn tabiau newydd" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Agor dolenni canlyniadau mewn tabiau newydd yn y porwr" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Preifatrwydd" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Galluogwyd" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Analluogwyd" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Peiriannau" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Caniatáu" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Llwybr Byr" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Cefnogir yr iaith a ddewiswyd" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Cyfnod amser" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Allweddeiriau" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Enw" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Disgrifiad" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Enghreifftiau" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cwcis" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Enw cwci" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Gwerth" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Ailosod rhagosodiadau" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1450,3 +1462,43 @@ msgstr "cuddio fideo" #~ "methods" #~ msgstr "" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" diff --git a/searx/translations/da/LC_MESSAGES/messages.mo b/searx/translations/da/LC_MESSAGES/messages.mo index 7728964be..dbfc6ff59 100644 Binary files a/searx/translations/da/LC_MESSAGES/messages.mo and b/searx/translations/da/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/da/LC_MESSAGES/messages.po b/searx/translations/da/LC_MESSAGES/messages.po index b46c9ec94..5f87c5e2f 100644 --- a/searx/translations/da/LC_MESSAGES/messages.po +++ b/searx/translations/da/LC_MESSAGES/messages.po @@ -6,20 +6,22 @@ # Mikkel Kirkgaard Nielsen , 2018 # Morten Krogh Andersen , 2017 # Markus Heiser , 2022. +# return42 , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-07 16:11+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-21 17:37+0000\n" +"Last-Translator: return42 \n" +"Language-Team: Danish \n" "Language: da\n" -"Language-Team: Danish " -"\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.16.4\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -199,40 +201,40 @@ msgstr "adgang nægtet" msgid "server API error" msgstr "server-API-fejl" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Intet fundet" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Kilde" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Fejl ved indlæsning af den næste side" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Ugyldige indstillinger, redigér venligst dine valg" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ugyldig indstilling" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "søgefejl" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspenderet" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "for {minutes} minut(ter) siden" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "for {hours} time(r) og {minutes} minut(ter) siden" @@ -315,14 +317,6 @@ msgstr "Aften" msgid "Night" msgstr "Nat" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Konverterer strenge til forskellige hash-digests." @@ -383,28 +377,25 @@ msgstr "Tor undersøg plugin" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Dette plugin tjekker, om adressen på anmodningen er en TOR-exit-node, og " -"informerer brugeren, hvis den er, som check.torproject.org, men fra " -"searxng i stedet." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"TOR exit node listen (https://check.torproject.org/exit-addresses) er " -"ikke tilgængelig." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Du bruger TOR. Din IP-adresse ser ud til at være: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "Du bruger ikke Tor og du har denne eksterne IP adresse: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Du bruger ikke TOR. Din IP-adresse ser ud til at være: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Du bruger ikke Tor og du har denne eksterne IP adresse: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -583,15 +574,24 @@ msgstr "Søgesprog" msgid "Default language" msgstr "Standardsprog" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Hvilket sprog foretrækker du til søgninger?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automatisk fuldførelse" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Find under indtastning" @@ -599,35 +599,35 @@ msgstr "Find under indtastning" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Sikker Søgning" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Stringent" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderat" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Ingen" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrér indhold" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI-forløser" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -635,89 +635,89 @@ msgstr "" "Omdiriger til open-access-udgaver af publikationer hvis tilgængelig " "(plugin påkrævet)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Maskinmærker" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Adgangstokens til private søgemaskiner" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Brugerinterface" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Sprog i brugergrænsefladen" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Ændring af layout-sproget" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Ændr SearXNG layout" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Tema stil" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Vælg auto for at følge dine browserindstillinger" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Centeret" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Til" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Fra" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Viser resultater på midten af siden." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultater på nye tabs" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Åben resultat-link i en ny browser-tab" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Uendelig scrolling" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Indlæs automatisk næste side, når der scrolles til bunden af den " "nuværende side" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privatliv" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP-metode" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, Lær mere om anmodningsmetoder" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Billede-proxy" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Slået til" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Slået fra" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Bearbejder billedresulter gennem SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Søgning i sidens titel" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -757,15 +757,15 @@ msgstr "" "Når denne er aktiveret, indeholder titlen på resultatsiden din søgning. " "Din browser kan registrere denne titel" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Søgemaskiner" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Pt. anvendte søgemaskiner" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -773,76 +773,76 @@ msgstr "" "Denne fane vises ikke i søgeresultaterne, men du kan søge i de " "søgemaskiner, der er anført her, via bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Tillad" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Søgemaskinenavn" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Genvej" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Undstøtter valgte sprog" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Tidsinterval" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Svartid" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maks-tid" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Driftsikkerhed" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Specielle Forespørgsler" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Nøgleord" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Navn" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Beskrivelse" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Eksempler" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Dette er en liste over SearXNG's hurtig-svar moduler." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Dette er listen over plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -850,23 +850,23 @@ msgstr "" "Dette er listen over de cookies og deres værdier, som SearXNG gemmer på " "din computer." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Med denne liste kan du vurdere SearXNG's åbenhed." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Cookie-navn" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Værdi" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Søge-URL for den nuværende gemte indstilling" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -875,11 +875,11 @@ msgstr "" "af beskyttelse ved at lække data til de sider der klikkes på i " "resultatet." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL til at restaurere dine præferencer i en anden browser" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -887,7 +887,7 @@ msgstr "" "Specificere brugertilpassede indstillinger i præference-URL'en kan bruges" " til at synkronisere præference over flere enheder." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -895,7 +895,7 @@ msgstr "" "Disse indstillnger gemmes cookies på din enhed. Dette gør, at vi ikke " "behøver at gemme data om dig." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -903,15 +903,15 @@ msgstr "" "Disse cookies er kun til dine data. Vi benytter ikke disse til at spore " "dig." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Gem" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Nustil til standard" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Tilbage" @@ -981,7 +981,7 @@ msgstr "søg" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Der er pt. ingen tilgængelige data" +msgstr "Der er pt. ingen tilgængelige data. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1077,7 +1077,7 @@ msgstr "Information!" #: searx/templates/simple/messages/no_cookies.html:4 msgid "currently, there are no cookies defined." -msgstr "der er pt. ingen cookies defineret" +msgstr "der er pt. ingen cookies defineret." #: searx/templates/simple/messages/no_results.html:6 msgid "Engines cannot retrieve results." @@ -1501,3 +1501,51 @@ msgstr "skjul video" #~ " rel=\"external\">lær mere om request-" #~ "metoder" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Dette plugin tjekker, om adressen på " +#~ "anmodningen er en TOR-exit-node, " +#~ "og informerer brugeren, hvis den er, " +#~ "som check.torproject.org, men fra searxng " +#~ "i stedet." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "TOR exit node listen " +#~ "(https://check.torproject.org/exit-addresses) er " +#~ "ikke tilgængelig." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Du bruger TOR. Din IP-adresse ser ud til at være: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Du bruger ikke TOR. Din IP-adresse ser ud til at være: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Autodetekter søgesprog" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Registrer automatisk søgesproget og skift til det." diff --git a/searx/translations/de/LC_MESSAGES/messages.mo b/searx/translations/de/LC_MESSAGES/messages.mo index 734bdd51e..25e26beb9 100644 Binary files a/searx/translations/de/LC_MESSAGES/messages.mo and b/searx/translations/de/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/de/LC_MESSAGES/messages.po b/searx/translations/de/LC_MESSAGES/messages.po index b5ea15291..cc96797cc 100644 --- a/searx/translations/de/LC_MESSAGES/messages.po +++ b/searx/translations/de/LC_MESSAGES/messages.po @@ -19,21 +19,22 @@ # Thomas Pointhuber, 2016-2017 # Markus Heiser , 2022. # Peter Martin , 2022. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-30 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: German " -"\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-24 07:07+0000\n" +"Last-Translator: return42 \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -213,40 +214,40 @@ msgstr "Zugriff verweigert" msgid "server API error" msgstr "Server-API-Fehler" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Keine Einträge gefunden" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Quelle" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Fehler beim Laden der nächsten Seite" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Ungültige Einstellungen, bitte Einstellungen ändern" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ungültige Einstellungen" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "Suchfehler" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Ausgesetzt" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "vor {minutes} Minute(n)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "vor {hours} Stunde(n), {minutes} Minute(n)" @@ -329,15 +330,6 @@ msgstr "Abends" msgid "Night" msgstr "Nachts" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Automatische Erkennung der Suchsprache" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" -"Automatische Erkennung der Suchsprache und Umschaltung auf diese Sprache." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Konvertiert Zeichenketten in verschiedene Hashwerte." @@ -399,28 +391,34 @@ msgstr "Tor Prüf-Plugin" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Dieses Plugin prüft, ob es sich bei der Adresse der Anfrage um einen TOR-" -"Exit-Knoten handelt und informiert den Benutzer, wenn dies der Fall ist. " -"Vergleichbar mit check.torproject.org aber innerhalb von SearXNG." +"Dieses Plugin prüft, ob die Adresse der Anfrage ein Tor-Exit-Node ist, " +"und informiert den Benutzer, wenn dies der Fall ist; wie " +"check.torproject.org, aber von SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Die Liste der TOR Exit-Nodes kann nicht geladen werden " -"(https://check.torproject.org/exit-addresses)." +"Die Liste der Tor-Exit-Nodes konnte nicht heruntergeladen werden von: " +"https://check.torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Sie verwenden TOR. Die IP Adresse ist: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Du benutzt Tor und es sieht so aus, als hättest du diese externe IP-" +"Adresse: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Sie verwenden kein TOR. Die IP Adresse ist: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" +"Du benutzt Tor und es sieht so aus, als hättest du diese externe IP-" +"Adresse: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -530,7 +528,7 @@ msgstr "Fehlerbericht auf GitHub erstellen" #: searx/templates/simple/new_issue.html:66 msgid "Please check for existing bugs about this engine on GitHub" -msgstr "Zuvor überprüfe bitte bereits existierende Fehlereinträge auf GitHub" +msgstr "Überprüfe bitte auf bereits existierende Fehlereinträge auf GitHub" #: searx/templates/simple/new_issue.html:69 msgid "I confirm there is no existing bug about the issue I encounter" @@ -602,15 +600,26 @@ msgstr "Such-Sprache/-Region" msgid "Default language" msgstr "Standardsprache" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Spracherkennung" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Welche Sprache oder Region soll bei der Suche bevorzugt werden?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Welche Sprache oder Region soll bei der Suche bevorzugt werden? Mit der " +"Spracherkennung wird die Sprache automatisch erkannt." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autovervollständigung" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "zeige Vorschläge während der Eingabe an" @@ -618,35 +627,35 @@ msgstr "zeige Vorschläge während der Eingabe an" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Sichere Suche" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Streng" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderat" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Keine" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Inhalte filtern" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI resolver" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -654,89 +663,89 @@ msgstr "" "Weiterleitung zu frei zugänglichen Versionen von Veröffentlichungen, wenn" " verfügbar (Plugin benötigt)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Maschinentoken" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Zugangstoken für private Suchmaschinen" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Benutzeroberfläche" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Oberflächensprache" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "ändere die Sprache des Layouts" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Design" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Ändere das Aussehen von SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Designstil" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Wähle auto um die Browsereinstellungen zu übernehmen" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Mittig" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ein" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Aus" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Zeigt die Ergebnisse in der Mitte der Seite an." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Ergebnisse in neuem Tab" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Links in einem neuen Browser-Tab öffnen" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Unendliches Scrollen" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Lädt automatisch die nächste Seite, wenn das Ende der aktuellen Seite " "erreicht wurde" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privatsphäre" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Methode" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, lerne mehr über Anfragemethoden" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Bilder-Proxy" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Aktiviert" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Deaktiviert" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Bilder über den Proxy von SearXNG laden" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Suchbegriff im Titel anzeigen" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -776,15 +785,15 @@ msgstr "" "Bei Aktivierung wird der Suchbegriff im Titel und der Historie des " "Browsers angezeigt" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Suchmaschinen" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Aktuell benutzte Suchmaschinen" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -792,76 +801,76 @@ msgstr "" "Auf dieser Registerkarte werden keine Suchergebnisse angezeigt, aber Sie " "können die hier aufgelisteten Suchmaschinen über bangs durchsuchen." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Erlauben" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Suchmaschinenname" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Abkürzung" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Unterstützt die ausgewählten Sprachen" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Zeitbereich" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Antwortzeit" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "max. Zeit" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Zuverlässigkeit" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Besondere Abfragen" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Schlüsselwörter" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Name" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Beschreibung" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Beispiele" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Dies ist die Liste der in SearXNG verfügbaren Module für Sofortantworten." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Dies ist die Liste der Plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -869,23 +878,23 @@ msgstr "" "Die nachfolgende Liste zeigt alle Cookies, die SearXNG auf deinem " "Computer speichert." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Mit dieser Liste können Sie die Transparenz von SearXNG einschätzen." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Cookie-Name" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Wert" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Such-URL für die aktuell gespeicherten Einstellungen" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -894,11 +903,11 @@ msgstr "" "Privatsphäre reduzieren, weil gegebenenfalls ungewollt Daten an die " "ausgewählten Ergebnisseiten übermittelt werden." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL zur Wiederherstellung der Einstellungen in einem anderen Browser" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -906,7 +915,7 @@ msgstr "" "Durch Aufrufen dieses Links in einem anderen Browser werden die aktuellen" " Einstellungen in dem anderen Browser gespeichert (Cookie)." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -914,7 +923,7 @@ msgstr "" "Diese Informationen werden in Cookies auf Ihrem Rechner gespeichert, " "damit wir keine Ihrer persönlichen Daten speichern müssen." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -922,15 +931,15 @@ msgstr "" "Diese Cookies dienen einzig Ihrem Komfort. Wir verwenden sie nicht, um " "Sie zu überwachen." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Speichern" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Zurücksetzen" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Zurück" @@ -1530,3 +1539,56 @@ msgstr "Video verstecken" #~ "href=\"https://de.wikipedia.org/wiki/Hypertext_Transfer_Protocol" #~ "#HTTP-Anfragemethoden\" rel=\"external\">lerne mehr " #~ "über Anfragemethoden" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Dieses Plugin prüft, ob es sich " +#~ "bei der Adresse der Anfrage um " +#~ "einen TOR-Exit-Knoten handelt und " +#~ "informiert den Benutzer, wenn dies der" +#~ " Fall ist. Vergleichbar mit " +#~ "check.torproject.org aber innerhalb von " +#~ "SearXNG." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Die Liste der TOR Exit-Nodes kann" +#~ " nicht geladen werden " +#~ "(https://check.torproject.org/exit-addresses)." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Sie verwenden TOR. Die IP Adresse ist: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Sie verwenden kein TOR. Die IP Adresse ist: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Automatische Erkennung der Suchsprache" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" +#~ "Automatische Erkennung der Suchsprache und " +#~ "Umschaltung auf diese Sprache." diff --git a/searx/translations/dv/LC_MESSAGES/messages.mo b/searx/translations/dv/LC_MESSAGES/messages.mo index 3fac13176..bff7b3bc9 100644 Binary files a/searx/translations/dv/LC_MESSAGES/messages.mo and b/searx/translations/dv/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/dv/LC_MESSAGES/messages.po b/searx/translations/dv/LC_MESSAGES/messages.po index 2a50b99da..b68b62704 100644 --- a/searx/translations/dv/LC_MESSAGES/messages.po +++ b/searx/translations/dv/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-04 07:18+0000\n" "Last-Translator: Landhoo School Students " "\n" @@ -196,40 +196,40 @@ msgstr "" msgid "server API error" msgstr "" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "" @@ -304,14 +304,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -364,22 +356,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -553,15 +547,24 @@ msgstr "" msgid "Default language" msgstr "" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "" @@ -569,297 +572,297 @@ msgstr "" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1178,3 +1181,44 @@ msgstr "" msgid "hide video" msgstr "" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/el_GR/LC_MESSAGES/messages.mo b/searx/translations/el_GR/LC_MESSAGES/messages.mo index 2f48c9a52..c4662d843 100644 Binary files a/searx/translations/el_GR/LC_MESSAGES/messages.mo and b/searx/translations/el_GR/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/el_GR/LC_MESSAGES/messages.po b/searx/translations/el_GR/LC_MESSAGES/messages.po index 76227ab0a..457b3132b 100644 --- a/searx/translations/el_GR/LC_MESSAGES/messages.po +++ b/searx/translations/el_GR/LC_MESSAGES/messages.po @@ -8,21 +8,22 @@ # Markus Heiser , 2022, 2023. # Constantine Giannopoulos , 2022. # Alexandre Flament , 2022. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2023-01-06 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Greek " -"\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-24 07:07+0000\n" +"Last-Translator: return42 \n" +"Language-Team: Greek \n" "Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.16.4\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -202,40 +203,40 @@ msgstr "Άρνηση πρόσβασης" msgid "server API error" msgstr "Σφάλμα API διακομιστή" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Δεν βρέθηκαν αντικείμενα" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Πηγή" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Μη έγκυρες ρυθμίσεις" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "σφάλμα αναζήτησης" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Σε αναστολή" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} λεπτά πριν" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν" @@ -318,14 +319,6 @@ msgstr "Βράδι" msgid "Night" msgstr "Βράδι" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Μετατρέπει κείμενο σε διαφορετικές συναρτήσεις κατατεμαχισμού." @@ -386,28 +379,34 @@ msgstr "Πρόσθετο ελέγχου Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Αυτό το πρόσθετο ελέγχει αν η διεύθυνση της αίτησης είναι ένας κόμβος " -"εξόδου TOR και ενημερώνει τον χρήστη αν είναι, όπως το " -"check.torproject.org αλλά από το searxng." +"Αυτό το πρόσθετο ελέγχει εάν η διεύθυνση του χρήστη είναι διεύθυνση εξόδου " +"του δικτύου Tor και ενημερώνει τον χρήστη εάν είναι έτσι. Όπως στο " +"check.torproject.org, αλλά από το SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Η λίστα κόμβων εξόδου TOR (https://check.torproject.org/exit-addresses) " -"δεν είναι διαθέσιμη." +"Δεν ήταν δυνατή η λήψη της λίστας διευθύνσεων εξόδου του δικτύου Tor από το: " +"https://check.torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Χρησιμοποιείτε το δίκτυο Tor και φαίνεται πως η εξωτερική σας διεύθυνση " +"είναι η: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Δεν χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" +"Δεν χρησιμοποιείτε το δίκτυο Tor. Η εξωτερική σας διεύθυνση είναι: " +"{ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -589,15 +588,26 @@ msgstr "Γλώσσα αναζήτησης" msgid "Default language" msgstr "Προεπιλεγμένη γλώσσα" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Αυτόματη αναγνώριση της γλώσσας" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Τι γλώσσα προτιμάτε για αναζήτηση;" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Επιλέξτε αυτόματη αναγνώριση για να αφήσετε το SearXNG να αναγνωρίσει την " +"γλώσσα του ερωτήματος σας αυτόματα." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Αυτόματη συμπλήρωση" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Εύρεση όρων κατά την πληκτρολόγηση" @@ -605,35 +615,35 @@ msgstr "Εύρεση όρων κατά την πληκτρολόγηση" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Ασφαλής Αναζήτηση" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Αυστηρό" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Μέτριο" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Κανένα" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Φιλτράρισμα περιεχομένου" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Επιλυτής DOI ανοικτής πρόσβασης" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -641,91 +651,91 @@ msgstr "" "Ανακατεύθυνση σε εκδόσεις ανοικτής πρόσβασης των δημοσιεύσεων όταν είναι " "διαθέσιμες (απαιτείται πρόσθετο)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokens μηχανών αναζήτησης" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Tokens πρόσβασης για ιδιωτικές μηχανές" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Διεπαφή χρήστη" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Γλώσσα διεπαφής" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Αλλαγή γλώσσας της διάταξης" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Θέμα" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Τροποποίηση διάταξης του SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Στυλ θέματος" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" "Επιλέξτε αυτόματο για να τηρήσετε τις ρυθμίσεις του προγράμματος " "περιήγησης" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Κεντρική ευθυγράμμιση" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ενεργό" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Ανενεργό" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Εμφάνιση αποτελεσμάτων στο κέντρο της σελίδας (διάταξη Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Αποτελέσματα σε νέες καρτέλες" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Άνοιξε τους συνδέσμους των αποτελεσμάτων σε νέα καρτέλα περιηγητή" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Άπειρη κύλιση" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Αυτόματη φόρτωση της επόμενης σελίδας κατά την κύλιση στο κάτω μέρος της " "τρέχουσας σελίδας" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Ιδιωτικότητα" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Μέθοδος HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, μάθετε περισσότερα για τις μεθόδους αίτησης" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Διακομιστής μεσολάβησης εικόνων" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Ενεργοποιημένο" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Απενεργοποιημένο" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Διαμεσολάβιση φόρτωσης αποτελεσμάτων εικόνων μέσω του SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Ερώτημα στον τίτλο της σελίδας" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -765,15 +775,15 @@ msgstr "" "Όταν ενεργό, ο τίτλος της σελίδας αποτελεσμάτων περιέχει το ερώτημά σας. " "Το πρόγραμμα περιήγησής σας μπορεί να καταγράψει αυτόν τον τίτλο" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Μηχανές" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Μηχανές αναζήτησης που χρησιμοποιούνται" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -781,76 +791,76 @@ msgstr "" "Αυτή η καρτέλα δεν εμφανίζεται για τα αποτελέσματα αναζήτησης, αλλά " "μπορείτε να αναζητήσετε τις μηχανές που παρατίθενται εδώ μέσω bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Επέτρεψε" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Όνομα μηχανής" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Συντόμευση" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Υποστηρίζει την επιλεγμένη γλώσσα" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Εύρος χρόνου" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Χρόνος απόκρισης" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Μέγιστος χρόνος" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Αξιοπιστία" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Ειδικά Ερωτήματα" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Λέξεις κλειδιά" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Όνομα" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Περιγραφή" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Παραδείγματα" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Αυτός είναι ο κατάλογος των ενοτήτων άμεσης απάντησης του SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Αυτός είναι ο κατάλογος των πρόσθετων." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -858,23 +868,23 @@ msgstr "" "Αυτός είναι ο κατάλογος των cookies και των τιμών τους που αποθηκεύει η " "SearXNG στον υπολογιστή σας." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Με αυτόν τον κατάλογο, μπορείτε να αξιολογήσετε τη διαφάνεια του SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Όνομα cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Τιμή" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Σύνδεσμος αναζήτησης των αποθηκευμένων προτιμήσεων" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -883,11 +893,11 @@ msgstr "" "αναζήτησης μπορεί να μειώσει την ιδιωτικότητα διαρρέοντας δεδομένα στους " "ιστότοπους των αποτελεσμάτων που εσείς κάνετε κλίκ." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "Σύνδεσμος για επαναφορά προτιμήσεων σε διαφορετικό περιηγητή" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -896,7 +906,7 @@ msgstr "" " χρησιμοποιηθεί για το συγχρονισμό των προτιμήσεων σας σε όλες τις " "συσκευές." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -904,7 +914,7 @@ msgstr "" "Αυτές οι ρυθμίσεις αποθηκεύονται στα cookies σας, με αυτόν τον τρόπο δεν " "χρειάζεται να αποθηκέυονται στους δικούς μας διακομιστές." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -912,15 +922,15 @@ msgstr "" "Αυτά τα cookies υπάρχουν αποκλειστικά για την εξυπηρέτησή σας, δεν τα " "χρησιμοποιούμε για να σας παρακολουθούμε." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Αποθήκευση" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Επαναφορά προεπιλογών" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Πίσω" @@ -990,7 +1000,7 @@ msgstr "αναζήτηση" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα." +msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1153,7 +1163,7 @@ msgstr "Ημερομηνία δημοσίευσης" #: searx/templates/simple/result_templates/paper.html:9 msgid "Journal" -msgstr "" +msgstr "Περιοδικό" #: searx/templates/simple/result_templates/paper.html:22 msgid "Editor" @@ -1173,23 +1183,23 @@ msgstr "Σημάνσεις" #: searx/templates/simple/result_templates/paper.html:26 msgid "DOI" -msgstr "" +msgstr "DOI" #: searx/templates/simple/result_templates/paper.html:27 msgid "ISSN" -msgstr "" +msgstr "ISSN" #: searx/templates/simple/result_templates/paper.html:28 msgid "ISBN" -msgstr "" +msgstr "ISBN" #: searx/templates/simple/result_templates/paper.html:33 msgid "PDF" -msgstr "" +msgstr "PDF" #: searx/templates/simple/result_templates/paper.html:34 msgid "HTML" -msgstr "" +msgstr "HTML" #: searx/templates/simple/result_templates/torrent.html:6 msgid "magnet link" @@ -1505,3 +1515,52 @@ msgstr "απόκρυψη βίντεο" #~ "href=\"https://el.wikipedia.org/wiki/%CE%A0%CF%81%CF%89%CF%84%CF%8C%CE%BA%CE%BF%CE%BB%CE%BB%CE%BF_%CE%9C%CE%B5%CF%84%CE%B1%CF%86%CE%BF%CF%81%CE%AC%CF%82_%CE%A5%CF%80%CE%B5%CF%81%CE%BA%CE%B5%CE%B9%CE%BC%CE%AD%CE%BD%CE%BF%CF%85#%CE%9C%CE%AD%CE%B8%CE%BF%CE%B4%CE%BF%CE%B9_%CE%B1%CE%AF%CF%84%CE%B7%CF%83%CE%B7%CF%82_%CF%84%CE%BF%CF%85_HTTP\"" #~ " rel=\"external\">μάθετε περισσότερα για τις " #~ "μεθόδους αίτησης" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Αυτό το πρόσθετο ελέγχει αν η " +#~ "διεύθυνση της αίτησης είναι ένας κόμβος" +#~ " εξόδου TOR και ενημερώνει τον χρήστη" +#~ " αν είναι, όπως το check.torproject.org " +#~ "αλλά από το searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Η λίστα κόμβων εξόδου TOR " +#~ "(https://check.torproject.org/exit-addresses) δεν " +#~ "είναι διαθέσιμη." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Δεν χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" diff --git a/searx/translations/en/LC_MESSAGES/messages.mo b/searx/translations/en/LC_MESSAGES/messages.mo index 4389b2d8d..18c360818 100644 Binary files a/searx/translations/en/LC_MESSAGES/messages.mo and b/searx/translations/en/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/en/LC_MESSAGES/messages.po b/searx/translations/en/LC_MESSAGES/messages.po index 7391ce6f3..4aefa1317 100644 --- a/searx/translations/en/LC_MESSAGES/messages.po +++ b/searx/translations/en/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2014-01-30 15:22+0100\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -195,40 +195,40 @@ msgstr "" msgid "server API error" msgstr "" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "" @@ -303,14 +303,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -363,22 +355,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -552,15 +546,24 @@ msgstr "" msgid "Default language" msgstr "" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "" @@ -568,297 +571,297 @@ msgstr "" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1445,3 +1448,44 @@ msgstr "" #~ "methods" #~ msgstr "" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/eo/LC_MESSAGES/messages.mo b/searx/translations/eo/LC_MESSAGES/messages.mo index 5c1865590..02e3d25e0 100644 Binary files a/searx/translations/eo/LC_MESSAGES/messages.mo and b/searx/translations/eo/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/eo/LC_MESSAGES/messages.po b/searx/translations/eo/LC_MESSAGES/messages.po index d8f313fc3..6a53f6bc4 100644 --- a/searx/translations/eo/LC_MESSAGES/messages.po +++ b/searx/translations/eo/LC_MESSAGES/messages.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-30 15:33+0000\n" "Last-Translator: Markus Heiser \n" "Language: eo\n" @@ -202,40 +202,40 @@ msgstr "aliro rifuzita" msgid "server API error" msgstr "servilo-API-eraro" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nenio trovita" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Fonto" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Eraro dum la ŝerĝado de la sekvan paĝon" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Nevalidaj agordoj, bonvolu redakti viajn agordojn" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Nevalidaj agordoj" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "serĉa eraro" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspendigita" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "antaŭ {minutes} minuto(j)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)" @@ -317,14 +317,6 @@ msgstr "Vespero" msgid "Night" msgstr "Nokto" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Konvertas ĉenojn al malsamaj hash-digestoj." @@ -385,23 +377,25 @@ msgstr "Tor-kontrolo kromprogramo" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Vi uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Vi ne uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -576,15 +570,24 @@ msgstr "Serĉolingvo" msgid "Default language" msgstr "Defaŭlta lingvo" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Kiun lingvon vi pli ŝatas por serĉi?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Aŭtomate kompletigi" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Trovi aferojn dum tajpado" @@ -592,261 +595,261 @@ msgstr "Trovi aferojn dum tajpado" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "SekuraSerĉo" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Strikta" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Modera" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Neniu" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtri enhavon" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Malfermalira COI-solvilo" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "Direkti al malfermaliraj versioj de eldonaĵoj, se eblas (aldonaĵo necesas)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Motoraj ĵetonoj" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Alirĵetonoj por privataj motoroj" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Fasado" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Fasada lingvo" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Ŝanĝi lingvon de la fasono" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Etoso" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Ŝanĝu SearXNG-aranĝon" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ŝaltita" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Malŝaltita" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Rezultoj en novaj langetoj" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Malfermi rezultligilojn en novaj retumilaj langetoj" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Senfina rulumado" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Aŭtomate ŝarĝi sekvan paĝon rulumante al la subo de la nuna paĝo" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privateco" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP-Metodo" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Prokurila servilo por bildoj" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Ŝaltita" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Malŝaltita" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motoroj" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Aktuale uzataj serĉiloj" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permesi" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nomo de la motoro" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Fulmoklavo" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Subtenas elektitan lingvon" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Tempa intervalo" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maksimuma tempo" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Specialaj Demandoj" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Ŝlosilvortoj" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nomo" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Priskribo" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Ekzemploj" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Kuketoj" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nomo de kuketo" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valoro" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Serĉo-URL kun aktuale konservitaj agordoj" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -854,17 +857,17 @@ msgstr "" "Rimarko: Precizigo de propraj agordoj en la serĉo-URL povas malaltigi " "privatecon per nevola diskonigo de la datumoj al alklikantaj retejoj." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -872,21 +875,21 @@ msgstr "" "Tiuj ĉi agordoj estas konservitaj en viaj kuketoj, kio ebligas al ni ne " "konservi tiujn datumojn pri vi en nia servilo." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "Tiuj kuketoj estas nur por via plaĉo, ni ne uzas ilin por spuri vin." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Konservi" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Reagordi al defaŭlto" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1477,3 +1480,44 @@ msgstr "kaŝi videojn" #~ " rel=\"external\">sciu pli pri peto-" #~ "metodoj" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Vi uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Vi ne uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/es/LC_MESSAGES/messages.mo b/searx/translations/es/LC_MESSAGES/messages.mo index aea0e680a..432d076ba 100644 Binary files a/searx/translations/es/LC_MESSAGES/messages.mo and b/searx/translations/es/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/es/LC_MESSAGES/messages.po b/searx/translations/es/LC_MESSAGES/messages.po index f3f6eacc7..9c024dec1 100644 --- a/searx/translations/es/LC_MESSAGES/messages.po +++ b/searx/translations/es/LC_MESSAGES/messages.po @@ -23,21 +23,23 @@ # KEINOS , 2022. # Peter Martin , 2022. # zDylant , 2022. +# mester , 2023. +# gallegonovato , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-23 07:14+0000\n" -"Last-Translator: zDylant \n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-28 22:04+0000\n" +"Last-Translator: gallegonovato \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -217,40 +219,40 @@ msgstr "acceso denegado" msgid "server API error" msgstr "error en la API del servidor" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Ningún artículo encontrado" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Fuente" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Error al cargar la siguiente página" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Parámetros incorrectos, por favor, cambia tus preferencias" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ajustes no válidos" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "error en la búsqueda" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspendido" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "hace {minutes} minuto(s)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "hace {hours} hora(s) y {minutes} minuto(s)" @@ -333,14 +335,6 @@ msgstr "Tarde" msgid "Night" msgstr "Noche" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Detectar el lenguaje de búsqueda automáticamente" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Detectar el lenguaje de búsqueda automáticamente y usarlo." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -403,28 +397,30 @@ msgstr "Plugin de comprobación de Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Este plugin verifica si la dirección de la solicitud es un nodo de salida" -" TOR e informa al usuario si lo es, como check.torproject.org pero desde " -"searxng." +"Este plug-in comprueba si la dirección de las solicitudes son nodo de salida " +"de Tor, como chec.torproject.org, pero desde SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Imposible de acceder a la lista de nodos de salida de TOR " -"(https://check.torproject.org/exit-addresses)." +"No pudimos descargar la lista de nodos de salida de tor desde: https://check." +"torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Estás usando TOR. Tu dirección IP parece ser: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Estás usando Tor y parece que tienes esta dirección IP externa: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "No estás usando TOR. Tu dirección IP parece ser: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "No estás usando Tor y tienes esta dirección IP externa: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -602,15 +598,26 @@ msgstr "Idioma de búsqueda" msgid "Default language" msgstr "Idioma por defecto" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Detección automática" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "¿Qué idioma prefieres para la búsqueda?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Seleccione Detección automática para que SearXNG detecte el idioma de su " +"consulta." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autocompletar" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Buscar mientras escribes" @@ -618,35 +625,35 @@ msgstr "Buscar mientras escribes" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Búsqueda segura" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Estricto" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderado" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Ninguno" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtro de contenido" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Resolutor de DOI de acceso abierto" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -654,89 +661,89 @@ msgstr "" "Redireccionar a versiones de acceso abierto de las publicaciones cuando " "estén disponibles (se requiere plugin)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Llaves de motores" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Llaves de acceso para motores privados" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfaz de usuario" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Idioma de la interfaz" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Cambiar idioma de la interfaz" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Cambiar la interfaz de SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Estilo del tema" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Escoge automático para seguir la configuración de tu navegador" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Alineación central" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Activado" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Desactivado" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Muestra los resultados en el centro de la página (diseño Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultados en nuevas pestañas" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Abrir los resultados en nuevas pestañas del navegador" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Deslizamiento infinito" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Cargar automáticamente la siguiente página al deslizarse hasta el final " "de la página actual" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privacidad" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Método HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, más información sobre métodos de peticiones" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy de imágenes" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Activado" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Desactivado" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Cargando los resultados de imágenes a través de SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Petición en el titulo de la pagina" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -776,15 +783,15 @@ msgstr "" "Cuando se activa, la página de resultados contendrá tu búsqueda. Tu " "buscador puede guardar este título" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motores" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motores de búsqueda actualmente en uso" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -792,76 +799,76 @@ msgstr "" "Esta pestaña no se muestra para los resultados de búsqueda, pero puedes " "buscar con los motores aquí listado mediante bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permitir" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nombre del motor de búsqueda" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Atajo" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Soporta el idioma seleccionado" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Rango de tiempo" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Tiempo de respuesta" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Tiempo máximo" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Fiabilidad" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Consultas Especiales" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Plabras clave" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nombre" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descripción" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Ejemplos" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Esta es la lista de módulos de respuestas instantáneas de SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Esta es la lista de plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -869,23 +876,23 @@ msgstr "" "Esta es la lista de cookies y sus valores que SearXNG está almacenando en" " tu ordenador." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Con esa lista, puedes comprobar la transparencia de SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nombre de la cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valor" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Buscar URL de las preferencias guardadas actualmente" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -894,11 +901,11 @@ msgstr "" "puede reducir la privacidad por filtrar datos a los sitios de resultados " "en los que se ha hecho clic." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL para restaurar sus preferencias en otro navegador" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -906,7 +913,7 @@ msgstr "" "Especificar ajustes personalizados en la URL de preferencias puede usarse" " para sincronizar las preferencias entre dispositivos." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -914,7 +921,7 @@ msgstr "" "Esta configuración se guarda en sus cookies, lo que nos permite no " "almacenar dicha información sobre usted." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -922,15 +929,15 @@ msgstr "" "Estas cookies son para su propia comodidad, no las utilizamos para " "rastrearte." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Guardar" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Restablecer configuración por defecto" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Atrás" @@ -1527,3 +1534,52 @@ msgstr "ocultar video" #~ "href=\"http://es.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9todos_de_petici.C3.B3n\"" #~ " rel=\"external\">más información sobre métodos" #~ " de peticiones" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Este plugin verifica si la dirección " +#~ "de la solicitud es un nodo de " +#~ "salida TOR e informa al usuario si" +#~ " lo es, como check.torproject.org pero " +#~ "desde searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Imposible de acceder a la lista de" +#~ " nodos de salida de TOR " +#~ "(https://check.torproject.org/exit-addresses)." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Estás usando TOR. Tu dirección IP parece ser: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "No estás usando TOR. Tu dirección IP parece ser: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Detectar el lenguaje de búsqueda automáticamente" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Detectar el lenguaje de búsqueda automáticamente y usarlo." diff --git a/searx/translations/et/LC_MESSAGES/messages.mo b/searx/translations/et/LC_MESSAGES/messages.mo index e1d0df332..6e823fb92 100644 Binary files a/searx/translations/et/LC_MESSAGES/messages.mo and b/searx/translations/et/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/et/LC_MESSAGES/messages.po b/searx/translations/et/LC_MESSAGES/messages.po index 60fa174bd..8bbc0b440 100644 --- a/searx/translations/et/LC_MESSAGES/messages.po +++ b/searx/translations/et/LC_MESSAGES/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-10-28 07:18+0000\n" "Last-Translator: Markus Heiser \n" "Language: et\n" @@ -200,40 +200,40 @@ msgstr "ligipääs keelatud" msgid "server API error" msgstr "serveri API viga" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Üksust ei leitud" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Allikas" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Viga järgmise lehekülje laadimisel" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Sobimatud seaded, palun muuda oma eelistusi" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Sobimatud seaded" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "otsingu viga" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Peatatud" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minut(it) tagasi" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} tund(i), {minutes} minut(it) tagasi" @@ -311,14 +311,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Teisendab stringid erinevateks hash-digestideks." @@ -379,23 +371,25 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Te kasutate TORi. Teie IP aadress paistab olevat : {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Te ei kasuta TORi. Teie IP aadress paistab olevat: {ip_adress}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -571,15 +565,24 @@ msgstr "Otsingukeel" msgid "Default language" msgstr "Vaikimisi keel" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Mis keelt sa otsinguks eelistad?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automaattäide" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Otsi asju kirjutamise ajal" @@ -587,35 +590,35 @@ msgstr "Otsi asju kirjutamise ajal" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Ohutuotsing" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Range" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Mõõdukas" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Puudub" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtreeri sisu" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI resolver" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -623,116 +626,116 @@ msgstr "" "Suuna võimalusel väljaannete avatud ligipääsuga versioonidele (nõuab " "pluginat)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Mootori tokenid" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Ligipääsutokenid privaatsetele mootoritele" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Kasutajaliides" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Liidese keel" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Muuda paigutuse keelt" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Teema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "SearXNG paigutuse muutmine" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Teema stiil" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Valige automaatne, et järgida oma brauseri seadeid" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Sees" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Väljas" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Tulemused uutel kaartidel" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Ava tulemuste lingid uutel brauserikaartidel" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Lõpmatu kerimine" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Laadi lehe lõppu kerimisel järgmine leht automaatselt" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privaatsus" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP meetod" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Pildiproksi" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Lubatud" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Keelatud" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Pildi tulemuste edastamine SearXNG kaudu" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Päring lehekülje pealkirjas" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -740,15 +743,15 @@ msgstr "" "Kui see on lubatud, sisaldab tulemuslehe pealkiri teie päringut. Teie " "brauser võib selle pealkirja salvestada" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Mootorid" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Hetkel kasutatud otsingumootorid" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -756,76 +759,76 @@ msgstr "" "See vahekaart ei näita otsingutulemusi, kuid siin loetletud mootoreid " "saab otsida \"bang\" kaudu." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Luba" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Mootori nimi" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Otsetee" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Toetab valitud keelt" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Ajavahemik" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Reageerimisaeg" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maksimaalne aeg" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Usaldusväärsus" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Spetsiaalsed päringud" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Märksõnad" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nimi" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Kirjeldus" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Näited" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "See on SearXNGi kohese vastamise moodulite nimekiri." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "See on pluginate nimekiri." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Küpsised" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -833,23 +836,23 @@ msgstr "" "See on nimekiri küpsistest ja nende väärtustest, mida SearXNG teie " "arvutisse salvestab." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Selle loetelu abil saate hinnata SearXNG läbipaistvust." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Küpsise nimi" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Väärtus" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Otsingu URL hetkel salvestatud eelistuste kohta" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -857,17 +860,17 @@ msgstr "" "Märkus: täpsemate seadete määramine otsingu URLis võib vähendada " "privaatsust, lekitades andmed klõpsatud tulemuste saitidele." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -875,7 +878,7 @@ msgstr "" "Need seaded salvestatakse sinu küpsistes, see lubab meil sinu kohta " "andmeid mitte salvestada." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -883,15 +886,15 @@ msgstr "" "Need küpsised on vaid mugavuse tarbeks, me ei kasuta neid sinu " "jälitamiseks." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Salvesta" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Lähtesta vaikeseaded" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Tagasi" @@ -1481,3 +1484,44 @@ msgstr "peida video" #~ " rel=\"external\">loe taotlusmeetodite kohta " #~ "lisaks" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Te kasutate TORi. Teie IP aadress paistab olevat : {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Te ei kasuta TORi. Teie IP aadress paistab olevat: {ip_adress}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/eu/LC_MESSAGES/messages.mo b/searx/translations/eu/LC_MESSAGES/messages.mo index db18f3216..5a2153dc6 100644 Binary files a/searx/translations/eu/LC_MESSAGES/messages.mo and b/searx/translations/eu/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/eu/LC_MESSAGES/messages.po b/searx/translations/eu/LC_MESSAGES/messages.po index 1c1db7027..50374cc2c 100644 --- a/searx/translations/eu/LC_MESSAGES/messages.po +++ b/searx/translations/eu/LC_MESSAGES/messages.po @@ -11,19 +11,18 @@ # Markus Heiser , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2023-01-13 07:14+0000\n" "Last-Translator: Markus Heiser \n" -"Language-Team: Basque " -"\n" "Language: eu\n" +"Language-Team: Basque " +"\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -203,40 +202,40 @@ msgstr "sarbidea ukatua" msgid "server API error" msgstr "API zerbitzariaren errorea" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Ez da elementurik aurkitu" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Iturria" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Errorea hurrengo orrialdea kargatzean" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Ezarpen ez baliodunak, mesedez editatu zure hobespenak" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ezarpen ez baliodunak" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "bilaketa akatsa" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "duela {minutes} minutu" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "duela {hours} ordu eta {minutes} minutu" @@ -311,14 +310,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -377,22 +368,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -569,15 +562,24 @@ msgstr "Bilaketaren hizkuntza" msgid "Default language" msgstr "Lehenetsitako hizkuntza" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Zein hizkuntzan egin nahi duzu bilaketa?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Osatze automatikoa" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Gauzak aurkitu idatzi bitartean" @@ -585,35 +587,35 @@ msgstr "Gauzak aurkitu idatzi bitartean" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Bilaketa segurua" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Zorrotza" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderatua" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Bat ere ez" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Edukia iragazi" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI ebatzi" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -621,229 +623,229 @@ msgstr "" "Argitalpenen sartze-askeko bertsioetara berbidali ahal denean (plugina " "behar du)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Bilatzaile token-ak" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Sarbide token-ak bilatzaile pribatuetarako" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Erabiltzailearen interfazea" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Interfazearen hizkuntza" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Interfazearen hizkuntza aldatu" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Estiloa" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Piztuta" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Itzalita" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Emaitzak fitxa berrietan" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Emaitzen estekak nabigatzailearen fitxa berrietan ireki" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Korritze amaigabea" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Hurrengo orria automatikoki kargatu uneko orriaren behekaldera " "mugitzerakoan" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Pribatutasuna" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP metodoa" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Irudietarako proxya" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Gaituta" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Desgaituta" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Bilatzaileak" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Erabiliak izaten ari diren bilatzaileak" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Baimendu" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Bilatzailearen izena" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Lasterbidea" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Hautatutako hizkuntza onartzen du" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Denbora tartea" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Gehienezko denbora" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Gako-hitzak" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Izena" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Deskripzioa" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Adibideak" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookieak" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Cookiearen izena" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Balioa" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Une honetan gordetako hobespenen bilaketa URLa" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -851,17 +853,17 @@ msgstr "" "Oharra: bilaketa URLan ezarpen pertsonalizatuak zehazteak pribatutasuna " "txikiagotu dezake klikatutako erantzun guneetara datuak emanez." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -869,7 +871,7 @@ msgstr "" "Ezarpen hauek zure cookietan gordetzen dira, honek zuri buruzko " "informaziorik ez gordetzea baimentzen digu." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -877,15 +879,15 @@ msgstr "" "Cookie hauek zure onurarako besterik ez dira, ez ditugu zure jarraipenik " "egiteko erabiltzen." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Berrezarri lehenetsiak" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1478,3 +1480,45 @@ msgstr "ezkutatu bideoa" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">ikasi gehiago eskaera metodoen" #~ " inguruan" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/fa_IR/LC_MESSAGES/messages.mo b/searx/translations/fa_IR/LC_MESSAGES/messages.mo index 2a5549285..48f0b1ee2 100644 Binary files a/searx/translations/fa_IR/LC_MESSAGES/messages.mo and b/searx/translations/fa_IR/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/fa_IR/LC_MESSAGES/messages.po b/searx/translations/fa_IR/LC_MESSAGES/messages.po index 34fbe2b3f..f7740842e 100644 --- a/searx/translations/fa_IR/LC_MESSAGES/messages.po +++ b/searx/translations/fa_IR/LC_MESSAGES/messages.po @@ -12,19 +12,18 @@ # Babak Ahari , 2022. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2023-01-13 07:14+0000\n" "Last-Translator: Markus Heiser \n" -"Language-Team: Persian \n" "Language: fa_IR\n" +"Language-Team: Persian " +"\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -204,40 +203,40 @@ msgstr "دسترسی مجاز نیست" msgid "server API error" msgstr "خطای API سرور" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "چیزی پیدا نشد" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "منبع" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "خطا در بارگزاری صفحه جدید" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "تنظیمات نادرست است، لطفا تنظیمات جستجو را تغییر دهید" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "تنظیمات نادرست" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "خطای جست‌وجو" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "تعلیق‌شده" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} دقیقه پیش" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} ساعت و {minutes} دقیقه پیش" @@ -319,14 +318,6 @@ msgstr "عصر" msgid "Night" msgstr "شب" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "تشخصیص خودکار زبان جستجو" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "تشخیص خودکار زبان کوئری جستجو و انتخاب کردن آن." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "رشته‌ها را به چکیده‌های هش تبدیل می‌کند." @@ -385,29 +376,25 @@ msgstr "پلاگین بررسی Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"این افزونه بررسی می‌کند که آیا آدرس درخواست یک node خروجی TOR است یا خیر،" -" و به کاربر اطلاع می‌دهد مانند check.torproject.org اما از searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." -msgstr "لیست گره خروجی TOR، غیر قابل دسترسی است." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" +msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -"شما از TOR استفاده می کنید. به نظر می رسد آدرس IP شما این است: " -"{ip_address}." -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" -"شما از TOR استفاده نمی کنید. به نظر می رسد آدرس IP شما این است: " -"{ip_address}." #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -582,15 +569,24 @@ msgstr "زبان جست‌وجو" msgid "Default language" msgstr "زبان پیش‌گزیده" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "چه زبانی را برای جست‌وجو می‌پسندید؟" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "تکمیل خودکار" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "یافتن مطالب هنگام نوشتنتان" @@ -598,121 +594,121 @@ msgstr "یافتن مطالب هنگام نوشتنتان" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "جست‌وجوی امن" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "سخت‌گیر" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "متعادل" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "هیچ" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "فیلتر کردن محتوا" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "واگردان DOI دسترسی آزاد" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "هدایت به نسخه‌های دسترسی آزاد انشارات در صورت امکان (نیازمند افزونه)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "توکن‌های موتور" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "توکن‌های دسترسی برای موتورهای خصوصی" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "رابط کاربری" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "زبان رابط کاربری" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "تغییر زبان رابط کاربری" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "پوسته" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "تغییر طرح‌بندی SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "شیوهٔ پوسته" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "برای پیروی از تنظیمات مرورگرتان خودکار را انتخاب کنید" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "وسط چین" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "روشن" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "حتک.ش" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "نمایش نتایج در مرکز صفحه(چیدمان Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "نتایج در برگه‌های جدید" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "بازکردن پیوندهای نتیجه در برگه‌های جدید مرورگر" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "پایین رفتن بی‌پایان" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "بارگذاری خودکار صفحه بعد در صورت پیمایش تا پایین صفحه کنونی" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "حریم شخصی" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "روش HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, در مورد روش های درخواست بیشتر بیاموزید " -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "پروکسی تصویر" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "فعال" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "غیرفعال" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "گذر تصویر از پروکسی به‌وسیلهٔ SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "ورودی در عنوان صفحه" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -752,15 +748,15 @@ msgstr "" "هنگام فعال بودن، عنوان صفحهٔ نتیجه، ورودی شما را در بر می‌گیرد. مرورگر " "شما می‌تواند این عنوان را ضبط کند" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "موتورها" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "موتورهای جستجوی در حال استفاده" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -768,98 +764,98 @@ msgstr "" "این برگه برای نتایج جستجو نمایش داده نمی شود، اما می توانید موتورهای " "فهرست شده در اینجا را از طریق bangs جستجو کنید." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "اجازه" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "نام موتور" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "میان‌بر" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "زبان انتخاب شده را پشتیبانی می‌کند" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "بازهٔ زمانی" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "زمان پاسخ" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "زمان بیشینه" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "اعتمادپذیری" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "مقدارهای ویژه" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "کلیدواژه‌ها" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "نام" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "توصیف" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "مثال‌ها" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "این فهرست ماژول‌های پاسخ‌گوی فوری SearXNG است." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "این فهرست افزونه‌هاست." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "کلوچک‌ها" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "این فهرست کلوچک‌ها و مقدارهایی است که SearXNG در رایانهٔ شما نگه می‌دارد." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "با این فهرست، می‌توانید شفافیت SearXNG را بیازمایید." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "نام کلوچک" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "مقدار" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL جست‌وجوی پیش‌فرض‌های ذخیره‌شدهٔ کنونی" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -867,11 +863,11 @@ msgstr "" "هشدار: تعیین تنظیمات شخصی در URL جست‌وجو می‌تواند حریم شخصی شما را با درز" " دادن داده‌ها به سایت‌های نتایج کلیک‌شده به خطر اندازد." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL برای بازیابی تنظیمات مورد نظر خود در مرورگر دیگری" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -879,7 +875,7 @@ msgstr "" "تعیین تنظیمات سفارشی در URL تنظیمات برگزیده می‌تواند برای همگام‌سازی " "تنظیمات برگزیده در بین دستگاه‌ها استفاده شود." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -887,7 +883,7 @@ msgstr "" "این تنظیمات در کلوچک‌های شما ذخیره می‌شوند و به ما توانایی ذخیرهٔ این " "دادهٔ مربوط به شما را نمی‌دهد." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -895,15 +891,15 @@ msgstr "" "این کلوچک‌ها تنها برای آسودگی شما هستند و ما از این کلوچک‌ها برای ردیابی " "شما استفاده نمی‌کنیم." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "ذخیره" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "بازنشانی پیش‌فرض‌ها" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "بازگشت" @@ -1493,3 +1489,56 @@ msgstr "پنهان‌سازی ویدئو" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">راجع به شیوه‌های درخواست " #~ "بیشتر بیاموزید." + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "این افزونه بررسی می‌کند که آیا " +#~ "آدرس درخواست یک node خروجی TOR است" +#~ " یا خیر، و به کاربر اطلاع " +#~ "می‌دهد مانند check.torproject.org اما از " +#~ "searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "لیست گره خروجی TOR، غیر قابل دسترسی است." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" +#~ "شما از TOR استفاده می کنید. به " +#~ "نظر می رسد آدرس IP شما این " +#~ "است: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" +#~ "شما از TOR استفاده نمی کنید. به" +#~ " نظر می رسد آدرس IP شما این " +#~ "است: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "تشخصیص خودکار زبان جستجو" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "تشخیص خودکار زبان کوئری جستجو و انتخاب کردن آن." + diff --git a/searx/translations/fi/LC_MESSAGES/messages.mo b/searx/translations/fi/LC_MESSAGES/messages.mo index 8afe658dd..fccc2a524 100644 Binary files a/searx/translations/fi/LC_MESSAGES/messages.mo and b/searx/translations/fi/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/fi/LC_MESSAGES/messages.po b/searx/translations/fi/LC_MESSAGES/messages.po index 009d8a468..ebaebd2a3 100644 --- a/searx/translations/fi/LC_MESSAGES/messages.po +++ b/searx/translations/fi/LC_MESSAGES/messages.po @@ -6,21 +6,21 @@ # Jiri Grönroos , 2017 # Markus Heiser , 2022, 2023. # Mico Hautaluoma , 2022. +# return42 , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2023-01-13 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-19 11:39+0000\n" +"Last-Translator: return42 \n" "Language: fi\n" +"Language-Team: Finnish " +"\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -200,40 +200,40 @@ msgstr "pääsy kielletty" msgid "server API error" msgstr "palvelimen API-virhe" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Tietuetta ei löytynyt" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Lähde" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Virhe ladattaessa seuraavaa sivua" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Virheelliset asetukset, muokkaa siis asetuksia" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Virheelliset asetukset" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "hakuvirhe" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Keskeytetty" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minuutti(a) sitten" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} tunti(a), {minutes} minuutti(a) sitten" @@ -315,14 +315,6 @@ msgstr "Ilta" msgid "Night" msgstr "Yö" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Tunnista hakukieli automaattisesti" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Muuntaa merkkijonot erilaisiksi hash-digesteiksi." @@ -383,28 +375,25 @@ msgstr "Tor-verkon tarkistus lisäosa" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Tämä lisäosa tarkistaa, tuleeko pyyntö TOR exit nodesta, ja ilmoittaa " -"käyttäjälle, jos se on, samalla tavalla kuin check.torproject.org, mutta " -"searxngista." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"TOR exit node listaan (https://check.torproject.org/exit-addresses) ei " -"saada yhteyttä." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Sinä käytät TOR:ia. Sinun IP-osoitteesi näyttää olevan: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Sinä et käytä TOR:ia. Sinun IP-osoitteesi näyttää olevan: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -581,15 +570,24 @@ msgstr "Haun kieli" msgid "Default language" msgstr "Oletuskieli" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Millä kielellä haluat etsiä ensisijaisesti?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automaattinen täydentäminen" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Löydä tuloksia kirjoittaessasi" @@ -597,35 +595,35 @@ msgstr "Löydä tuloksia kirjoittaessasi" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Turvahaku" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Tiukka" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Keskitaso" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Ei mitään" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Suodata hakutulosten sisältöä" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI -selvitin" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -633,116 +631,116 @@ msgstr "" "Uudelleenohjaa julkaisujen open-access-versioihin kun mahdollista (vaatii" " liitännäisen)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Hakukonetokenit" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Pääsytunnukset yksityisiin hakukoneisiin" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Käyttöliittymä" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Käyttöliittymän kieli" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Vaihda asettelun kieltä" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Teema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Vaihda SearXNG:n käyttöliittymä" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Teeman tyyli" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Valitse auto seurataksesi selaimesi asetuksia" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Keskipisteen kohdistus" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Päällä" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Pois" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Näyttää tulokset sivun keskellä (Oscar-asettelu)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Tulokset uusiin välilehtiin" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Avaa tulokset uusiin välilehtiin" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Loputon vieritys" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Lataa automaattisesti seuraava sivu, kun nykyisen sivun loppu saavutetaan" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Yksityisyys" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP-menetelmä" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Kuvat välityspalvelimen kautta" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Käytössä" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Ei käytössä" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Kuvatulosten välitys SearXNG:n kautta" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Haun nimi sivun otsikossa" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -750,15 +748,15 @@ msgstr "" "Kun tämä on käytössä, sivun otsikko sisältää kyselysi. Selaimesi voi " "tallentaa tämän otsikon" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Hakukoneet" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Nyt käytetyt hakukoneet" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -766,76 +764,76 @@ msgstr "" "Tämä välilehti ei näy hakutuloksissa, mutta voit tehdä hakuja täällä " "luetelluista moottoreista \"bangien\" kautta." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Salli" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Hakukoneen nimi" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Oikoreitti" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Tukee valittua kieltä" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Aikaväli" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Vastausaika" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Enimmäisaika" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Luotettavuus" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Erityiset kyselyt" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Avainsanat" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nimi" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Kuvaus" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Esimerkit" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Tämä on luettelo SearXNG:n pikavastausmoduuleista." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Tämä on lista lisäosista." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Evästeet" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -843,23 +841,23 @@ msgstr "" "Tämä on luettelo evästeistä ja niiden arvoista, joita SearXNG tallentaa " "tietokoneellesi." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Tämän luettelon avulla voit arvioida SearXNG:n läpinäkyvyyttä." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Evästeen nimi" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Arvo" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Nykyisten asetusten hakuosoite" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -868,11 +866,11 @@ msgstr "" "vuotamalla tietoja niille sivustoille, joihin kohdistuvia tuloksia " "napsautetaan." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL-osoite asetusten palauttamiseksi toisessa selaimessa" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -880,7 +878,7 @@ msgstr "" "Määrittämällä mukautettuja asetuksia asetusten URL-osoitteessa voidaan " "käyttää synkronoimiseen asetuksia eri laitteissa." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -888,7 +886,7 @@ msgstr "" "Nämä asetukset tallennetaan evästeisiisi. Näin Searxin ei tarvitse " "tallentaa sinuun liittyviä henkilökohtaisia tietoja." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -896,15 +894,15 @@ msgstr "" "Kyseiset evästeet palvelevat ainoastaan sinua, eikä niitä käytetä " "seuraamiseesi." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Tallenna" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Palauta oletukset" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Takaisin" @@ -974,7 +972,7 @@ msgstr "haku" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Tietoja ei ole juuri nyt saatavilla." +msgstr "Tietoja ei ole juuri nyt saatavilla. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1495,3 +1493,52 @@ msgstr "piilota video" #~ " Lisätietoja eri välitystavoista." + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Tämä lisäosa tarkistaa, tuleeko pyyntö " +#~ "TOR exit nodesta, ja ilmoittaa " +#~ "käyttäjälle, jos se on, samalla tavalla" +#~ " kuin check.torproject.org, mutta searxngista." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "TOR exit node listaan " +#~ "(https://check.torproject.org/exit-addresses) ei " +#~ "saada yhteyttä." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Sinä käytät TOR:ia. Sinun IP-osoitteesi näyttää olevan: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Sinä et käytä TOR:ia. Sinun IP-osoitteesi näyttää olevan: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Tunnista hakukieli automaattisesti" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Automaattisesti huomaa hakukieli, ja vaihda siihen." + diff --git a/searx/translations/fil/LC_MESSAGES/messages.mo b/searx/translations/fil/LC_MESSAGES/messages.mo index e07c94b90..b612c5bbd 100644 Binary files a/searx/translations/fil/LC_MESSAGES/messages.mo and b/searx/translations/fil/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/fil/LC_MESSAGES/messages.po b/searx/translations/fil/LC_MESSAGES/messages.po index 173724555..25b1db489 100644 --- a/searx/translations/fil/LC_MESSAGES/messages.po +++ b/searx/translations/fil/LC_MESSAGES/messages.po @@ -6,16 +6,17 @@ # gr01d, 2018 # Markus Heiser , 2022. # Hachiki , 2022. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-08-22 12:54+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-19 11:39+0000\n" +"Last-Translator: return42 \n" "Language: fil\n" "Language-Team: Filipino " -"\n" +"\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4" " || n % 10 != 6 || n % 10 != 9);\n" "MIME-Version: 1.0\n" @@ -131,7 +132,7 @@ msgstr "web" #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS'] #: searx/searxng.msg msgid "scientific publications" -msgstr "" +msgstr "mga lathalaing pang agham" #. STYLE_NAMES['AUTO'] #: searx/searxng.msg @@ -166,7 +167,7 @@ msgstr "pagkakamali sa network" #: searx/webapp.py:169 msgid "SSL error: certificate validation has failed" -msgstr "" +msgstr "SSL error: Nabigo ang pagpapatunay ng sertipiko" #: searx/webapp.py:171 msgid "unexpected crash" @@ -200,40 +201,40 @@ msgstr "walang pahintulot" msgid "server API error" msgstr "pagkakamali sa server API" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Walang nakita na aytem" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Pinagmulan" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Nag error ang pagload ng kabilang pahina" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Maling settings, paki ayos ang preferences" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Maling settings" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "nagkaproblema sa paghahanap" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspendido" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} na minuto ang nakalipas" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} oras at {minutes} na minto ang nakalipas" @@ -274,6 +275,8 @@ msgid "" "{numCitations} citations from the year {firstCitationVelocityYear} to " "{lastCitationVelocityYear}" msgstr "" +"{numCitations} mga sipi mula sa taon {firstCitationVelocityYear} at " +"{lastCitationVelocityYear}" #: searx/engines/tineye.py:40 msgid "" @@ -308,14 +311,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Isinasalin ang string sa iba't ibang hash digests." @@ -374,28 +369,25 @@ msgstr "Tor check plugin" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Ang plugin na ito ay tsini-check kung ang address ng request ay isang TOR" -" exit node, at i-iinform ang user kung oo, gaya ng check.torproject.org " -"ngunit searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Ang TOR exit node list (https://check.torproject.org/exit-addresses) ay " -"unreachable." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Ikaw ay gumagamit ng TOR. Ang i'yong IP address ay: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Ikaw ay hindi gumagamit ng TOR. Ang i'yong IP address ay: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -575,15 +567,24 @@ msgstr "Ang wika ng paghahanap" msgid "Default language" msgstr "Default na wika" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Ano ang gusto mong wika sa paghahanap?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Kusang tinatapos" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Maghanap habang ikaw ang nag-tytype" @@ -591,35 +592,35 @@ msgstr "Maghanap habang ikaw ang nag-tytype" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Ligtas na Paghahanap" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Mahigpit" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Banayad" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Wala" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Salain ang mga nilalaman" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI resolver" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -627,118 +628,118 @@ msgstr "" "Mag-redirect sa open-access na mga bersyon ng mga publikasyon kapag " "available (kailangan ang plugin)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Mga token ng makina" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "I-access ang mga token para sa mga pribadong makina" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Ang User interface" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Ang wika ng Interface" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Ibahin ang layout pangwika" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Baguhin ang SearXNG layout" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Stilo ng theme" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Pumili ng auto para sundin ang mga setting ng iyong browser" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Pag-align sa Gitnang" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Bukas" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Sara" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Tignan ang resulta sa gitnang bahagi ng pahina (Oscar layout)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Ang resulta ay na sa bagong tab" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Buksan ang resulta sa panibagong browser tab" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Walang hanggan na pag-scroll" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Awtomatiko na ikarga ang sumunod na pahina kapag nakarating na sa dulo ng" " kasalukuyang pahina" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Pagiging Pribado" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Paraan ng HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy ng larawan" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Paganahin" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Hindi paganahin" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Ang pag-proxy ng mga resulta ng imahe sa pamamagitan ng SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Query sa pamagat ng page" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -746,15 +747,15 @@ msgstr "" "Kapag pinagana, ang pamagat ng pahina ng resulta ay naglalaman ng iyong " "query. Maaaring i-record ng iyong browser ang pamagat na ito" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Engines" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Ang ginagamit natin na search engines" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -763,76 +764,76 @@ msgstr "" "ngunit maaari kang maghanap sa mga engine na nakalista dito sa " "pamamagitan ng bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Payagan" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Pangalan ng engine" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Pagikliin/Maikli" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Suportado ang pinili na wika" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Agwat ng oras" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Oras ng pagtugon" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Ang max na oras" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "pagiging maaasahan" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Mga Espesyal na Queries" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Mga keyword" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Pangalan" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Paglalarawan" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Mga halimbawa" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Ito ang listahan ng mga instant answering module ng SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Ito ang listahan ng mga plugin." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -840,23 +841,23 @@ msgstr "" "Ito ang listahan ng mga cookies at values na ini-store ng SearXNG sa " "i'yong computer." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Pangalan ng cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Nilalaman" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Search URL ng kasalukuyan na naka-save sa preferences" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -865,17 +866,17 @@ msgstr "" "pagiging pribado dahil magkakaroon ng butas sa datos dahil sa pag-pindot " "sa resulta na sites." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -883,7 +884,7 @@ msgstr "" "Ang settings ay nakalagay sa cookies upang hindi kami makakuha ng datos " "mula sa iyo." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -891,15 +892,15 @@ msgstr "" "Hindi namin ginagamit ang cookies para i-track ka, ito ay para maging " "maayos ang paggamit mo." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "I-reset ang defaults" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1494,3 +1495,52 @@ msgstr "itago ang video" #~ " rel=\"external\">alamin ang iba pang mga" #~ " request methods" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Ang plugin na ito ay tsini-check" +#~ " kung ang address ng request ay " +#~ "isang TOR exit node, at i-iinform " +#~ "ang user kung oo, gaya ng " +#~ "check.torproject.org ngunit searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Ang TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) ay " +#~ "unreachable." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Ikaw ay gumagamit ng TOR. Ang i'yong IP address ay: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Ikaw ay hindi gumagamit ng TOR. Ang i'yong IP address ay: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/fr/LC_MESSAGES/messages.mo b/searx/translations/fr/LC_MESSAGES/messages.mo index 869002d53..e0d547ec7 100644 Binary files a/searx/translations/fr/LC_MESSAGES/messages.mo and b/searx/translations/fr/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/fr/LC_MESSAGES/messages.po b/searx/translations/fr/LC_MESSAGES/messages.po index 599df097c..7be96a4df 100644 --- a/searx/translations/fr/LC_MESSAGES/messages.po +++ b/searx/translations/fr/LC_MESSAGES/messages.po @@ -14,21 +14,23 @@ # Markus Heiser , 2022. # Cedrik Boudreau , 2022. # Peter Martin , 2022. +# NoEnd-yt , 2023. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-15 23:46+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: French " -"\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-06 08:08+0000\n" +"Last-Translator: return42 \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -208,40 +210,40 @@ msgstr "accès refusé" msgid "server API error" msgstr "erreur API du serveur" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Pas d'élément trouvé" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Source" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Erreur lors du chargement de la page suivante" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Paramètres non valides, veuillez éditer vos préférences" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Paramètres non valides" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "erreur de recherche" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspendu" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "il y a {minutes} minute(s)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "il y a {hours} heure(s), {minutes} minute(s)" @@ -324,14 +326,6 @@ msgstr "Soir" msgid "Night" msgstr "Nuit" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Détecter automatiquement la langue de la recherche" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Détecter automatiquement la langue de la recherche et y passer." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Convertit les chaînes de caractères en différents condensés de hachage." @@ -390,28 +384,31 @@ msgstr "Plugin de vérification de Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Ce plugin vérifie si l'adresse de la requête est un nœud de sortie TOR, " -"et informe l'utilisateur si c'est le cas, comme check.torproject.org mais" -" depuis searxng." +"Ce plugin vérifie si l’adresse de la requête est un nœud de sortie Tor, " +"et informe l’utilisateur si c’en est un ; par exemple " +"check.torproject.org, mais depuis SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"La liste des nœuds de sortie TOR (https://check.torproject.org/exit-" -"addresses) est inaccessible." +"Erreur lors du téléchargement des noeuds de sortie Tor depuis : https://check" +".torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Vous utilisez TOR. Votre adresse IP semble être : {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Vous utilisez Tor et votre adresse IP externe semble être : {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Vous n'utilisez pas TOR. Votre adresse ip semble être : {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Vous n'utilisez pas Tor et votre adresse IP externe est : {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -591,15 +588,26 @@ msgstr "Langue de recherche" msgid "Default language" msgstr "Langue par défaut" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Détection automatique" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Dans quelle langue préférez-vous effectuer la recherche ?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Choisissez détection automatique pour laisser SearXNG détecter la langue de " +"votre recherche." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Complétion automatique" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Chercher au fil de la saisie" @@ -607,35 +615,35 @@ msgstr "Chercher au fil de la saisie" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Recherche sécurisée" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Stricte" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Modérée" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Désactivé" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrer le contenu" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Résolveur Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -643,89 +651,89 @@ msgstr "" "Rediriger vers les versions des articles en libre accès lorsqu'elles sont" " disponibles (nécessite un plugin)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Jetons de moteur" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Jetons d'accès pour les moteurs privés" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interface utilisateur" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Langue de l'interface" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Changer la langue d'affichage" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Thème" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Change l'apparence de SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Style du thème" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Choisissez auto pour respecter les paramètres de votre navigateur" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Centrer" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Activé" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Désactivé" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Affiche les résultats au centre de la page (similaire au thème Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Résultats dans de nouveaux onglets" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Ouvrir les liens de résultats dans un nouvel onglet" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Défilement infini" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Charge automatiquement la page suivante quand vous arrivez en bas de la " "page" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Vie privée" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Méthode HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, en savoir plus sur les méthodes HTTP" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy d'images" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Activé" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Désactivé" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Proxifier les images à travers SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Requête dans le titre de la page" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -765,15 +773,15 @@ msgstr "" "Activer pour inclure la requête utilisateur dans le titre de la page " "HTML. Votre navigateur peut enregistrer ce titre de page" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Moteurs" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Moteurs de recherche actuellement utilisés" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -782,76 +790,76 @@ msgstr "" "pouvez effectuer des recherches dans les moteurs répertoriés ici via " "bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Autoriser" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nom du moteur" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Raccourci" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Supporte la langue sélectionnée" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Intervalle de temps" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Temps de réponse" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Temps max" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Fiabilité" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Requêtes spéciales" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Mots clés" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nom" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Description" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemples" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Liste des modules de réponse instantanée de SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Voici la liste des plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -859,23 +867,23 @@ msgstr "" "Les cookies et leurs valeurs que SearXNG stocke sur votre ordinateur sont" " énumérés ci-dessous." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Avec cette liste, vous pouvez juger de la transparence de searx." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nom du cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valeur" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Adresse de recherche des réglages actuels" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -884,11 +892,11 @@ msgstr "" "peut réduire la vie privée en donnant accès à certaines données aux sites" " des résultats sélectionnés." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL pour restaurer vos préférences dans un autre navigateur" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -896,7 +904,7 @@ msgstr "" "La spécification de paramètres personnalisés dans l'URL des préférences " "peut être utilisée pour synchroniser les préférences entre les appareils." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -904,7 +912,7 @@ msgstr "" "Ces paramètres sont stockés dans vos cookies ; ceci nous permet de ne pas" " collecter vos données." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -912,15 +920,15 @@ msgstr "" "Ces cookies existent pour votre confort d'utilisation, nous ne les " "utilisons pas pour vous espionner." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Enregistrer" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Remettre les valeurs par défaut" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Retour" @@ -1517,3 +1525,57 @@ msgstr "cacher la vidéo" #~ "href=\"https://fr.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9thodes\"" #~ " rel=\"external\">en savoir plus sur les" #~ " méthodes HTTP" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Ce plugin vérifie si l'adresse de " +#~ "la requête est un nœud de sortie" +#~ " TOR, et informe l'utilisateur si " +#~ "c'est le cas, comme check.torproject.org " +#~ "mais depuis searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "La liste des nœuds de sortie TOR" +#~ " (https://check.torproject.org/exit-addresses) est " +#~ "inaccessible." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Vous utilisez TOR. Votre adresse IP semble être : {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Vous n'utilisez pas TOR. Votre adresse ip semble être : {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" +#~ "Vous utilisez Tor. Il semble que " +#~ "vous avez cette adresse IP externe " +#~ ": {ip_address}." + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" +#~ "Vous n’utilisez pas Tor. Vous avez " +#~ "cette adresse IP externe : {ip_address}." + +#~ msgid "Autodetect search language" +#~ msgstr "Détecter automatiquement la langue de la recherche" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Détecter automatiquement la langue de la recherche et y passer." diff --git a/searx/translations/gl/LC_MESSAGES/messages.mo b/searx/translations/gl/LC_MESSAGES/messages.mo index c622e14fe..47e74548b 100644 Binary files a/searx/translations/gl/LC_MESSAGES/messages.mo and b/searx/translations/gl/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/gl/LC_MESSAGES/messages.po b/searx/translations/gl/LC_MESSAGES/messages.po index 04d6953e8..34753ca31 100644 --- a/searx/translations/gl/LC_MESSAGES/messages.po +++ b/searx/translations/gl/LC_MESSAGES/messages.po @@ -5,20 +5,22 @@ # Translators: # Xosé M. , 2020, 2022. # Xosé M. , 2018-2019, 2022. +# ghose , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-09-23 07:38+0000\n" -"Last-Translator: Xosé M. \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-22 08:08+0000\n" +"Last-Translator: ghose \n" +"Language-Team: Galician \n" "Language: gl\n" -"Language-Team: Galician " -"\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -129,7 +131,7 @@ msgstr "web" #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS'] #: searx/searxng.msg msgid "scientific publications" -msgstr "" +msgstr "publicacións científicas" #. STYLE_NAMES['AUTO'] #: searx/searxng.msg @@ -164,7 +166,7 @@ msgstr "erro de conexión" #: searx/webapp.py:169 msgid "SSL error: certificate validation has failed" -msgstr "" +msgstr "Erro SSL: fallou a validación do certificado" #: searx/webapp.py:171 msgid "unexpected crash" @@ -198,40 +200,40 @@ msgstr "acceso denegado" msgid "server API error" msgstr "erro na API do servidor" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Non se atoparon elementos" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Fonte" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Erro ao cargar a páxina seguinte" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Axustes non válidos, por favor edita a configuración" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Axustes non válidos" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "fallo na busca" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspendido" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "fai {minutes} minuto(s)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "fai {hours} hora(s), {minutes} minuto(s)" @@ -272,6 +274,8 @@ msgid "" "{numCitations} citations from the year {firstCitationVelocityYear} to " "{lastCitationVelocityYear}" msgstr "" +"{numCitations} citas desde o ano {firstCitationVelocityYear} ao " +"{lastCitationVelocityYear}" #: searx/engines/tineye.py:40 msgid "" @@ -297,27 +301,19 @@ msgstr "Non se puido descargar a imaxe." #: searx/engines/wttr.py:101 msgid "Morning" -msgstr "" +msgstr "Mañán" #: searx/engines/wttr.py:101 msgid "Noon" -msgstr "" +msgstr "Mediodía" #: searx/engines/wttr.py:101 msgid "Evening" -msgstr "" +msgstr "Tarde" #: searx/engines/wttr.py:101 msgid "Night" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" +msgstr "Noite" #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." @@ -363,7 +359,7 @@ msgstr "" #: searx/plugins/self_info.py:20 msgid "Self Information" -msgstr "" +msgstr "Información propia" #: searx/plugins/self_info.py:21 msgid "" @@ -379,28 +375,30 @@ msgstr "Complemento para comprobar Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Este complemento comproba se o enderezo da solicitude é un nodo de saída " -"TOR, e informa ás usuarias se o é, como check.torproject.org pero desde " -"searxng." +"Este complemento comproba se o enderezo da solicitude é un nodo-saída de " +"Tor, e informate de se o é; como check.torproject.org, pero desde " +"SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"A lista dos nodos de saída TOR (https://check.torproject.org/exit-" -"addresses) non é accesible." +"Non se puido descargar a lista de nodos de saída a Tor desde: " +"https://check.torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Estás a usar TOR. O teu enderezo ip semella ser: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "Estás usando Tor e semella que tes este enderezo IP externo: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Non estás a usar TOR. O teu enderezo IP semella ser: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Non estás usando Tor e tes este endero IP externo: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -576,15 +574,25 @@ msgstr "Idioma de busca" msgid "Default language" msgstr "Idioma por defecto" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Autodetectar" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Que idioma prefires para buscar?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Elixe Autodetectar para deixar que SearXNG detecte o idioma da túa consulta." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autocompletar" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Buscar nas cousas metras escribes" @@ -592,35 +600,35 @@ msgstr "Buscar nas cousas metras escribes" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Busca segura" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Estrita" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderada" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Ningunha" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtro de contido" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Resolutor Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -628,118 +636,121 @@ msgstr "" "Redireccionar a versións abertas das publicacións cando estén dispoñibles" " (require o engadido)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokens do buscador" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Tokens de acceso para buscadores privados" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interface" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Idioma da interface" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Cambiar o idioma da interface" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Decorado" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Cambiar a interface de SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Estilo do decorado" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Elixe auto para que siga os axustes do navegador" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Alixar ao centro" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "On" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Off" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Mostra os resultados no centro da páxina (interface Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultados en novas lapelas" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Abrir ligazóns de resultados en novas lapelas do navegador" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Desprazamento infinito" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Cargar automáticamente a seguinte páxina ó desprazarse ó fondo da páxina " "actual" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privacidade" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Método HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" +"Cambiar o xeito de enviar formularios, coñece máis sobre os métodos de solicitude" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy de imaxes" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Activado" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Desactivado" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Usar o proxy de SearXNG para resultados das imaxes" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Consulta no título da páxina" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -747,15 +758,15 @@ msgstr "" "Se está activado, o título da páxina de resultados contén a túa consulta." " O navegador pode rexistrar este título" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motores" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motores de busca utilizados actualmente" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -763,76 +774,76 @@ msgstr "" "Esta lapela non é para os resultados, pero podesbuscar nos buscadores " "aquí mostrados a través de bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permitir" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nome do motor" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Atallo" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Soporta o idioma seleccionado" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Marco temporal" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Tempo de resposta" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Tempo máx." -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Fiabilidade" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Consultas especiais" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Palabras chave" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nome" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descrición" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemplos" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Esta é a lista de módulos de respostas instantáneas de SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Esta é a lista de complementos." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -840,23 +851,23 @@ msgstr "" "Esta é a lista de cookies e os seus valores que SearXNG garda na túa " "computadora." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Con esta lista podes dar conta da transparencia de SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nome da cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valor" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" -msgstr "URL de busca dos axustes gardados actualmente." +msgstr "URL de Busca dos Axustes gardados actualmente" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -864,11 +875,11 @@ msgstr "" "Nota: establecer axustes personalizados na URL de busca pode reducir a " "túa privacidade ó filtrar datos ós sitios web dos resultados." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL para restablecer as túas preferencias noutro navegador" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -876,7 +887,7 @@ msgstr "" "Cos axustes personalizados gardados nun URL coas preferencias podes " "utilizalo para sincronizalas entre dispositivos." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -884,7 +895,7 @@ msgstr "" "Estes axustes gárdanse en cookies, así non temos que almacenar ningún " "dato sobre ti." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -892,15 +903,15 @@ msgstr "" "Estas cookies son para a túa conveniencia, non utilizamos estas cookies " "para rastrexarte." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Gardar" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Restablecer" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Atrás" @@ -970,7 +981,7 @@ msgstr "buscar" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Non hai datos dispoñibles." +msgstr "Non hai datos dispoñibles. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1127,47 +1138,47 @@ msgstr "agochar mapa" #: searx/templates/simple/result_templates/paper.html:5 msgid "Published date" -msgstr "" +msgstr "Data de publicación" #: searx/templates/simple/result_templates/paper.html:9 msgid "Journal" -msgstr "" +msgstr "Xornal" #: searx/templates/simple/result_templates/paper.html:22 msgid "Editor" -msgstr "" +msgstr "Autoría" #: searx/templates/simple/result_templates/paper.html:23 msgid "Publisher" -msgstr "" +msgstr "Editorial" #: searx/templates/simple/result_templates/paper.html:24 msgid "Type" -msgstr "" +msgstr "Tipo" #: searx/templates/simple/result_templates/paper.html:25 msgid "Tags" -msgstr "" +msgstr "Etiquetas" #: searx/templates/simple/result_templates/paper.html:26 msgid "DOI" -msgstr "" +msgstr "DOI" #: searx/templates/simple/result_templates/paper.html:27 msgid "ISSN" -msgstr "" +msgstr "ISSN" #: searx/templates/simple/result_templates/paper.html:28 msgid "ISBN" -msgstr "" +msgstr "ISBN" #: searx/templates/simple/result_templates/paper.html:33 msgid "PDF" -msgstr "" +msgstr "PDF" #: searx/templates/simple/result_templates/paper.html:34 msgid "HTML" -msgstr "" +msgstr "HTML" #: searx/templates/simple/result_templates/torrent.html:6 msgid "magnet link" @@ -1492,3 +1503,57 @@ msgstr "agochar vídeo" #~ " rel=\"external\">aprende máis sobre os " #~ "métodos de consulta" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Este complemento comproba se o enderezo" +#~ " da solicitude é un nodo de " +#~ "saída TOR, e informa ás usuarias " +#~ "se o é, como check.torproject.org pero" +#~ " desde searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "A lista dos nodos de saída TOR " +#~ "(https://check.torproject.org/exit-addresses) non é" +#~ " accesible." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Estás a usar TOR. O teu enderezo ip semella ser: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Non estás a usar TOR. O teu enderezo IP semella ser: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" +#~ "Non se puido descargar a lista de" +#~ " nodos de saída a Tor desde " +#~ "https://check.torproject.org/exit-addresses." + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" +#~ "Estás a usar Tor. Este semella ser" +#~ " o teu enderezo IP externo: " +#~ "{ip_address}." + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "Non estás a usar Tor. Tes este enderezo IP externo: {ip_address}." + +#~ msgid "Autodetect search language" +#~ msgstr "Detección automática do idioma" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Detectar automáticamente o idioma usado na busca e cambiar a el." diff --git a/searx/translations/he/LC_MESSAGES/messages.mo b/searx/translations/he/LC_MESSAGES/messages.mo index 079e50c35..04df27cc7 100644 Binary files a/searx/translations/he/LC_MESSAGES/messages.mo and b/searx/translations/he/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/he/LC_MESSAGES/messages.po b/searx/translations/he/LC_MESSAGES/messages.po index b8dbe4021..ebf00bb4a 100644 --- a/searx/translations/he/LC_MESSAGES/messages.po +++ b/searx/translations/he/LC_MESSAGES/messages.po @@ -9,14 +9,14 @@ # pointhi, 2014 # rike, 2014 # stf , 2014 -# Markus Heiser , 2022. +# Markus Heiser , 2022, 2023. # Shopimisrel , 2022. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-09-21 15:58+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-01-20 07:15+0000\n" "Last-Translator: Markus Heiser \n" "Language: he\n" "Language-Team: Hebrew " @@ -136,7 +136,7 @@ msgstr "רשת" #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS'] #: searx/searxng.msg msgid "scientific publications" -msgstr "" +msgstr "מחקרים מדעיים" #. STYLE_NAMES['AUTO'] #: searx/searxng.msg @@ -171,7 +171,7 @@ msgstr "שגיאת רשת תקשורת" #: searx/webapp.py:169 msgid "SSL error: certificate validation has failed" -msgstr "" +msgstr "שגיאת SSL: אימות התעודה נכשל" #: searx/webapp.py:171 msgid "unexpected crash" @@ -205,40 +205,40 @@ msgstr "הגישה נדחתה" msgid "server API error" msgstr "שגיאת API שרת" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "לא נמצא פריט" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "מקור" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "שגיאה בטעינת העמוד הבא" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "הגדרות לא תקינות, עליך לתקן את ההעדפות שלך" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "הגדרות לא תקינות" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "שגיאת חיפוש" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "מושהה" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "לפני {minutes} דקות" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "לפני {hours} שעות, {minutes} דקות" @@ -304,27 +304,19 @@ msgstr "אי אפשר להוריד את תמונה זו." #: searx/engines/wttr.py:101 msgid "Morning" -msgstr "" +msgstr "בוקר" #: searx/engines/wttr.py:101 msgid "Noon" -msgstr "" +msgstr "צהריים" #: searx/engines/wttr.py:101 msgid "Evening" -msgstr "" +msgstr "ערב" #: searx/engines/wttr.py:101 msgid "Night" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" +msgstr "לילה" #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." @@ -368,7 +360,7 @@ msgstr "" #: searx/plugins/self_info.py:20 msgid "Self Information" -msgstr "" +msgstr "מידע עצמי" #: searx/plugins/self_info.py:21 msgid "" @@ -384,27 +376,25 @@ msgstr "טור בודק תוסף" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"תוסף זה בודק אם הכתובת של הבקשה היא צומת יציאה של TOR, ומודיע למשתמש אם " -"כן, כמו check.torproject.org אבל מ-searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"רשימת צומת היציאה של TOR (https://check.torproject.org/exit-addresses) " -"אינה ניתנת לגישה." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "אתה משתמש ב-TOR. נראה שכתובת ה-IP שלך היא: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "אתה לא משתמש ב-TOR. נראה שכתובת ה-IP שלך היא: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -579,15 +569,24 @@ msgstr "שפת חיפוש" msgid "Default language" msgstr "שפה ברירת מחדל" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "באיזו שפה ברצונך לחפש?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "השלמה אוטומטית" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "מצא טקסט תוך כדי הקלדה" @@ -595,150 +594,150 @@ msgstr "מצא טקסט תוך כדי הקלדה" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "חיפוש בטוח" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "מחמיר" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "מתון" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "כבוי" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "סנן תוכן" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "מפענח Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "העבר מחדש לגרסאות open-access של כתבי-עת כאשר ישנן (נדרש Plugin)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "קוד (token) מנוע" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "קוד גישה (access token) למנועים פרטיים" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "ממשק משתמש" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "שפת ממשק" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "שנה את שפת הממשק" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "מוטיב" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "שנה את מערך SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "סגנון מוטיב" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "בחר אוטומטית כדי לשמור על התאמה עם הגדרות הדפדפן שלי" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "יישור מרכז" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "פועל" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "כבוי" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "מציג תוצאות במרכז העמוד (פריסת אוסקר)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "תוצאות בכרטיסיות חדשות" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "פתח קישורי תוצאה בתוך כרטיסיות דפדפן חדשות" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "גלילה אינסופית" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "טען אוטומטית של העמוד הבא בעת גלילה לתחתית העמוד" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "פרטיות" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "שיטת HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "פרוקסי תמונה" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "מאופשר" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "מנוטרל" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "העבר תוצאות תמונה דרך פרוקסי מבעד SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "שאילתא בכותרת העמוד" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -746,15 +745,15 @@ msgstr "" "כאשר אפשרות זאת פעילה, כותרת עמוד התוצאות תכיל את השאילתא שלך. הדפדפן שלך" " יכול לתעד את כותרת זאת" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "מנועים" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "מנועי חיפוש שמופעלים כעת" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -762,98 +761,98 @@ msgstr "" "כרטיסייה זאת לא מוצגת עבור תוצאות חיפוש, אולם באפשרותך לחפש את המנועים " "המנויים כאן בעזרת bang." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "הפעל" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "שם מנוע" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "קיצור דרך" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "תומך בשפה נבחרת" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "טווח זמן" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "זמן תגובה" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "זמן מירבי" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "מהימנות" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "שאילתות מיוחדות" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "מילות מפתח" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "שם" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "תיאור" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "דוגמאות" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "זוהי רשימת המודולים של המענה המיידי של SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "זוהי הרשימת של תוספות." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "עוגיות" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "זוהי רשימת העוגיות וערכיהן אשר SearXNG מאחסן על המחשב שלך." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "בעזרת רשימה זאת, באפשרותך לגשת אל SearXNG transparency." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "שם עוגייה" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "ערך" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "כתובת URL חיפוש של ההעדפות שנשמרו" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -861,11 +860,11 @@ msgstr "" "הערה: ציון ערכים מותאמים בתוך URL חיפוש יכול להפחית פרטיות תוך כדי הדלפת " "מידע לאתרים שלחצת עליהם בעמוד התוצאות." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "כתובת אתר לשחזור ההעדפות שלך בדפדפן אחר" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -873,7 +872,7 @@ msgstr "" "ניתן להשתמש בציון הגדרות מותאמות אישית בכתובת ההעדפות כדי לסנכרן העדפות " "בין מכשירים." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -881,21 +880,21 @@ msgstr "" "הגדרות אלו מאוחסנות בתוך העוגיות שלך, אלו מאפשרות לנו להימנע מלאחסן את " "מידע זה אודותיך." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "עוגיות אלו משרתות את נוחותך הבלעדית, אנחנו לא משתמשים בהן כדי לעקוב אחריך." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "שמור" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "אפס העדפות" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "חזור" @@ -1120,7 +1119,7 @@ msgstr "הסתר מפה" #: searx/templates/simple/result_templates/paper.html:5 msgid "Published date" -msgstr "" +msgstr "תאריך פרסום" #: searx/templates/simple/result_templates/paper.html:9 msgid "Journal" @@ -1128,7 +1127,7 @@ msgstr "" #: searx/templates/simple/result_templates/paper.html:22 msgid "Editor" -msgstr "" +msgstr "עורך" #: searx/templates/simple/result_templates/paper.html:23 msgid "Publisher" @@ -1136,11 +1135,11 @@ msgstr "" #: searx/templates/simple/result_templates/paper.html:24 msgid "Type" -msgstr "" +msgstr "סוג" #: searx/templates/simple/result_templates/paper.html:25 msgid "Tags" -msgstr "" +msgstr "תגים" #: searx/templates/simple/result_templates/paper.html:26 msgid "DOI" @@ -1484,3 +1483,51 @@ msgstr "הסתר וידאו" #~ " rel=\"external\">למידע נוסף אודות שיטות " #~ "בקשה (request methods)" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "תוסף זה בודק אם הכתובת של הבקשה" +#~ " היא צומת יציאה של TOR, ומודיע " +#~ "למשתמש אם כן, כמו check.torproject.org " +#~ "אבל מ-searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "רשימת צומת היציאה של TOR " +#~ "(https://check.torproject.org/exit-addresses) אינה " +#~ "ניתנת לגישה." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "אתה משתמש ב-TOR. נראה שכתובת ה-IP שלך היא: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "אתה לא משתמש ב-TOR. נראה שכתובת ה-IP שלך היא: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "זיהוי שפת חיפוש אוטומטי" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "זהה אוטומטית את שפת החיפוש והחלף אליה בהתאם." + diff --git a/searx/translations/hr/LC_MESSAGES/messages.mo b/searx/translations/hr/LC_MESSAGES/messages.mo index 888cc3f53..55b9a23a9 100644 Binary files a/searx/translations/hr/LC_MESSAGES/messages.mo and b/searx/translations/hr/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/hr/LC_MESSAGES/messages.po b/searx/translations/hr/LC_MESSAGES/messages.po index 94bbb9c42..1f4161fec 100644 --- a/searx/translations/hr/LC_MESSAGES/messages.po +++ b/searx/translations/hr/LC_MESSAGES/messages.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-04 07:18+0000\n" "Last-Translator: ptomljanovic \n" "Language: hr\n" @@ -204,40 +204,40 @@ msgstr "pristup odbijen" msgid "server API error" msgstr "server API greška" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nije pronađena nijedna stavka" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Izvor" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Greška u učitavnju sljedeće stranice" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Nevažeće postavke, molimo uredite svoje postavke" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Nevažeće postavke" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "greška u pretraživanju" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Zaustavljeno" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "prije {minutes} minut(u,e,a)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "prije {hours} sat(i) i {minutes} minut(u,e,a)" @@ -319,14 +319,6 @@ msgstr "Večer" msgid "Night" msgstr "Noć" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Pretvara niz u drukčije hash mješavine." @@ -383,28 +375,25 @@ msgstr "Tor plugin za provjeru" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Ovaj plugin provjerava da li je adresa zahtjeva TOR izlazna adresa, i " -"šalje obavijest korisniku, kao check.torproject.org ali od strane " -"searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"TOR lista izlaznih adresa (https://check.torproject.org/exit-addresses) " -"je nedostupna." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Vi koristite TOR. Vaša IP adresa se čini da je: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Vi koristite TOR. Izgleda da je vaša IP adresa: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -580,15 +569,24 @@ msgstr "Jezik pretraživanja" msgid "Default language" msgstr "Zadani jezik" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Koji jezik želite za pretraživanje?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automatsko dovršavanje" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Pronađite stvari prilikom upisivanja" @@ -596,35 +594,35 @@ msgstr "Pronađite stvari prilikom upisivanja" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Sigurno pretraživanje" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Strogo" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Umjereno" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Ništa" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtriranje sadržaja" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Otvoreni pristup DOI rješenja" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -632,89 +630,89 @@ msgstr "" "Preusmjeri na verzije izdanja otvorenog pristupa kada je isto dostupno " "(potreban je dodatak)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Motorni žetoni" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Pristupite žetone za privatne motore" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Korisničko sučelje" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Jezik sučelja" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Promijenite jezik prikaza" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Promijenite izgled SearXNG-a" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Izgled teme" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Odaberite automatski kako biste pratili postavke vašeg preglednika" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Središnje poravnanje" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Uključeno" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Isključeno" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Prikazuje rezultate u sredini stranice (Oscar raspored)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Rezultati u novim karticama" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Otvorite veze rezultata na novim karticama preglednika" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Beskonačno pomicanje" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Automatski učitajte sljedeću stranicu kada se pomaknete do dna trenutne " "stranice" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privatnost" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP metoda" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, saznajte više o metodama zahtjeva" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy slike" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Omogućeno" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Onemogućeno" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Proxy slikovni rezultati putem SearXNG-a" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Upit u naslovu stranice" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -754,15 +752,15 @@ msgstr "" "Kada je omogućeno, naslov stranice s rezultatima sadrži vaš upit. Vaš " "preglednik može zabilježiti ovaj naslov" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Tražilice" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Trenutno korištene tražilice" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -770,76 +768,76 @@ msgstr "" "Ova kartica nije prikazana za rezultate pretrage, ali možete pretraživati" " motore navedene ovdje putem šiških." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Dozvoli" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Naziv tražilice" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Prečac" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Podržava odabrani jezik" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Vremenski raspon" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Vrijeme odziva" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maksimalno vrijeme" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Pouzdanost" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Posebni upiti" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Ključne riječi" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Naziv" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Opis" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Primjeri" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Ovo je popis SearXNG-ovih modula za trenutno javljanje." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Ovo je popis dodataka." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Kolačići" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -847,23 +845,23 @@ msgstr "" "Ovo je popis kolačića i njihovih vrijednosti koje SearXNG pohranjuje na " "vašem kompjuteru." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "S tim popisom možete procijeniti prozirnost SearXNG-a." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Naziv kolačića" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Vrijednost" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Pretraži URL adresu trenutno spremljenih postavki" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -872,11 +870,11 @@ msgstr "" " smanjiti privatnost zbog propuštanja podataka na kliknute web lokacije " "rezultata." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL da biste vratili vaše postavke u drugom pregledniku" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -884,7 +882,7 @@ msgstr "" "Navođenje prilagođenih postavki u URL-u može se koristiti za " "sinkronizaciju postavki na svim uređajima." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -892,7 +890,7 @@ msgstr "" "Ove postavke su pohranjene u Vašim kolačićima, što omogućuje da ne " "spremamo podatke o Vama." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -900,15 +898,15 @@ msgstr "" "Ovi kolačići služe Vašoj pogodnosti, ne upotrebljavamo te kolačiće da bi " "Vas pratili." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Sačuvati" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Vraćanje zadanih postavki" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Natrag" @@ -1501,3 +1499,51 @@ msgstr "sakrij video" #~ " rel=\"external\">saznajte više o metodama " #~ "zahtjeva" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Ovaj plugin provjerava da li je " +#~ "adresa zahtjeva TOR izlazna adresa, i" +#~ " šalje obavijest korisniku, kao " +#~ "check.torproject.org ali od strane searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "TOR lista izlaznih adresa " +#~ "(https://check.torproject.org/exit-addresses) je " +#~ "nedostupna." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Vi koristite TOR. Vaša IP adresa se čini da je: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Vi koristite TOR. Izgleda da je vaša IP adresa: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/hu/LC_MESSAGES/messages.mo b/searx/translations/hu/LC_MESSAGES/messages.mo index 4a4ab4138..3df429548 100644 Binary files a/searx/translations/hu/LC_MESSAGES/messages.mo and b/searx/translations/hu/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/hu/LC_MESSAGES/messages.po b/searx/translations/hu/LC_MESSAGES/messages.po index 6f5b88173..521424dff 100644 --- a/searx/translations/hu/LC_MESSAGES/messages.po +++ b/searx/translations/hu/LC_MESSAGES/messages.po @@ -12,19 +12,18 @@ # Lakatos Tamás , 2022. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2023-01-06 07:14+0000\n" "Last-Translator: Markus Heiser \n" -"Language-Team: Hungarian \n" "Language: hu\n" +"Language-Team: Hungarian " +"\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -204,40 +203,40 @@ msgstr "hozzáférés megtagadva" msgid "server API error" msgstr "szerver API hiba" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nincs találat" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Forrás" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Hiba a következő oldal betöltése során" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Érvénytelen beállítások, kérlek módosítsd őket" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Érvénytelen beállítások" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "keresési hiba" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Felfüggesztve" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} perce" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} óra, {minutes} perce" @@ -319,14 +318,6 @@ msgstr "Este" msgid "Night" msgstr "Éjszaka" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "A szöveget különböző hash értékekké alakítja." @@ -387,28 +378,25 @@ msgstr "Tor ellenőrző kiegészítő" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Ez a kiegeszítő ellenőrzi, hogy a kérés címe az egy TOR kilépő nodé-e, és" -" téjákoztatja erről a felhasználót. Olyan, mint a check.torproject.org, " -"de a searxng-től." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"A TOR kilébő node listája (https://check.torproject.org/exit-addresses) " -"elérhetetlen." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "TOR-t használsz. Az IP címed ennek tűnik: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Nem használsz TOR-t. Az IP címed ennek tűnik: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -586,15 +574,24 @@ msgstr "Keresés nyelve" msgid "Default language" msgstr "Alapértelmezett nyelv" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Preferált keresési nyelv?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automatikus kiegészítés" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Automatikus kiegészítés" @@ -602,123 +599,123 @@ msgstr "Automatikus kiegészítés" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Felnőtt tartalom szűrés" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Erős" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Enyhe" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Nincs" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Tartalom szűrés" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Szabad DOI feloldó" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "Átirányítás a publikáció szabadon elérhető változatára (plugin szükséges)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Keresőmotor kulcsok" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Hozzáférési kulcsok" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Felhasználói felület" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Felület nyelve" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "A felület nyelvének megváltoztatása" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Témák" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "A SearXNG elrendezésének megváltoztatása" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Téma stílusa" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" "Válaszd ki az \"automatikus\" beállítást hogy a böngésződ beállítását " "használja" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Középre rendezés" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Be" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Ki" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "A találatokat a lap közepén jelenítse meg (Oscar elrendezés)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Találatok megjelenítése új lapon" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Találatok megnyitása új lapon" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Végtelen görgetés" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "További találatok automatikus betöltése, ha a lap aljára érsz" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Magánszféra" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Módszer" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, tudjon meg többet a kérési módszerekről" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Kép proxy" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Engedélyez" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Inaktivál" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Képek megjelenítése a SearXNG proxyn keresztül" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Lekérdezés az oldal címében" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -758,15 +755,15 @@ msgstr "" "Ha bekapcsolod, a találati oldal fejléce tartalmazza a keresésed. A " "böngésződ elmentheti ezt" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Keresőmotorok" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Jelenleg használt keresőmotorok" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -774,76 +771,76 @@ msgstr "" "Ez az oldal nem jelenik meg a keresés eredményében, de te tudsz keresni " "keresőmotorokat a \"bangs\"-el." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Engedélyezés" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Keresőmotor neve" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Rövidítés" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Támogatja a kiválasztott nyelvet" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Időintervallum" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Válaszidő" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maximális idő" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Megbízhatóság" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Speciális lekérdezések" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Kulcsszavak" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Név" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Leírás" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Példák" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Lista a SearXNG \"egyből válaszoló\" moduljairól." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Ez egy lista a beépülő modulokról." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Sütik" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -851,35 +848,35 @@ msgstr "" "Ez egy lista a sütikről és azok értékeikről amelyeket a SearXNG tárol a " "számítógépeden." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Ennek a listának segítségével elbírálhatod a SearXNG átláthatóságát." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Süti neve" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Érték" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Keresési URL a beállítások alapján" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "Megjegyzés: URL-ben tárolt saját beállítások csökkenthetik az anonimitást." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" "Ennek a linknek segítségével átviheted a beállításaidat egy másik " "böngészőbe" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -887,13 +884,13 @@ msgstr "" "Meghatározhatsz egyéni beállításokat a \"beállítások\" linkben, amelyeket" " szinkronizálhatsz az eszközeid között." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "Ezek a beállítások csak a böngésző sütijeiben tárolódnak." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -901,15 +898,15 @@ msgstr "" "Ezek a sütik csak kényelmi funkciókat látnak el, nem használjuk a " "felhasználók követésére." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Mentés" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Alapbeállítások visszaállítása" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Vissza" @@ -1495,3 +1492,53 @@ msgstr "videó elrejtése" #~ "Keresés metódusa (bővebben)" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Ez a kiegeszítő ellenőrzi, hogy a " +#~ "kérés címe az egy TOR kilépő " +#~ "nodé-e, és téjákoztatja erről a " +#~ "felhasználót. Olyan, mint a " +#~ "check.torproject.org, de a searxng-től." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "A TOR kilébő node listája " +#~ "(https://check.torproject.org/exit-addresses) " +#~ "elérhetetlen." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "TOR-t használsz. Az IP címed ennek tűnik: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Nem használsz TOR-t. Az IP címed ennek tűnik: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/ia/LC_MESSAGES/messages.mo b/searx/translations/ia/LC_MESSAGES/messages.mo index 80b125653..cc1942b0f 100644 Binary files a/searx/translations/ia/LC_MESSAGES/messages.mo and b/searx/translations/ia/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ia/LC_MESSAGES/messages.po b/searx/translations/ia/LC_MESSAGES/messages.po index 5d3325c9c..4ddf70443 100644 --- a/searx/translations/ia/LC_MESSAGES/messages.po +++ b/searx/translations/ia/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2021-12-10 07:17+0000\n" "Last-Translator: Markus Heiser \n" "Language: ia\n" @@ -197,40 +197,40 @@ msgstr "" msgid "server API error" msgstr "" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nulle item trovate" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Configurationes non valide, per favor, modifica tu preferentias" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Configurationes invalide" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "error in recerca" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minuta(s) retro" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} hora(s), {minutes} minuta(s) retro" @@ -305,14 +305,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -372,22 +364,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -564,15 +558,24 @@ msgstr "Lingua pro le recerca" msgid "Default language" msgstr "Lingua predefinite" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Qual lingua tu prefere pro recercar?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autocompletar" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Trova cosas durante que tu scribe" @@ -580,263 +583,263 @@ msgstr "Trova cosas durante que tu scribe" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Filtro de contento potentialmente offensive" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Rigorose" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderate" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Nulle" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrar contento" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfacie del usator" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Lingua del interfacie" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Cambia le lingua del interfacie" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Activate" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Disactivate" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultatos sur nove schedas" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Aperir le resultatos sur nove schedas del navigator" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Rolamento infinite" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Automaticamente cargar le proxime pagina quando arrivar al fundo del " "pagina actual" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Confidentialitate" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy pro imagines" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Activate" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Disactivate" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motores" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motores de recerca actualmente usate" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permitter" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nomine del motor" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Via breve" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Supporta le lingua selectionate" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Intervallo de tempore" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Tempore maxime" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Parolas clave" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nomine" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Description" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemplos" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nomine de cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valor" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL de Recerca del preferentias actualmente salvate" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -845,17 +848,17 @@ msgstr "" "reducer le confidentialitate per lassar escappar datos al sitos cliccate " "in le resultatos." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -863,7 +866,7 @@ msgstr "" "Iste preferentias es salvate in tu cookies, le qual permitte nos non " "salvar iste datos super vos." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -871,15 +874,15 @@ msgstr "" "Iste cookies servi solmente a tu convenientia, nos non usa iste cookies " "pro traciar te." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Restablir configurationes" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1477,3 +1480,44 @@ msgstr "occultar video" #~ " rel=\"external\"> apprende plus re " #~ "methodos de requesta " +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/id/LC_MESSAGES/messages.mo b/searx/translations/id/LC_MESSAGES/messages.mo index 7890965de..c65b0fb06 100644 Binary files a/searx/translations/id/LC_MESSAGES/messages.mo and b/searx/translations/id/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/id/LC_MESSAGES/messages.po b/searx/translations/id/LC_MESSAGES/messages.po index 17a1879d2..3f52447b2 100644 --- a/searx/translations/id/LC_MESSAGES/messages.po +++ b/searx/translations/id/LC_MESSAGES/messages.po @@ -8,17 +8,17 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2023-01-06 07:14+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-16 10:25+0000\n" "Last-Translator: Linerly \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.16.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -198,40 +198,40 @@ msgstr "akses ditolak" msgid "server API error" msgstr "kesalahan server API" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Item tidak ditemukan" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Sumber" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Gagal memuat halaman berikutnya" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Pengaturan tidak valid, mohon ubah preferensi Anda" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Pengaturan tidak valid" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "kesalahan pencarian" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Ditangguhkan" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} menit yang lalu" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} jam, {minutes} menit yang lalu" @@ -314,21 +314,13 @@ msgstr "Sore" msgid "Night" msgstr "Malam" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Deteksi bahasa pencarian secara otomatis" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Deteksi bahasa kueri pencarian dan ubah bahasanya secara otomatis." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Mengubah string menjadi hash digest yang berbeda." #: searx/plugins/hash_plugin.py:52 msgid "hash digest" -msgstr "hash digest" +msgstr "intisari hash" #: searx/plugins/hostname_replace.py:9 msgid "Hostname replace" @@ -380,28 +372,34 @@ msgstr "Plugin pemeriksaan Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Plugin ini memeriksa jika alamat peminta adalah node keluaran TOR, dan " -"memberitahukan pengguna jika iya, seperti check.torproject.org tetapi " -"dari searxng." +"Plugin ini memeriksa jika alamat permintaan adalah node keluar Tor, dan " +"memberi tahu pengguna jika benar; seperti check.torproject.org, tetapi dari " +"SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Daftar node keluar TOR (https://check.torproject.org/exit-addresses) " -"tidak dapat dijangkau." +"Tidak dapat mengunduh daftar node keluar Tor dari: https://check.torproject." +"org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Anda menggunakan TOR. Alamat IP Anda adalah: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Anda sedang menggunakan Tor dan sepertinya Anda memiliki alamat IP eksternal " +"berikut: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Anda tidak menggunakan TOR. Alamat IP Anda terlihat sebagai: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" +"Anda sedang tidak menggunakan Tor dan Anda memiliki alamat IP eksternal " +"berikut: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -579,15 +577,26 @@ msgstr "Bahasa pencarian" msgid "Default language" msgstr "Bahasa bawaan" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Deteksi otomatis" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Bahasa apa yang Anda ingin pakai untuk pencarian?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Pilih Deteksi otomatis untuk memperbolehkan SearXNG mendeteksi bahasa kueri " +"Anda." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Perlengkapan otomatis" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Cari hal-hal saat Anda mengetik" @@ -595,35 +604,35 @@ msgstr "Cari hal-hal saat Anda mengetik" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Pencarian Aman" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Ketat" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Menengah" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Tidak ada" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Saring konten" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Penyelesaian Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -631,89 +640,89 @@ msgstr "" "Mengalihkan ke versi terbuka dari publikasi jika tersedia (plugin " "dibutuhkan)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Token mesin" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Token akses untuk mesin pribadi" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Antarmuka pengguna" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Bahasa antarmuka" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Ubah bahasa tata letak" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Ubah tata letak SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Gaya tema" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Pilih otomatis untuk mengikuti pengaturan browser Anda" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Penjajaran Tengah" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Aktif" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Nonaktif" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Tampilkan hasil pada bagian tengah halaman (tata letak Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Hasil pada tab baru" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Buka tautan hasil di tab browser baru" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Gulir tak terbatas" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Secara otomatis memuat halaman selanjutnya saat menggulir ke bawah " "halaman saat ini" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privasi" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Metode HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, pelajari lebih lanjut tentang metode permintaan" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proksi gambar" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Diaktifkan" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Dinonaktifkan" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Memproksikan hasil gambar melalui SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Pencarian pada judul halaman" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -753,15 +762,15 @@ msgstr "" "Ketika diaktifkan, judul halaman hasil mengandung pencarian Anda. Browser" " Anda dapat merekam judul ini" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Mesin" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Mesin pencari yang saat ini digunakan" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -769,76 +778,76 @@ msgstr "" "Tab ini tidak ditampilkan untuk hasil pencarian, tetapi Anda dapat " "mencari di mesin-mesin berikut ini melalui fitur bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Izinkan" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nama mesin" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Pintasan" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Mendukung bahasa yang dipilih" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Rentang waktu" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Waktu respons" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Waktu maksimum" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Keandalan" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Pencarian Khusus" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Kata kunci" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nama" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Deskripsi" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Contoh" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Ini adalah daftar dari modul penjawab instan SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Ini adalah daftar plugin." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Kuki" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -846,23 +855,23 @@ msgstr "" "Ini adalah daftar kuki dan nilai-nilai mereka yang SearXNG simpan di " "komputer Anda." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Dengan daftar itu, Anda dapat menilai transparansi SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nama kuki" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Nilai" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL pencarian dari pengaturan yang tersimpan saat ini" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -871,11 +880,11 @@ msgstr "" "mengurangi privasi dengan membocorkan data kepada situs hasil yang " "diklik." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL untuk memulihkan preferensi Anda dalam peramban lain" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -883,7 +892,7 @@ msgstr "" "Menyediakan pengaturan kustom dalam URL preferensi dapat digunakan untuk " "menyinkronkan preferensi pada semua perangkat." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -891,7 +900,7 @@ msgstr "" "Pengaturan ini disimpan di kuki Anda, ini memungkinkan kami untuk tidak " "menyimpan data ini tentang Anda." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -899,15 +908,15 @@ msgstr "" "Kuki ini hanya untuk kenyamanan Anda, kami tidak menggunakan kuki ini " "untuk melacak Anda." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Simpan" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Atur ulang ke bawaan" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Kembali" @@ -1073,7 +1082,7 @@ msgstr "Informasi!" #: searx/templates/simple/messages/no_cookies.html:4 msgid "currently, there are no cookies defined." -msgstr "saat ini, tidak ada kuki yang didefinisikan" +msgstr "saat ini, tidak ada kuki yang didefinisikan." #: searx/templates/simple/messages/no_results.html:6 msgid "Engines cannot retrieve results." @@ -1385,3 +1394,53 @@ msgstr "sembunyikan video" #~ "href=\"https://id.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Metode_permintaan\"" #~ " rel=\"external\">pelajari lebih lanjut tentang" #~ " metode permintaan" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Plugin ini memeriksa jika alamat peminta" +#~ " adalah node keluaran TOR, dan " +#~ "memberitahukan pengguna jika iya, seperti " +#~ "check.torproject.org tetapi dari searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Daftar node keluar TOR " +#~ "(https://check.torproject.org/exit-addresses) tidak " +#~ "dapat dijangkau." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Anda menggunakan TOR. Alamat IP Anda adalah: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" +#~ "Anda tidak menggunakan TOR. Alamat IP" +#~ " Anda terlihat sebagai: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Deteksi bahasa pencarian secara otomatis" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Deteksi bahasa kueri pencarian dan ubah bahasanya secara otomatis." diff --git a/searx/translations/it/LC_MESSAGES/messages.mo b/searx/translations/it/LC_MESSAGES/messages.mo index 7273c46b9..5e88744b2 100644 Binary files a/searx/translations/it/LC_MESSAGES/messages.mo and b/searx/translations/it/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/it/LC_MESSAGES/messages.po b/searx/translations/it/LC_MESSAGES/messages.po index 9449fa531..03dbd18cf 100644 --- a/searx/translations/it/LC_MESSAGES/messages.po +++ b/searx/translations/it/LC_MESSAGES/messages.po @@ -18,21 +18,24 @@ # Robert Bridda , 2022. # random , 2022. # Franco Longo , 2022. +# VaiTon , 2023. +# return42 , 2023. +# SonoAX , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-30 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Italian \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-24 07:07+0000\n" +"Last-Translator: return42 \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.16.4\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -212,40 +215,40 @@ msgstr "accesso negato" msgid "server API error" msgstr "errore server API" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nessun oggetto trovato" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Sorgente" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Errore caricando la pagina successiva" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Impostazioni non valide, modifica le tue preferenze" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Impostazioni non valide" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "errore di ricerca" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Sospeso" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "di {minutes} minuti fa" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "di {hours} ore e {minutes} minuti fa" @@ -328,15 +331,6 @@ msgstr "Sera" msgid "Night" msgstr "Notte" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Rileva automaticamente la lingua di ricerca" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" -"Rileva automaticamente la lingua di ricerca della query e passa ad essa." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Converte le stringhe in diversi digest di hash." @@ -398,28 +392,30 @@ msgstr "Plugin di verifica tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Questo plugin controlla se l'indirizzo della richiesta è un nodo di " -"uscita di TOR e informa l'utente se lo è. Simile a check.torproject.org " -"ma fornito da searxng." +"Questo plugin controlla se l'indirizzo richiesto è un nodo di uscita di Tor " +"e informa l'utente se lo è; come check.torproject.org, ma da SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"La lista dei nodi d'uscita TOR non è raggiungibile " -"(https://check.torproject.org/exit-addresses)." +"Non ho potuto scaricare la lista dei nodi di uscita di Tor da: https://check." +"torproject.org?exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Stai usando TOR. Il tuo indirizzo IP risulta essere : {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Stai usando Tor e sembra che tu abbia il seguente indirizzo IP: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Non stai usando TOR. Il tuo indirizzo IP sembra essere: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Non stai usando Tor e il tuo indirizzo IP esterno è: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -600,15 +596,26 @@ msgstr "Lingua di ricerca" msgid "Default language" msgstr "Lingua predefinita" -#: searx/templates/simple/preferences.html:124 -msgid "What language do you prefer for search?" -msgstr "Che lingua preferisci per la ricerca?" +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Auto" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "What language do you prefer for search?" +msgstr "Che lingua preferisci per eseguire la ricerca?" + +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Scegli la funzione di Auto-rilevamento per far scegliere a SearXNG la lingua " +"da usare nella tua ricerca." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Completamento automatico" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Visualizza risultati mentre digiti" @@ -616,35 +623,35 @@ msgstr "Visualizza risultati mentre digiti" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Ricerca Sicura" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" -msgstr "Rigorosa" +msgstr "Severa" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderata" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Nessuna" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtro famiglia" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Resolver Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -652,89 +659,89 @@ msgstr "" "Indirizza a versioni open-access delle pubblicazioni quando disponibili " "(plugin richiesto)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" -msgstr "Gettoni del motore" +msgstr "Tokens del motore" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" -msgstr "Gettoni di accesso per motori privati" +msgstr "Tokens di accesso per motori privati" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfaccia utente" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Lingua dell'interfaccia" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Cambia la lingua dell'interfaccia" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Cambia la disposizione di SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Stile tema" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Seleziona automatico per seguire le impostazioni del tuo browser" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Allinea al centro" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" -msgstr "On" +msgstr "Attivo" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Spento" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Mostra i risultati al centro della pagina (Oscar layout)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Risultati in una nuova scheda" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Apri i risultati in nuove schede del browser" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Scorrimento infinito" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Carica automaticamente la pagina successiva quando si scorre sino alla " "fine della pagina attuale" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privacy" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Metodo HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, Cos'è un metodo di richiesta?)" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy immagini" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Attivo" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Disabilitato" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Proxy dei risultati delle immagini attraverso SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Query nel titolo della pagina" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -774,15 +781,15 @@ msgstr "" "Quando è abilitato, il titolo della pagina dei risultati contiene la tua " "ricerca. Il tuo browser può registrare questo titolo" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motori" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motori di ricerca attualmente in uso" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -790,76 +797,76 @@ msgstr "" "Questa scheda non viene mostrata per i risultati di ricerca, ma puoi " "cercare i motori elencati qui usando i bang." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Autorizza" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nome del motore" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Scorciatoia" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "La lingua selezionata è disponibile" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Intervallo di tempo" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Tempo di risposta" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Tempo massimo" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Affidabilità" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Richieste speciali" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Parole chiave" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nome" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descrizione" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Esempi" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Questa è la lista dei moduli di risposta istantanea di SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Questa è la lista di plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookie" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -867,23 +874,23 @@ msgstr "" "Questa è la lista di cookies e i loro valori che SearXNG sta salvando sul" " tuo computer." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Con questa lista, potete valutare la trasparenza di SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nome del cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valore" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL di ricerca delle preferenze attualmente salvate" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -891,11 +898,11 @@ msgstr "" "Nota: specificare impostazioni personalizzate nell'URL di ricerca può " "ridurre la privacy facendo trapelare dati ai siti cliccati." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL per ripristinare le tue preferenze in un altro browser" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -903,7 +910,7 @@ msgstr "" "Specificare impostazioni personalizzate nel URL delle preferenze può " "essere usato per sincronizzare le preferenze su più dispositivi." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -911,7 +918,7 @@ msgstr "" "Le impostazioni vengono salvate nei tuoi cookie, consentendoci di non " "conservare dati su di te." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -919,15 +926,15 @@ msgstr "" "Questi cookie servono solo ad offrirti un servizio migliore. Non li " "usiamo per tracciarti." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Salva" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" -msgstr "Reimposta i valori iniziali" +msgstr "Reimposta ai valori di default" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Indietro" @@ -997,7 +1004,7 @@ msgstr "cerca" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Non ci sono dati attualmente disponibili." +msgstr "Non ci sono dati attualmente disponibili. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1057,7 +1064,7 @@ msgstr "Codice" #: searx/templates/simple/stats.html:128 msgid "Checker" -msgstr "Checker" +msgstr "Controllore" #: searx/templates/simple/stats.html:131 msgid "Failed test" @@ -1518,3 +1525,55 @@ msgstr "nascondi video" #~ "href=\"https://it.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Messaggio_di_richiesta\"" #~ " rel=\"external\">Cos'è un metodo di " #~ "richiesta?)" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Questo plugin controlla se l'indirizzo " +#~ "della richiesta è un nodo di " +#~ "uscita di TOR e informa l'utente " +#~ "se lo è. Simile a check.torproject.org" +#~ " ma fornito da searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "La lista dei nodi d'uscita TOR non" +#~ " è raggiungibile (https://check.torproject.org/exit-" +#~ "addresses)." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Stai usando TOR. Il tuo indirizzo IP risulta essere : {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Non stai usando TOR. Il tuo indirizzo IP sembra essere: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Rileva automaticamente la lingua di ricerca" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" +#~ "Rileva automaticamente la lingua di " +#~ "ricerca della query e passa ad " +#~ "essa." diff --git a/searx/translations/ja/LC_MESSAGES/messages.mo b/searx/translations/ja/LC_MESSAGES/messages.mo index f7edf40fc..372b1f0bc 100644 Binary files a/searx/translations/ja/LC_MESSAGES/messages.mo and b/searx/translations/ja/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ja/LC_MESSAGES/messages.po b/searx/translations/ja/LC_MESSAGES/messages.po index 4646a0780..5b77b8e65 100644 --- a/searx/translations/ja/LC_MESSAGES/messages.po +++ b/searx/translations/ja/LC_MESSAGES/messages.po @@ -14,21 +14,22 @@ # Thomas Pointhuber, 2015-2016 # tents , 2022. # Markus Heiser , 2022. +# tentsbet , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-18 19:54+0000\n" -"Last-Translator: tents \n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-27 12:08+0000\n" +"Last-Translator: tentsbet \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -208,40 +209,40 @@ msgstr "アクセスが拒否されました" msgid "server API error" msgstr "サーバー API エラー" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "アイテムが見つかりません" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "ソース" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "次のページの読み込み中にエラーが発生しました" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "設定が無効です、設定を変更してください" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "無効な設定です" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "検索エラー" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "一時停止" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} 分前" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} 時間と{minutes} 分前" @@ -318,14 +319,6 @@ msgstr "夕方" msgid "Night" msgstr "夜間" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "検索言語自動検出" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "検索言語の自動検出と切り替えを実施。" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "文字列を異なるハッシュダイジェストに変換。" @@ -378,25 +371,25 @@ msgstr "Tor 確認プラグイン" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." -msgstr "" -"このプラグインはsearxngからTOR exit node " -"にアドレスを要求したとき、check.torproject.orgサイトのように、ユーザーに通知します。" +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." +msgstr "このプラグインではcheck.torprogject.orgのようにTor 出口ノードのIPアドレスをSearXNGからチェックする。" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." -msgstr "TOR exit node のリスト(https://check.torproject.org/exit-addresses)に到達できません。" +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" +msgstr "「https://check.torproject.org/exit-addresses」からTor 出口ノードの一覧をダウンロードできません" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "TORを利用しています。あなたのIPアドレスはここから来ていると思われます : {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "あなたの利用しているTorの外部IPアドレスは次のようになっている : {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "TORを利用していません。あなたのIPアドレスはここから来ていると思われます: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "あなたはTorを利用しておらず外部IPアドレスは次のようになっている : {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -571,15 +564,24 @@ msgstr "検索の言語" msgid "Default language" msgstr "デフォルトの言語" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "自動検出" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "どの言語で検索しますか?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "あなたのクエリーの言語をSearXNGは自動的に検出するように選択する。" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "自動補完" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "自動補完に使う検索エンジン" @@ -587,121 +589,121 @@ msgstr "自動補完に使う検索エンジン" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "セーフサーチ" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "厳重" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "標準" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "オフ" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "コンテンツをフィルタリングする" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "オープンアクセス DOI リゾルバー" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "利用可能な場合(プラグインが必要)、オープンアクセス版の出版物にリダイレクトする" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "エンジントークン" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "ブライベートエンジンのアクセストークン" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "ユーザーインターフェース" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "インターフェースの言語" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "表示する言語を変更" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "テーマ" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "SearXNGレイアウトの変更" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "テーマスタイル" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "「自動」を選択すると、ブラウザの設定に従います" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "中央揃え" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "有効" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "無効" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "中央揃えでページに結果表示(Oscar レイアウト)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "新しいタブに結果を表示" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "検索結果のリンクを新しいタブで開く" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "無限スクロール" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "現在のページの下端でスクロールすると自動的に次のページを読み込む" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "プライバシー" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTPメソッド" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, リクエストメソッドってなに?" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "画像プロキシ" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "有効" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "無効" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "画像の結果をSearXNG経由でプロキシする" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "ページのタイトルでクエリを実行する" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "有効にすると、検索結果ページのタイトルにクエリが含まれます。お使いのブラウザはこのタイトルを記録できます" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "検索エンジン" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "現在使用中の検索エンジン" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "このタブは検索結果には表示されませんが、ここにリストされているエンジンをbangで検索できます。" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "許可する" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "検索エンジン名" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "ショートカット" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "選択された言語のサポート" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "時間範囲" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "応答時間" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "最大時間" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "信頼性" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "特殊クエリー" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "キーワード" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "名前" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "説明" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "例" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "これは SearXNG の即席回答モジュールのリストです。" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "これはプラグインのリストです。" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "クッキー" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "これはクッキーのリストで、これらの値はあなたのコンピュータに保存されています。" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "このリストによって、あなたは SearXNG の透明性を評価できます。" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "クッキー名" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "値" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "現在保存されている設定の検索 URL" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "注意: 検索 URL にカスタム設定を指定すると、クリックした結果サイトにデータが漏洩し、プライバシーが低下する恐れがあります。" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "このURLで違うブラウザに設定を復活" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "初期設定URLを使うことで、特別な設定をデバイスをまたいで同期できる。" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "これらの設定はあなたのクッキーに保存されますが、これはサーバーがあなたの情報の保存するわけではありません。" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "クッキーはあなたが便利に使えるようにするために使うのであって、サーバーはあなたを追跡するためにクッキーを使うことはありません。" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "保存" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "デフォルト設定に戻す" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "戻る" @@ -1461,3 +1463,48 @@ msgstr "動画を隠す" #~ "フォームの送信方法を変更します。リクエストメソッドってなに?" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "このプラグインはsearxngからTOR exit node " +#~ "にアドレスを要求したとき、check.torproject.orgサイトのように、ユーザーに通知します。" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "TOR exit node のリスト(https://check.torproject.org" +#~ "/exit-addresses)に到達できません。" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "TORを利用しています。あなたのIPアドレスはここから来ていると思われます : {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "TORを利用していません。あなたのIPアドレスはここから来ていると思われます: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "検索言語自動検出" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "検索言語の自動検出と切り替えを実施。" diff --git a/searx/translations/ko/LC_MESSAGES/messages.mo b/searx/translations/ko/LC_MESSAGES/messages.mo index b9e9268e2..81a1f0323 100644 Binary files a/searx/translations/ko/LC_MESSAGES/messages.mo and b/searx/translations/ko/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ko/LC_MESSAGES/messages.po b/searx/translations/ko/LC_MESSAGES/messages.po index b2a698955..d5bec0daa 100644 --- a/searx/translations/ko/LC_MESSAGES/messages.po +++ b/searx/translations/ko/LC_MESSAGES/messages.po @@ -5,20 +5,22 @@ # Markus Heiser , 2022. # Sangha Lee , 2022. # Soochaehwa , 2022. +# mystery-z <07juwonc@kakao.com>, 2023. msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-09-30 07:43+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-03 07:08+0000\n" +"Last-Translator: mystery-z <07juwonc@kakao.com>\n" +"Language-Team: Korean \n" "Language: ko\n" -"Language-Team: Korean " -"\n" -"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -164,7 +166,7 @@ msgstr "네트워크 오류" #: searx/webapp.py:169 msgid "SSL error: certificate validation has failed" -msgstr "" +msgstr "SSL 에러: 인증서 무효" #: searx/webapp.py:171 msgid "unexpected crash" @@ -198,40 +200,40 @@ msgstr "액세스 거부" msgid "server API error" msgstr "서버 API 오류" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "검색 결과가 없습니다" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "소스" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "다음 페이지를 로드하는 동안 오류가 발생했습니다" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "잘못된 설정입니다, 설정을 수정하세요" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "잘못된 설정" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "검색 오류" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "중단됨" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes}분 전" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours}시간 {minutes}분 전" @@ -312,14 +314,6 @@ msgstr "저녁" msgid "Night" msgstr "밤" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "문자열을 다른 해시 다이제스트 값으로 변환합니다." @@ -372,25 +366,29 @@ msgstr "Tor 검사 플러그인" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"이 플러그인은 요청한 주소가 TOR 출구 노드인지 확인하고 사용자에게 알려줍니다, check.torproject.org 와 " -"비슷하지만 searxng 에서 제공됩니다." +"이 플러그인은 요청의 주소가 토르 출구 노드 인지 확인하고 사용자에게 " +"check.torproject.org와 같이 SearchXNG의 주소인지 알려줍니다." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." -msgstr "TOR 출구 노드 목록(https://check.torproject.org/exit-addresses)에 연결할 수 없습니다." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" +msgstr "" +"https://check.torproject.org/exit-addresses 에서 토르 출구 노드를 다운로드 " +"받는데 실패하였습니다" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "TOR 를 사용하고 있습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "Tor를 사용하고 있고 외부 IP 주소는 {ip_address} 입니다" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "TOR 를 사용하고 있지 않습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Tor를 사용하고 있지 않고 외부 IP 주소가 {ip_address}인 것 같습니다" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -565,15 +563,24 @@ msgstr "검색 언어" msgid "Default language" msgstr "기본 언어" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "자동 감지" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "어떤 언어로 검색하시겠습니까?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "SearXNG가 검색 언어를 자동감지 할 수 있도록 자동감지를 선택해 주세요." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "자동 완성" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "입력하는 대로 찾으세요" @@ -581,121 +588,121 @@ msgstr "입력하는 대로 찾으세요" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "세이프서치" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "엄격" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "보통" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "없음" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "콘텐츠 필터링" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "오픈 엑세스 DOI 리졸버" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "가능 하면 오픈 엑세스 출판물로 넘겨주기 (플러그인 필요함)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "엔진토큰" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "사유 검색 엔진 엑세스 토큰" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "사용자 인터페이스" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "인터페이스 언어" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "레이아웃 언어 변경" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "테마" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "SearXNG 레이아웃 변경" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "테마 스타일" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "'자동'을 선택하면 브라우저 기본설정에 맞춥니다" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "중앙 정렬" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "사용" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "사용안함" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "페이지 중앙에 결과 표시하기 (Oscar 레이아웃)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "새 탭에서 결과 열기" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "새 탭에서 결과 링크를 엽니다" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "무한 스크롤" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "현재 페이지 하단까지 스크롤 했을 때 자동으로 다음 페이지 불러오기" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "개인정보 보호" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP 메소드" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, 요청 메소드에 대해 더 알아보기" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "이미지 우회" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "활성화됨" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "비활성화됨" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "SearXNG를 통해 이미지 결과 우회" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "페이지 제목에 검색어 표시" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "활성화 할 경우, 결과 페이지 제목에 검색어가 표시 됩니다. 페이지 제목은 브라우저가 기록할 수 있습니다" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "검색엔진" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "현재 사용중인 검색 엔진" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "이 탭은 검색 결과에서 표시 되지 않으나, 느낌표을 입력하여 아래의 엔진으로 검색할 수 있습니다." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "허용" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "검색엔진 이름" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "단축 키 워드" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "선택 언어 지원함" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "기간" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "응답시간" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "최대시간" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "신뢰성" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "특수 쿼리" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "키워드" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "이름" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "설명" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "예시" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "SearXNG의 즉각응답 모듈 목록입니다." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "플러그인 목록입니다." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "쿠키" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "SearXNG이 컴퓨터에 저장하는 쿠키 목록입니다." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "이 목록으로 SearXNG의 투명성을 판단할 수 있습니다." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "쿠키 이름" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "값" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "현재 설정이 적용된 검색 URL" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "검색 URL에 사용자 설정을 명시하면 결과 사이트에 데이터가 유출되어 사생활 보호가 약해질 수 있습니다." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "다른 브라우저에서 설정을 복구하기 위한 URL" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "특정 설정이 들어간 URL은 장치 간에 설정을 동기화 하는데 사용할 수 있습니다." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "설정은 쿠키에 저장 되기 때문에 서버측에서 설정 관련 사용자 정보를 저장하는 것은 불가능합니다." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "이 쿠키는 오직 편의를 위해 쓰이며, 추적에 이용하지 않습니다." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "저장" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "기본값 복원" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "뒤로" @@ -944,7 +951,7 @@ msgstr "검색" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "데이터가 존재하지 않습니다." +msgstr "데이터가 존재하지 않습니다. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1335,3 +1342,46 @@ msgstr "비디오 숨기기" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">요청 메소드에 대해 더 알아보기" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "이 플러그인은 요청한 주소가 TOR 출구 노드인지 " +#~ "확인하고 사용자에게 알려줍니다, check.torproject.org 와 " +#~ "비슷하지만 searxng 에서 제공됩니다." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "TOR 출구 노드 목록(https://check.torproject.org/exit-addresses)에 연결할 수 없습니다." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "TOR 를 사용하고 있습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "TOR 를 사용하고 있지 않습니다. 당신의 아이피 주소는 다음과 같습니다: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" diff --git a/searx/translations/lt/LC_MESSAGES/messages.mo b/searx/translations/lt/LC_MESSAGES/messages.mo index f245e79f3..d2edb6e85 100644 Binary files a/searx/translations/lt/LC_MESSAGES/messages.mo and b/searx/translations/lt/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/lt/LC_MESSAGES/messages.po b/searx/translations/lt/LC_MESSAGES/messages.po index 76a90f022..5bb8d986f 100644 --- a/searx/translations/lt/LC_MESSAGES/messages.po +++ b/searx/translations/lt/LC_MESSAGES/messages.po @@ -5,16 +5,17 @@ # Translators: # Moo, 2019-2020 # John Doe , 2022. +# Mooo , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-07-13 15:40+0000\n" -"Last-Translator: John Doe \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-02 01:47+0000\n" +"Last-Translator: Mooo \n" "Language: lt\n" "Language-Team: Lithuanian " -"\n" +"\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100" " < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < " "11) ? 1 : n % 1 != 0 ? 2: 3);\n" @@ -131,7 +132,7 @@ msgstr "internetas" #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS'] #: searx/searxng.msg msgid "scientific publications" -msgstr "" +msgstr "mokslinės publikacijos" #. STYLE_NAMES['AUTO'] #: searx/searxng.msg @@ -166,7 +167,7 @@ msgstr "tinklo klaida" #: searx/webapp.py:169 msgid "SSL error: certificate validation has failed" -msgstr "" +msgstr "SSL klaida: liudijimo tikrinimas patyrė nesėkmę" #: searx/webapp.py:171 msgid "unexpected crash" @@ -200,40 +201,40 @@ msgstr "prieiga uždrausta" msgid "server API error" msgstr "serverio API klaida" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Elementų nerasta" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Šaltinis" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Klaida keliant kitą puslapį" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Neteisingi nustatymai, pakeiskite savo nuostatas" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Neteisingi nustatymai" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "paieškos klaida" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Sustabdytas" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "prieš {minutes} min" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "prieš {hours} val., {minutes} min" @@ -294,27 +295,19 @@ msgstr "" #: searx/engines/wttr.py:101 msgid "Morning" -msgstr "" +msgstr "Rytas" #: searx/engines/wttr.py:101 msgid "Noon" -msgstr "" +msgstr "Vidurdienis" #: searx/engines/wttr.py:101 msgid "Evening" -msgstr "" +msgstr "Vakaras" #: searx/engines/wttr.py:101 msgid "Night" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" +msgstr "Naktis" #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." @@ -376,22 +369,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -569,15 +564,24 @@ msgstr "Paieškos kalba" msgid "Default language" msgstr "Numatytoji kalba" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Kokią kalbą pageidaujate paieškai?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automatinis užbaigimas" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Rasti medžiagą berašant" @@ -585,35 +589,35 @@ msgstr "Rasti medžiagą berašant" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Saugi paieška" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Griežta" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Nuosaiki" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Nėra" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtruoti turinį" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Atvirosios prieigos DOI sprendimų įtaisas" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -621,116 +625,116 @@ msgstr "" "Kai įmanoma, peradresuoti į atvirojoje prieigoje esančias publikacijų " "versijas (reikalingas papildinys)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Sistemos prieigos raktai" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Privačiųjų sistemų prieigos raktai" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Naudotojo sąsaja" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Sąsajos kalba" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Keisti išdėstymo kalbą" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Pakeiskite SearXNG išdėstymą" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Temos stilius" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Pasirinkite automatini, kad sektumėte jūsų naršyklės nustatymus" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Centro Išdėstymas" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Įjungta" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Išjungta" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Rodo rezultatus puslapio viduryje (Oskaro išdėstymas)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Rezultatai naujose skirtukuose" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Atverti rezultatų nuorodas naujose naršyklės skirtukuose" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Begalinis slinkimas" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Automatiškai įkelti kitą puslapį, kai nuslenkama į esamo puslapio apačią" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privatumas" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Metodas" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Paveikslų persiuntimas" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Įjungtas" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Išjungtas" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Persiunčiami paveikslai per SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Užklausa puslapio pavadinime" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -738,15 +742,15 @@ msgstr "" "Įjungus, prie rezultatų puslapio pavadinimo pridedama jūsų užklausa. Jūsų" " naršykle gali šį pavadinimą įrašyti" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Sistemos" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Šiuo metu naudojamos paieškos sistemos" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -754,77 +758,77 @@ msgstr "" "Šis skirtukas nepasirodo ieškojimo rezultastuose, bet jūs galite ieškoti " "sistemas saraše naudojant trumpinius." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Leisti" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Sistemos pavadinimas" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Trumpinys" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Palaiko pasirinktą kalbą" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Laiko diapazonas" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Atsakymo greitis" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maksimalus laikas" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Patikimumas" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Specialios Užklausos" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Raktažodžiai" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Pavadinimas" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Aprašas" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Pavyzdžiai" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 #, fuzzy msgid "This is the list of SearXNG's instant answering modules." msgstr "Šis sąrašas yra SearXNG" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Čia yra papildinių sąrašas." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Slapukai" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -832,23 +836,23 @@ msgstr "" "Čia yra slapukų sąrašas ir jų informacija, kurią SearXNG saugo jūsų " "kompiuterije." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Su šiuo sąrašu, jūs gaunate prieiga prie SearXNG permatomumą." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Slapuko pavadinimas" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Reikšmė" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Šiuo metu įrašytų nuostatų paieškos URL" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -857,11 +861,11 @@ msgstr "" "sumažintas jūsų privatumas, atskleidžiant duomenis toms rezultatų " "svetainėms, ant kurių spustelėjate." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL, kad galėtumėte atstatyti savo nuostatas kitoje naršyklėje" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -869,7 +873,7 @@ msgstr "" "Nurodant tinkintus nustatymus nuostatų URL, jūs galite susinchronizuoti " "nuostatas tarp prietaisų." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -877,7 +881,7 @@ msgstr "" "Šie nustatymai yra laikomi jūsų slapukuose, tai leidžia mums nesaugoti " "šių duomenų apie jus." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -885,15 +889,15 @@ msgstr "" "Šie slapukai yra naudojami išskirtinai jūsų patogumui, mes nenaudojame " "jų, kad jus sektume." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Išsaugoti" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Atstatyti numatytasias nuostatas" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Atgal" @@ -1120,23 +1124,23 @@ msgstr "slėpti žemėlapį" #: searx/templates/simple/result_templates/paper.html:5 msgid "Published date" -msgstr "" +msgstr "Paskelbimo data" #: searx/templates/simple/result_templates/paper.html:9 msgid "Journal" -msgstr "" +msgstr "Žurnalas" #: searx/templates/simple/result_templates/paper.html:22 msgid "Editor" -msgstr "" +msgstr "Redaktorius" #: searx/templates/simple/result_templates/paper.html:23 msgid "Publisher" -msgstr "" +msgstr "Leidėjas" #: searx/templates/simple/result_templates/paper.html:24 msgid "Type" -msgstr "" +msgstr "Tipas" #: searx/templates/simple/result_templates/paper.html:25 msgid "Tags" @@ -1485,3 +1489,44 @@ msgstr "slėpti vaizdo įrašą" #~ " rel=\"external\">sužinokite daugiau apie " #~ "užklausos metodus" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Automatiškai aptikti paieškos kalbą" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Automatiškai aptikti paieškos užklausos kalbą ir perjungti į ją." + diff --git a/searx/translations/lv/LC_MESSAGES/messages.mo b/searx/translations/lv/LC_MESSAGES/messages.mo index 674d3e00a..097080692 100644 Binary files a/searx/translations/lv/LC_MESSAGES/messages.mo and b/searx/translations/lv/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/lv/LC_MESSAGES/messages.po b/searx/translations/lv/LC_MESSAGES/messages.po index 54c01fb5e..cc12a9146 100644 --- a/searx/translations/lv/LC_MESSAGES/messages.po +++ b/searx/translations/lv/LC_MESSAGES/messages.po @@ -9,18 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2023-01-06 07:14+0000\n" "Last-Translator: wldkwl \n" -"Language-Team: Latvian \n" "Language: lv\n" +"Language-Team: Latvian " +"\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100" +" <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= " -"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -200,40 +199,40 @@ msgstr "piekļuve aizliegta" msgid "server API error" msgstr "servera API kļūda" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nav atrasts neviens vienums" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Avots" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Kļūda lādējot nākošo lapu" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Nepareizi iestatījumi, lūdzu rediģējiet savas preferences" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Nederīgi iestatījumi" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "meklēšanas kļūda" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Apturēts" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "pirms {minutes} minūtes(-ēm)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "pirms {hours} stundas(-ām) un {minutes} minūtēm(-es)" @@ -310,14 +309,6 @@ msgstr "Vakara" msgid "Night" msgstr "Nakts" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Pārvērš virknes (strings) par dažādiem jaucējkoda īssavilkumiem." @@ -372,23 +363,25 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Jūs izlieto TOR. Jūsu IP adrese šķist būtu: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Jūs neizlieto TOR. Jūsu IP adrese šķist būtu: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -563,15 +556,24 @@ msgstr "Meklēšanas valoda" msgid "Default language" msgstr "" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Kādai valodai dodat priekšroku priekš meklēšanas?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automātiskā pabeigšana" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Atrast lietas rakstīšanas laikā" @@ -579,261 +581,261 @@ msgstr "Atrast lietas rakstīšanas laikā" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Stingrs" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Neviens" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Lietotāja saskarne" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Izkārtojuma valodas maiņa" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tēma" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Mainīt SearXNG izkārtojumu" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Tēmas stils" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Izvēlies auto, lai sekotu saviem pārluka iestatījumiem" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Centra līdzinājums" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ieslēgts" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Izslēgts" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Parāda rezultātus lapas centrā (Oskara izkārtojums)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Rezultāti jaunās cilnēs" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Atvērt rezultātu saites jaunās pārlūka cilnēs" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Bezgalīgā ritināšana" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Automātiski ielādēt nākamo lappusi, ritinot uz pašreizējās lappuses beigām" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privātums" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Metode" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Attēla starpniekserveris" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Iespējots" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Atspējots" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Dzinēji" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Pašlaik izmantotās meklētājprogrammas" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Atļaut" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Saīsne" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Atbalsta atlasīto valodu" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Laika diapazons" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Atbildes laiks" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maksimālais laiks" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Atslēgvārdi" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Vārds" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Apraksts" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Piemēri" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Šis ir SearXNG tūlītējās atbildēšanas moduļu saraksts." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Šis ir spraudņu saraksts." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Izmantojot šo sarakstu, var novērtēt SearXNG pārredzamību." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Vērtība" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Pašlaik saglabāto preferenču meklēšanas URL" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -842,37 +844,37 @@ msgstr "" "konfidencialitāti (privātumu), izplūstot datiem uz rezultātu vietnēm, uz " "kurām tika noklikšķināts." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL, lai atjaunotu savas preferences citā pārlūkprogrammā" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1223,3 +1225,45 @@ msgstr "slēpt video" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">uzzināt vairāk par pieprasījuma" #~ " metodēm" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Jūs izlieto TOR. Jūsu IP adrese šķist būtu: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Jūs neizlieto TOR. Jūsu IP adrese šķist būtu: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/messages.pot b/searx/translations/messages.pot index a3b0477d1..976bc8652 100644 --- a/searx/translations/messages.pot +++ b/searx/translations/messages.pot @@ -1,14 +1,14 @@ # Translations template for PROJECT. -# Copyright (C) 2022 ORGANIZATION +# Copyright (C) 2023 ORGANIZATION # This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2022. +# FIRST AUTHOR , 2023. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -194,40 +194,40 @@ msgstr "" msgid "server API error" msgstr "" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "" @@ -302,14 +302,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -362,22 +354,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -551,15 +545,24 @@ msgstr "" msgid "Default language" msgstr "" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "" @@ -567,297 +570,297 @@ msgstr "" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" diff --git a/searx/translations/ms/LC_MESSAGES/messages.mo b/searx/translations/ms/LC_MESSAGES/messages.mo index 72d9c9d53..c6bef8106 100644 Binary files a/searx/translations/ms/LC_MESSAGES/messages.mo and b/searx/translations/ms/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ms/LC_MESSAGES/messages.po b/searx/translations/ms/LC_MESSAGES/messages.po index 4647451e4..3127a635e 100644 --- a/searx/translations/ms/LC_MESSAGES/messages.po +++ b/searx/translations/ms/LC_MESSAGES/messages.po @@ -5,20 +5,22 @@ # niele2 , 2022. # Markus Heiser , 2022. # Zaid Aiman , 2022. +# chenghui-lee , 2023. msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-10-28 07:18+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-21 17:37+0000\n" +"Last-Translator: chenghui-lee \n" +"Language-Team: Malay \n" "Language: ms\n" -"Language-Team: Malay " -"\n" -"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.16.4\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -198,40 +200,40 @@ msgstr "akses dinafikan" msgid "server API error" msgstr "ralat API pelayan" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "barang tidak dijumpai" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Punca" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Gagal memuat turun muka seterusnya" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Kesilapan tetapan, sila ubahsuai pilihan" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Tetapan tidak sah" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "ralat pencarian" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Digantung" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minit} minit yang lalu" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{jam} jam, {minit} minit yang lalu" @@ -279,6 +281,9 @@ msgid "" "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or" " WebP." msgstr "" +"Tidak boleh mengakses pautan imeg. Ini boleh disebabkan oleh format file " +"yang tidak disokong. TinEye hanya menyokong imeg yang dalam format JPEG, " +"PNG, GIF, BMP, TIFF atau WebP." #: searx/engines/tineye.py:46 msgid "" @@ -306,14 +311,6 @@ msgstr "Petang" msgid "Night" msgstr "Malam" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Ubah rentetan kepada \"hash digest\" yang berbeza." @@ -359,13 +356,15 @@ msgstr "" #: searx/plugins/self_info.py:20 msgid "Self Information" -msgstr "" +msgstr "Maklumat Diri" #: searx/plugins/self_info.py:21 msgid "" "Displays your IP if the query is \"ip\" and your user agent if the query " "contains \"user agent\"." msgstr "" +"Memaparkan IP anda jika pertanyaan ialah \"ip\" dan ejen pengguna anda jika " +"pertanyaan mengandungi \"user agent\"." #: searx/plugins/tor_check.py:25 msgid "Tor check plugin" @@ -373,22 +372,28 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" +"Tidak dapat memuat turun senarai nod keluar Tor dari: https://check." +"torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" +"Anda sedang menggunakan Tor dan nampaknya anda mempunyai alamat IP luaran " +"ini: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -411,7 +416,7 @@ msgstr "" #: searx/templates/simple/404.html:4 msgid "Page not found" -msgstr "" +msgstr "Laman tidak dapat dijumpai" #: searx/templates/simple/404.html:6 #, python-format @@ -420,15 +425,15 @@ msgstr "" #: searx/templates/simple/404.html:6 msgid "search page" -msgstr "" +msgstr "Laman carian" #: searx/templates/simple/base.html:46 msgid "About" -msgstr "" +msgstr "Tentang" #: searx/templates/simple/base.html:50 msgid "Donate" -msgstr "" +msgstr "Derma" #: searx/templates/simple/base.html:54 #: searx/templates/simple/preferences.html:99 @@ -445,7 +450,7 @@ msgstr "" #: searx/templates/simple/base.html:65 msgid "Source code" -msgstr "" +msgstr "Kod sumber" #: searx/templates/simple/base.html:66 msgid "Issue tracker" @@ -453,7 +458,7 @@ msgstr "" #: searx/templates/simple/base.html:67 searx/templates/simple/stats.html:18 msgid "Engine stats" -msgstr "" +msgstr "Statistik enjin" #: searx/templates/simple/base.html:69 #: searx/templates/simple/messages/no_results.html:15 @@ -512,7 +517,7 @@ msgstr "" #: searx/templates/simple/preferences.html:29 msgid "No HTTPS" -msgstr "" +msgstr "Tanpa HTTPS" #: searx/templates/simple/messages/no_results.html:10 #: searx/templates/simple/preferences.html:31 @@ -546,7 +551,7 @@ msgstr "" #: searx/templates/simple/preferences.html:105 msgid "General" -msgstr "" +msgstr "Umum" #: searx/templates/simple/preferences.html:108 msgid "Default categories" @@ -562,15 +567,24 @@ msgstr "" msgid "Default language" msgstr "" -#: searx/templates/simple/preferences.html:124 -msgid "What language do you prefer for search?" +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" msgstr "" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "What language do you prefer for search?" +msgstr "Bahasa apa yang anda suka untuk membuat carian?" + +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "" @@ -578,299 +592,303 @@ msgstr "" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" -msgstr "" +msgstr "Ketat" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" -msgstr "" +msgstr "Sederhana" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 -msgid "None" -msgstr "" - #: searx/templates/simple/preferences.html:151 -msgid "Filter content" -msgstr "" +msgid "None" +msgstr "Tanpa" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:154 +msgid "Filter content" +msgstr "Tapis kandungan" + +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" -msgstr "" +msgstr "Token enjin" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" -msgstr "" +msgstr "Akses token untuk enjin persendirian" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" -msgstr "" +msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" -msgstr "" +msgstr "Gaya tema" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" -msgstr "" - -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 -msgid "Off" -msgstr "" +msgstr "Buka" #: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 +msgid "Off" +msgstr "Tutup" + +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" -#: searx/templates/simple/preferences.html:254 -msgid "Privacy" -msgstr "" - #: searx/templates/simple/preferences.html:257 -msgid "HTTP Method" -msgstr "" +msgid "Privacy" +msgstr "Privasi" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:260 +msgid "HTTP Method" +msgstr "Kaedah HTTP" + +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" - -#: searx/templates/simple/preferences.html:269 -msgid "Image proxy" -msgstr "" +"Ubah cara borang diserahkan,ketahui lebih " +"lanjut tentang kaedah permintaan" #: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +msgid "Image proxy" +msgstr "Proksi imej" + +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" -msgstr "" +msgstr "Enjin-enjin" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" -msgstr "" +msgstr "Enjin carian yang digunakan pada masa ini" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" -msgstr "" +msgstr "Benarkan" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" -msgstr "" +msgstr "Nama enjin" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" -msgstr "" +msgstr "Masa tindak balas" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" -msgstr "" +msgstr "Masa maksimum" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" -msgstr "" +msgstr "Kebolehpercayaan" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" -msgstr "" - -#: searx/templates/simple/preferences.html:359 -msgid "Keywords" -msgstr "" - -#: searx/templates/simple/preferences.html:360 -msgid "Name" -msgstr "" - -#: searx/templates/simple/preferences.html:361 -msgid "Description" -msgstr "" +msgstr "Pertanyaan Khas" #: searx/templates/simple/preferences.html:362 -msgid "Examples" -msgstr "" +msgid "Keywords" +msgstr "Kata kunci" + +#: searx/templates/simple/preferences.html:363 +msgid "Name" +msgstr "Nama" + +#: searx/templates/simple/preferences.html:364 +msgid "Description" +msgstr "Deskripsi" #: searx/templates/simple/preferences.html:365 +msgid "Examples" +msgstr "Contoh-contoh" + +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 +#, fuzzy msgid "With that list, you can assess SearXNG transparency." -msgstr "" +msgstr "Dengan senarai ini, anda boleh menilai ketelusan SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" -msgstr "" +msgstr "Nilai" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" -msgstr "" +msgstr "URL untuk memulihkan pilihan anda dalam pelayar lain" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" -msgstr "" +msgstr "Simpan" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" -msgstr "" +msgstr "Balik" #: searx/templates/simple/results.html:23 msgid "Answers" @@ -878,7 +896,7 @@ msgstr "" #: searx/templates/simple/results.html:39 msgid "Number of results" -msgstr "" +msgstr "Bilangan keputusan" #: searx/templates/simple/messages/no_results.html:6 #: searx/templates/simple/results.html:46 @@ -891,7 +909,7 @@ msgstr "" #: searx/templates/simple/results.html:68 msgid "Suggestions" -msgstr "" +msgstr "Cadangan" #: searx/templates/simple/results.html:90 msgid "Search URL" @@ -903,23 +921,23 @@ msgstr "" #: searx/templates/simple/results.html:120 msgid "Try searching for:" -msgstr "" +msgstr "Cuba cari:" #: searx/templates/simple/results.html:152 msgid "Back to top" -msgstr "" +msgstr "Balik ke atas" #: searx/templates/simple/results.html:170 msgid "Previous page" -msgstr "" +msgstr "Halaman sebelumnya" #: searx/templates/simple/results.html:187 msgid "Next page" -msgstr "" +msgstr "Halaman seterusnya" #: searx/templates/simple/search.html:3 msgid "Display the front page" -msgstr "" +msgstr "Paparkan muka depan" #: searx/templates/simple/search.html:9 #: searx/templates/simple/simple_search.html:5 @@ -938,7 +956,7 @@ msgstr "" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "" +msgstr "Pada masa ini tiada data tersedia. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -950,19 +968,19 @@ msgstr "" #: searx/templates/simple/stats.html:59 msgid "Total" -msgstr "" +msgstr "Jumlah" #: searx/templates/simple/stats.html:60 msgid "HTTP" -msgstr "" +msgstr "HTTP" #: searx/templates/simple/stats.html:61 msgid "Processing" -msgstr "" +msgstr "Sedang memproses" #: searx/templates/simple/stats.html:99 msgid "Warnings" -msgstr "" +msgstr "Amaran" #: searx/templates/simple/stats.html:99 msgid "Errors and exceptions" @@ -974,11 +992,11 @@ msgstr "" #: searx/templates/simple/stats.html:107 msgid "Message" -msgstr "" +msgstr "Mesej" #: searx/templates/simple/stats.html:109 msgid "Percentage" -msgstr "" +msgstr "Peratus" #: searx/templates/simple/stats.html:111 msgid "Parameter" @@ -986,15 +1004,15 @@ msgstr "" #: searx/templates/simple/stats.html:119 msgid "Filename" -msgstr "" +msgstr "Nama fail" #: searx/templates/simple/stats.html:120 msgid "Function" -msgstr "" +msgstr "Fungsi" #: searx/templates/simple/stats.html:121 msgid "Code" -msgstr "" +msgstr "Kod" #: searx/templates/simple/stats.html:128 msgid "Checker" @@ -1006,31 +1024,31 @@ msgstr "" #: searx/templates/simple/stats.html:132 msgid "Comment(s)" -msgstr "" +msgstr "Ulasan" #: searx/templates/simple/filters/time_range.html:3 msgid "Anytime" -msgstr "" +msgstr "Bila-bila masa" #: searx/templates/simple/filters/time_range.html:6 msgid "Last day" -msgstr "" +msgstr "Dalam 24 jam" #: searx/templates/simple/filters/time_range.html:9 msgid "Last week" -msgstr "" +msgstr "Dalam 1 minggu" #: searx/templates/simple/filters/time_range.html:12 msgid "Last month" -msgstr "" +msgstr "Dalam 1 bulan" #: searx/templates/simple/filters/time_range.html:15 msgid "Last year" -msgstr "" +msgstr "Dalam 1 tahun" #: searx/templates/simple/messages/no_cookies.html:3 msgid "Information!" -msgstr "" +msgstr "Informasi!" #: searx/templates/simple/messages/no_cookies.html:4 msgid "currently, there are no cookies defined." @@ -1046,7 +1064,7 @@ msgstr "" #: searx/templates/simple/messages/no_results.html:20 msgid "Sorry!" -msgstr "" +msgstr "Harap maaf!" #: searx/templates/simple/messages/no_results.html:21 msgid "" @@ -1056,24 +1074,24 @@ msgstr "" #: searx/templates/simple/result_templates/default.html:6 msgid "show media" -msgstr "" +msgstr "tunjuk media" #: searx/templates/simple/result_templates/default.html:6 msgid "hide media" -msgstr "" +msgstr "sembunyikan media" #: searx/templates/simple/result_templates/default.html:14 #: searx/templates/simple/result_templates/videos.html:14 msgid "This site did not provide any description." -msgstr "" +msgstr "Laman web ini tidak memberikan sebarang diskripsi." #: searx/templates/simple/result_templates/images.html:19 msgid "Format" -msgstr "" +msgstr "Format" #: searx/templates/simple/result_templates/images.html:21 msgid "Engine" -msgstr "" +msgstr "Enjin" #: searx/templates/simple/result_templates/images.html:22 msgid "View source" @@ -1081,19 +1099,19 @@ msgstr "" #: searx/templates/simple/result_templates/map.html:12 msgid "address" -msgstr "" +msgstr "alamat" #: searx/templates/simple/result_templates/map.html:43 msgid "show map" -msgstr "" +msgstr "tunjuk peta" #: searx/templates/simple/result_templates/map.html:43 msgid "hide map" -msgstr "" +msgstr "sembunyikan peta" #: searx/templates/simple/result_templates/paper.html:5 msgid "Published date" -msgstr "" +msgstr "Tarikh diterbitkan" #: searx/templates/simple/result_templates/paper.html:9 msgid "Journal" @@ -1113,31 +1131,31 @@ msgstr "" #: searx/templates/simple/result_templates/paper.html:25 msgid "Tags" -msgstr "" +msgstr "Tag" #: searx/templates/simple/result_templates/paper.html:26 msgid "DOI" -msgstr "" +msgstr "DOI" #: searx/templates/simple/result_templates/paper.html:27 msgid "ISSN" -msgstr "" +msgstr "ISSN" #: searx/templates/simple/result_templates/paper.html:28 msgid "ISBN" -msgstr "" +msgstr "ISBN" #: searx/templates/simple/result_templates/paper.html:33 msgid "PDF" -msgstr "" +msgstr "PDF" #: searx/templates/simple/result_templates/paper.html:34 msgid "HTML" -msgstr "" +msgstr "HTML" #: searx/templates/simple/result_templates/torrent.html:6 msgid "magnet link" -msgstr "" +msgstr "pautan magnet" #: searx/templates/simple/result_templates/torrent.html:7 msgid "torrent file" @@ -1153,7 +1171,7 @@ msgstr "" #: searx/templates/simple/result_templates/torrent.html:11 msgid "Filesize" -msgstr "" +msgstr "Saiz fail" #: searx/templates/simple/result_templates/torrent.html:12 msgid "Bytes" @@ -1161,19 +1179,19 @@ msgstr "" #: searx/templates/simple/result_templates/torrent.html:13 msgid "kiB" -msgstr "" +msgstr "kiB" #: searx/templates/simple/result_templates/torrent.html:14 msgid "MiB" -msgstr "" +msgstr "MiB" #: searx/templates/simple/result_templates/torrent.html:15 msgid "GiB" -msgstr "" +msgstr "GiB" #: searx/templates/simple/result_templates/torrent.html:16 msgid "TiB" -msgstr "" +msgstr "TiB" #: searx/templates/simple/result_templates/torrent.html:20 msgid "Number of Files" @@ -1206,3 +1224,43 @@ msgstr "sembunyikkan video" #~ "methods" #~ msgstr "" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" diff --git a/searx/translations/nb_NO/LC_MESSAGES/messages.mo b/searx/translations/nb_NO/LC_MESSAGES/messages.mo index e84cb9ace..2e38949d1 100644 Binary files a/searx/translations/nb_NO/LC_MESSAGES/messages.mo and b/searx/translations/nb_NO/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/nb_NO/LC_MESSAGES/messages.po b/searx/translations/nb_NO/LC_MESSAGES/messages.po index 5fe3c05a4..5e18b8a06 100644 --- a/searx/translations/nb_NO/LC_MESSAGES/messages.po +++ b/searx/translations/nb_NO/LC_MESSAGES/messages.po @@ -5,20 +5,22 @@ # Morten R. Bjørklund , 2022. # Markus Heiser , 2022. # forvirretfrukt , 2022. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-11-25 07:16+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-24 07:07+0000\n" +"Last-Translator: return42 \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb_NO\n" -"Language-Team: Norwegian Bokmål " -"\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -198,40 +200,40 @@ msgstr "tilgang nektet" msgid "server API error" msgstr "Tjener-API-feil" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Fant ingen elementer" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Kilde" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Det var et problem med lasting av neste side" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Ugyldige innstillinger, rediger dine preferanser" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ugyldige innstillinger" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "søkefeil" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "I hvilemodus" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "for {minutes} minuter siden" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "for {hours} time(r), {minutes} minutt(er) siden" @@ -272,6 +274,8 @@ msgid "" "{numCitations} citations from the year {firstCitationVelocityYear} to " "{lastCitationVelocityYear}" msgstr "" +"{numCitations} sitater fra år {firstCitationVelocityYear} til " +"{lastCitationVelocityYear}" #: searx/engines/tineye.py:40 msgid "" @@ -311,14 +315,6 @@ msgstr "Kveld" msgid "Night" msgstr "Natt" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Konverterer strenger til andre sjekksumsføljetonger." @@ -377,26 +373,29 @@ msgstr "Tor sjekk pluggin" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Denne plugin sjekker om adressen til forespørselen er en TOR-utgangsnode," -" og informerer brukeren om den er det, som check.torproject.org, men fra " -"searxng." +"Denne plugin sjekker om adressen til forespørselen er en Tor utgangsnode, og " +"informerer brukeren om den er det; som check.torproject.org, men fra SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" +"Kunne ikke laste ned listen over Tor-utgangsnoder fra: https://check." +"torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Du bruker TOR. Din ip-adresse er: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Du bruker ikke TOR. Din ip adresse er: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -571,15 +570,24 @@ msgstr "Søkespråk" msgid "Default language" msgstr "Forvalgt språk" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Hvilket språk foretrekker du for søk?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Auto-fullføring" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Finn ting mens du skriver" @@ -587,35 +595,35 @@ msgstr "Finn ting mens du skriver" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "TrygtSøk" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Strengt" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderat" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Ingen" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrer innhold" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI-utleder" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -623,116 +631,116 @@ msgstr "" "Videresend til åpen tilgang-versjoner av publikasjoner når de finnes " "(programtillegg kreves)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Søkemotorsymboler" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Tilgangssymboler for private motorer" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Brukergrensesnitt" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Grensesnitts-språk" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Endre språket for oppsettet" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Drakt" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Endre SearXNG-sideoppsett" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Draktstil" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Velg «Automatisk» for å følge nettleserinnstillingene" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Senterjustering" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "På" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Av" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Viser resultatet midt på siden (Oscar layout)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultater i nye faner" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Åpne resultatlenker i nye nettleserfaner" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Uendelig rulling" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Last inn neste side automatisk ved rulling til bunnen av nåværende side" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Personvern" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Metode" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Bildemellomtjener" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Påskrudd" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Avskrudd" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Mellomtjener bilderesultater gjennom SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Spørring i sidens tittel" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -740,15 +748,15 @@ msgstr "" "Legger til spørringen din i tittelfeltet for opprettet side. Nettleseren " "din kan registrere denne tittelen" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Søkemotorer" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Brukte søkemotorer" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -756,76 +764,76 @@ msgstr "" "Denne fanen vises ikke i søke resultatene, men du kan søke i søkemotorene" " listed her via bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Tillat" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Søkemotornavn" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Snarvei" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Støtter valgt språk" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Tidsområde" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Svartid" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Mak. tid" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Pålitelighet" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Spesialspørringer" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Nøkkelord" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Navn" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Beskrivelse" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Eksempler" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Dette er listen over SearXNG sine moduler for umiddelbare svar." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Dette er en liste over programtillegg." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Informasjonskapsler" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -833,23 +841,23 @@ msgstr "" "Dette er listen over informasjonskapsler og deres verdier SearXNG lagrer " "på datamaskinen din." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Med denne listen kan du gjennomse SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Informasjonskapselnavn" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Verdi" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Søk nettadresse med nåværende lagrede innstillinger" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -857,11 +865,11 @@ msgstr "" "Merk: Å angi egendefinerte innstillinger i søkenettadressen kan redusere " "personvernet ved å lekke data til sidene det klikkes på i resultatet." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "Nettadresse for å gjenopprette dine preferanser i en annen nettleser" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -869,7 +877,7 @@ msgstr "" "Å spesifisere egendefinerte innstillinger i preferanse-URLen kan brukes " "til å synkronisere preferanser på tvers av enheter." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -877,7 +885,7 @@ msgstr "" "Disse innstillingene lagres i informasjonskapslene dine, noe som tillater" " oss å ikke lagre denne dataen om deg." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -885,15 +893,15 @@ msgstr "" "Disse informasjonskapslene er kun til din nytte, de brukes ikke til å " "spore deg." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Lagre" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Tilbakestill forvalg" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Tilbake" @@ -1407,3 +1415,47 @@ msgstr "skjul video" #~ " rel=\"external\">lær mer om " #~ "forespørselsmetoder" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Denne plugin sjekker om adressen til " +#~ "forespørselen er en TOR-utgangsnode, og" +#~ " informerer brukeren om den er det," +#~ " som check.torproject.org, men fra searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Du bruker TOR. Din ip-adresse er: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Du bruker ikke TOR. Din ip adresse er: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Automatisk oppdaging av søke språk" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Automatisk oppdag spørringens søke språk og bytt til dette." diff --git a/searx/translations/nl/LC_MESSAGES/messages.mo b/searx/translations/nl/LC_MESSAGES/messages.mo index d4e3009e4..fb0193b08 100644 Binary files a/searx/translations/nl/LC_MESSAGES/messages.mo and b/searx/translations/nl/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/nl/LC_MESSAGES/messages.po b/searx/translations/nl/LC_MESSAGES/messages.po index 0767218d1..489b54ec6 100644 --- a/searx/translations/nl/LC_MESSAGES/messages.po +++ b/searx/translations/nl/LC_MESSAGES/messages.po @@ -12,20 +12,23 @@ # SecularSteve , 2022. # Sweder doc , 2022. # Peter Martin , 2022. +# Max Westen , 2023. +# gjveld , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-11-19 16:21+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-28 22:04+0000\n" +"Last-Translator: gjveld \n" +"Language-Team: Dutch \n" "Language: nl\n" -"Language-Team: Dutch " -"\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -71,7 +74,7 @@ msgstr "video’s" #. CATEGORY_NAMES['IT'] #: searx/searxng.msg msgid "it" -msgstr "het" +msgstr "IT" #. CATEGORY_NAMES['NEWS'] #: searx/searxng.msg @@ -205,40 +208,40 @@ msgstr "toegang geweigerd" msgid "server API error" msgstr "server-API-fout" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Geen resultaat gevonden" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Bron" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Fout bij het laden van de volgende pagina" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Ongeldige instellingen, gelieve je voorkeuren bij te werken" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ongeldige instellingen" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "zoekfout" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Geschorst" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minu(u)t(en) geleden" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} uur, {minutes} minu(u)t(en) geleden" @@ -319,14 +322,6 @@ msgstr "avond" msgid "Night" msgstr "nacht" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Zet tekstwaarden om naar verschillende hash digests." @@ -384,32 +379,37 @@ msgstr "" #: searx/plugins/tor_check.py:25 msgid "Tor check plugin" -msgstr "Tor proef plug-in" +msgstr "Tor controle plug-in" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Deze plugin controleert of het adres van de aanvraag een TOR exit node " -"is, en informeert de gebruiker als dat zo is, net zoals " -"check.torproject.org maar dan van searxng." +"Deze plug-in controleert of het adres van het verzoek een Tor exit-node is " +"en informeert de gebruiker als dit zo is; net als bij check.torproject.org, " +"maar dan van SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"De TOR exit node lijst (https://check.torproject.org/exit-addresses) is " -"onbereikbaar." +"Kan de lijst met Tor exit-nodes niet downloaden van: https://check.torproject" +".org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Je gebruikt TOR. Het lijkt erop dat uw IP adres {ip_adress} is." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Je gebruikt Tor en het lijkt er op dat dit je externe IP adres is: " +"{ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Je gebruikt geen TOR. Het lijkt erop dat je IP adres {ip_address} is." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" +"Je maakt geen gebruik van Tor en dit is je externe IP adres: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -589,15 +589,26 @@ msgstr "Zoektaal" msgid "Default language" msgstr "Standaardtaal" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Automatisch herkennen" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Welke taal wil je gebruiken voor het zoeken?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Kies Automatisch herkennen om SearXNG de taal van uw zoekopdracht te laten " +"herkennen." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Auto-aanvullen" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Zoek tijdens het typen" @@ -605,35 +616,35 @@ msgstr "Zoek tijdens het typen" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "VeiligZoeken" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Strikt" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Gemiddeld" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Geen" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filteren op inhoud" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI herschrijven" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -641,89 +652,89 @@ msgstr "" "Doorverwijzen naar vrij toegankelijke versies van publicaties, indien " "beschikbaar (plug-in vereist)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Engine tokens" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Toegangstokens voor privé-engines" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Gebruikersinterface" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Interfacetaal" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Wijzig de taal van de lay-out" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Thema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Verander lay-out van SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Themastijl" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Kies auto om je browserinstellingen te gebruiken" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Centraal uitlijnen" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Aan" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Uit" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Laat de resultaten in het midden van de pagina zien (Oscar layout)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultaten op nieuwe tabbladen" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Open koppelingen in nieuwe tabbladen" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Oneindig scrollen" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Volgende pagina automatisch laden bij bereiken van onderkant huidige " "pagina" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privacy" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Methode" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, lees meer over opvraagmethodes" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Afbeeldingenproxy" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Ingeschakeld" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Uitgeschakeld" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Afbeeldingsresultaten proxyen langs SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Zoekopdracht in paginatitel" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -763,15 +774,15 @@ msgstr "" "Indien aangevinkt, zal de paginatitel je zoekopdracht bevatten. Je " "browser kan deze titel mogelijk opslaan" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Zoekmachines" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Momenteel gebruikte zoekmachines" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -779,76 +790,76 @@ msgstr "" "Dit tabblad wordt niet weergegeven voor zoekresultaten, maar u kunt de " "hier genoemde zoekmachines doorzoeken via bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Toestaan" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Naam zoekmachine" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Snelkoppeling" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Ondersteunt geselecteerde taal" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Tijdspanne" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Responstijd" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Max. duur" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Betrouwbaarheid" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Speciale Zoekopdrachten" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Kernwoorden" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Naam" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Beschrijving" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Voorbeelden" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Dit is de lijst met SearXNG's \"onmiddellijk antwoord\"-modules." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Dit is de lijst met plug-ins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -856,23 +867,23 @@ msgstr "" "Dit is de lijst met cookies en hun waarden die SearXNG op je computer " "opslaat." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Met die lijst kan je de transparantie van SearXNG beoordelen." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Cookienaam" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Waarde" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Zoek-URL van de huidig opgeslagen voorkeuren" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -881,11 +892,11 @@ msgstr "" "voor je privacy, omdat het gegevens lekt aan de aangeklikte " "resultaatwebsites." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "Link om uw instellingen te herstellen in een andere browser" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -893,7 +904,7 @@ msgstr "" "Op maat ingestelde instellingen in de instellingen URL kunnen worden " "gebruikt om instellingen te synchroniseren op verschillende apparaten." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -901,7 +912,7 @@ msgstr "" "Deze instellingen worden bewaard in je cookies. Hierdoor hoeven wij niets" " over jou te bewaren." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -909,15 +920,15 @@ msgstr "" "Deze cookies zijn alleen voor je eigen gemak, we gebruiken deze cookies " "niet om je te volgen." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Bewaar" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Standaardinstellingen herstellen" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Terug" @@ -987,7 +998,7 @@ msgstr "zoeken" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Er zijn momenteel geen gegevens beschikbaar." +msgstr "Er zijn momenteel geen gegevens beschikbaar. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1511,3 +1522,51 @@ msgstr "verberg video" #~ "#HTTP-requests\" rel=\"external\">lees meer over" #~ " opvraagmethodes" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Deze plugin controleert of het adres " +#~ "van de aanvraag een TOR exit node" +#~ " is, en informeert de gebruiker als" +#~ " dat zo is, net zoals " +#~ "check.torproject.org maar dan van searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "De TOR exit node lijst " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "onbereikbaar." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Je gebruikt TOR. Het lijkt erop dat uw IP adres {ip_adress} is." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Je gebruikt geen TOR. Het lijkt erop dat je IP adres {ip_address} is." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" diff --git a/searx/translations/oc/LC_MESSAGES/messages.mo b/searx/translations/oc/LC_MESSAGES/messages.mo index d0fe7ba97..339debbab 100644 Binary files a/searx/translations/oc/LC_MESSAGES/messages.mo and b/searx/translations/oc/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/oc/LC_MESSAGES/messages.po b/searx/translations/oc/LC_MESSAGES/messages.po index 060911ab4..2d5a4475b 100644 --- a/searx/translations/oc/LC_MESSAGES/messages.po +++ b/searx/translations/oc/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2021-12-10 07:17+0000\n" "Last-Translator: Markus Heiser \n" "Language: oc\n" @@ -197,40 +197,40 @@ msgstr "" msgid "server API error" msgstr "" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Cap d’element pas trobat" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Paramètre pas valide, mercés de modificar vòstras preferéncias" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Paramètres invalids" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "error de recèrca" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "fa {minutes} minuta(s)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "Fa {hours} ora(s), {minutes} minuta(s)" @@ -305,14 +305,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -371,22 +363,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -563,15 +557,24 @@ msgstr "Lenga de recerca" msgid "Default language" msgstr "Lenga per defaut" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Dins quina lenga vos agrada mai cercar ?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autocompletar" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Trobar de causas pendent que picatz" @@ -579,35 +582,35 @@ msgstr "Trobar de causas pendent que picatz" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Recèrca segurizada" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Estricte" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderat" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Cap" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrar lo contengut" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI reglador" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -615,227 +618,227 @@ msgstr "" "Mandar cap a la version en accès liure de las publicacions quand es " "disponibla (una extension es de besonh)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfàcia utilizaire" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Lenga de l'interfàcia" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Cambiar la lenga de l'interfàcia" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Òc" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Non" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultat dins de nòus onglets" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Dubrir los ligams de resultats dins un nòu onglet" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Desfilament sens fin" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Carga automaticament la pagina seguenta quand arribatz en fin de pagina" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privacitat" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy pels imatges" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Activat" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Desactivat" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motors de cerca" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motors de recèrca utilizat actualament" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Autorizar" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nom del motor de cerca" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Acorchis" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Compatible amb las lengas seleccionadas" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Espaci temporal" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Temps max" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Mots claus" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nom" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descripcion" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemples" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nom del cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valor" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL de recèrca actuala dels paramètres enregistrats" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -843,17 +846,17 @@ msgstr "" "Nòta : especificar de paramètres personalizats en l’URL pòt reduire la " "privacitat en revelar de donadas als sites de resultat clicats." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -861,7 +864,7 @@ msgstr "" "Aquestes paramètres son gardats dins vòstres cookies : aquò nos permet " "pas de collectar vòstras donadas." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -869,15 +872,15 @@ msgstr "" "Aquestes cookies existon per vòstre confòrt d'utilizacion, los empleguem " "pas per vos espiar." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Reïnicializar per defaut" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1470,3 +1473,44 @@ msgstr "escondre la vidèo" #~ " rel=\"external\"> per ne saber mai " #~ "suls metòdes HTTP" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/pl/LC_MESSAGES/messages.mo b/searx/translations/pl/LC_MESSAGES/messages.mo index 488ce8c0b..978fa553d 100644 Binary files a/searx/translations/pl/LC_MESSAGES/messages.mo and b/searx/translations/pl/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/pl/LC_MESSAGES/messages.po b/searx/translations/pl/LC_MESSAGES/messages.po index 83b85ec79..7f3881f79 100644 --- a/searx/translations/pl/LC_MESSAGES/messages.po +++ b/searx/translations/pl/LC_MESSAGES/messages.po @@ -6,23 +6,25 @@ # Artur , 2017 # Markus Heiser , 2022. # Mateusz Bączek , 2022. +# ewm , 2023. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-23 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Polish " -"\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-28 22:04+0000\n" +"Last-Translator: ewm \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -"X-Generator: Weblate 4.14.1\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (" +"n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -202,40 +204,40 @@ msgstr "odmowa dostępu" msgid "server API error" msgstr "błąd serwera API" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nie znaleziono elementu" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Źródło" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Błąd wczytywania następnej strony" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Nieprawidłowe ustawienia, proszę zmienić swoje preferencje" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Nieprawidłowe ustawienia" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "błąd wyszukiwania" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Zawieszone" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minut(y) temu" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} godzin(y), {minutes} minut(y) temu" @@ -317,14 +319,6 @@ msgstr "Wieczór" msgid "Night" msgstr "Noc" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Wykryj automatycznie język wyszukiwania" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Konwertuje tekst na różne skróty hash." @@ -383,8 +377,8 @@ msgstr "Sprawdzenie plugin TOR" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" "Ten plugin sprawdza, czy adres wysyłający zapytanie jest węzłem " "wyjściowym sieci Tor, i powiadamia użytkownika jeśli jest, tak jak " @@ -392,19 +386,23 @@ msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Lista węzłów wyjsciowych sieci Tor (https://check.torproject.org/exit-" -"addresses) jest nieosiągalna." +"Nie można pobrać listy węzłów wyjściowych Tora z: " +"https://check.torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Używasz sieci TOR. Twoje IP widoczne z zewnątrz to {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Używasz Tora i wygląda na to, że masz ten zewnętrzny adres IP: " +"{ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Nie używasz TOR. Twój adres IP to: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Nie używasz Tora i masz ten zewnętrzny adres IP: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -582,15 +580,26 @@ msgstr "Język wyszukiwania" msgid "Default language" msgstr "Domyślny język" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Automatyczne wykrywanie" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "W jakim języku wolisz wyszukiwać?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Wybierz automatyczne wykrywanie aby SearXNG wykrywał język twojego " +"wyszukiwania." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autouzupełnienie" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Szukaj podczas pisania" @@ -598,35 +607,35 @@ msgstr "Szukaj podczas pisania" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Bezpieczne wyszukiwanie" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Bezkompromisowe" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Umiarkowane" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Wyłączone" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtruj treści" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Podsystem DOI z otwartym dostępem" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -634,89 +643,89 @@ msgstr "" "Przekierowanie do otwartych wersji publikacji, gdy są dostępne (wymagana " "wtyczka)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokeny wyszukiwarek" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Tokeny dostępu do prywatnych wyszukiwarek" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfejs użytkownika" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Język interfejsu" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Zmień język układu" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Motyw" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Zmień wygląd SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Styl motywu" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Wybierz auto by używać ustawień twojej przeglądarki" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Wyśrodkowanie" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Włączone" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Wyłączone" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Pokazuje wyniki na środku strony (układ Oscara)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Wyniki w nowych kartach" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Otwórz hiperłącza wyników w nowych kartach przeglądarki" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Nieskończone przewijanie" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Automatycznie ładuj następną stronę podczas przewijania do dolnej części " "bieżącej strony" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Prywatność" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Metoda HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, więcej o sposobach wysyłania" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy zdjęć" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Włączone" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Wyłączone" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Przepuść zdjęcia przez serwer SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Wyszukiwanie w tytule strony" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -756,15 +765,15 @@ msgstr "" "Gdy włączone, tytuł strony z wynikiem będzie zawierał twoje zapytanie. " "Twoja przeglądarka może widzieć ten tytuł" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Wyszukiwarki" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Obecnie używane wyszukiwarki" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -772,76 +781,76 @@ msgstr "" "Wyszukiwarki z tej zakładki nie pokazują się w wynikach wyszukiwania, ale" " możesz ich używać przez bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Pozwól" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nazwa wyszukiwarki" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Skrót" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Obsługuje wybrany język" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Zakres czasu" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Czas odpowiedzi" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maksymalny czas" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Niezawodność" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Specialne Zapytania" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Słowa kluczowe" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nazwa" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Opis" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Przykłady" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "To jest lista modułów \"natychmiastowych odpowiedzi\" SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "To jest list wtyczek." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Ciasteczka" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -849,23 +858,23 @@ msgstr "" "To jest lista plików cookies i ich zawartości, które SearXNG przechowuje " "na twoim komputerze." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Dzięki tej liście, możesz ocenić przejrzystość SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nazwa ciasteczka" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Wartość" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Wyszukaj adres URL aktualnie zapisanych preferencji" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -874,11 +883,11 @@ msgstr "" "może zmniejszyć prywatność, przenosząc dane do klikniętych stron z " "wyników." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL do przywrócenia twoich ustawień w innej przeglądarce" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -886,7 +895,7 @@ msgstr "" "Określanie własnych ustawień w adresie URL preferencji może służyć do " "synchronizowania preferencji między urządzeniami." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -894,7 +903,7 @@ msgstr "" "Ustawienia te są przechowywane w ciasteczkach, co pozwala nam nie " "przechowywać tych danych o Tobie." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -902,15 +911,15 @@ msgstr "" "Te ciasteczka służą wyłącznie Twojej wygodzie, nie używamy tych " "ciasteczek do śledzenia Ciebie." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Zapisz" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Przywróć domyślne" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Powrót" @@ -1500,3 +1509,52 @@ msgstr "ukryj wideo" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">dowiedz się więcej o " #~ "metodach HTTP" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Ten plugin sprawdza, czy adres " +#~ "wysyłający zapytanie jest węzłem wyjściowym" +#~ " sieci Tor, i powiadamia użytkownika " +#~ "jeśli jest, tak jak check.torproject.org " +#~ "ale z searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Lista węzłów wyjsciowych sieci Tor " +#~ "(https://check.torproject.org/exit-addresses) jest " +#~ "nieosiągalna." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Używasz sieci TOR. Twoje IP widoczne z zewnątrz to {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Nie używasz TOR. Twój adres IP to: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Wykryj automatycznie język wyszukiwania" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Automatycznie wykryj język wyszukiwania i przełącz się na niego." diff --git a/searx/translations/pt/LC_MESSAGES/messages.mo b/searx/translations/pt/LC_MESSAGES/messages.mo index 72542945a..64a602348 100644 Binary files a/searx/translations/pt/LC_MESSAGES/messages.mo and b/searx/translations/pt/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/pt/LC_MESSAGES/messages.po b/searx/translations/pt/LC_MESSAGES/messages.po index 933252b01..c0a2af575 100644 --- a/searx/translations/pt/LC_MESSAGES/messages.po +++ b/searx/translations/pt/LC_MESSAGES/messages.po @@ -12,19 +12,18 @@ # Alexandre Flament , 2022. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2023-01-13 07:14+0000\n" "Last-Translator: Markus Heiser \n" -"Language-Team: Portuguese \n" "Language: pt\n" +"Language-Team: Portuguese " +"\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -204,40 +203,40 @@ msgstr "acesso negado" msgid "server API error" msgstr "erro de API do servidor" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nenhum item encontrado" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Fonte" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Erro ao carregar a próxima página" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Definições inválidas, por favor edite as suas preferências" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Configurações inválidas" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "erro de procura" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspenso" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minuto(s) atrás" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} hora(s), {minutes} minuto(s) atrás" @@ -319,15 +318,6 @@ msgstr "Tarde" msgid "Night" msgstr "Noite" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Deteção automatica da li" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" -"Detecte automaticamente o idioma de pesquisa consultado e mude para ele." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Converte strings em diferentes resumos de hash." @@ -389,27 +379,25 @@ msgstr "Verificar plugin Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Este plugin verifica se o endereço do pedido é um nó de saída do TOR, e " -"informa o utilizador se é, como check.torproject.org mas de searchxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"A lista de nós de saída dos TOR (https://check.torproject.org/exit-" -"addresses) é inalcançável." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Está a utilizar os TOR. O seu endereço IP parece estar: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Não está a usar o TOR. O seu endereço IP parece ser: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -584,15 +572,24 @@ msgstr "Idioma de pesquisa" msgid "Default language" msgstr "Idioma padrão" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Que idioma de pesquisa prefere?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Preenchimento automático" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Pesquisar enquanto escreve" @@ -600,35 +597,35 @@ msgstr "Pesquisar enquanto escreve" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Pesquisa segura" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Rigoroso" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderado" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Nenhum" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrar conteúdo" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Resolvedor DOI de Acesso Aberto" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -636,89 +633,89 @@ msgstr "" "Redirecionar para versões de acesso aberto de publicações quando " "disponíveis (requer plug-in)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokens do Motor" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Access tokens para private engines" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interface de usuário" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Idioma de interface" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Alterar o idioma do esquema" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Mudar o layout do SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Estilo de tema" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Escolha auto para seguir as definições do seu navegador" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Alinhar ao centro" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ligado" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Desligado" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Exibe os resultados no centro da página (esquema do Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultados em novos separadores" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Abrir resultados num novo separador" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Deslocação Infinita" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Carregar automaticamente a próxima página assim que se desloque para o " "fim da página atual" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privacidade" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Método HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, mais sobre métodos de solicitação" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy de imagem" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Ativado" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Desativado" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Procurar resultados de imagem através do SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Procura no título da página" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -758,15 +755,15 @@ msgstr "" "Quando habilitado, o título da página resultante contém sua frase de " "pesquisa. O seu navegador pode gravar esse título" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motores de pesquisa" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motores de pesquisa utilizados" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -774,76 +771,76 @@ msgstr "" "Este separador não aparece para resultados de pesquisa, mas pode " "pesquisar os motores aqui listados através de bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permitir" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nome do motor de pesquisa" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Atalho" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Suporta idioma selecionado" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Período de tempo" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Tempo de resposta" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Tempo máximo" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Confiabilidade" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Consultas especiais" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Palavras-chave" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nome" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descrição" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemplos" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Essa é a lista de módulos de resposta instântanea da SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Essa é a lista de plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -851,23 +848,23 @@ msgstr "" "Essa é a lista dos cookies e seus valores que a SearXNG está armazenando " "no seu computador." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Com ela, você pode avaliar a transparência da SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nome de cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valor" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL de pesquisa das preferências salvas atualmente" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -876,11 +873,11 @@ msgstr "" "pode reduzir a privacidade ao vazar dados para os sites de resultados " "clicados." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL para restaurar suas preferências em outro navegador" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -888,7 +885,7 @@ msgstr "" "Especificar configurações customizadas na URL de preferências pode ser " "usado para sincronizar preferências entre dispositivos." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -896,7 +893,7 @@ msgstr "" "Estas definições são guardadas nos seus cookies, isto permite-nos que não" " guardemos informação sobre si." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -904,15 +901,15 @@ msgstr "" "Estes cookies servem somente para sua conveniência, não os utilizamos " "para o rastrear." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Guardar" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Repor predefinições" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Voltar" @@ -1506,3 +1503,55 @@ msgstr "esconder vídeo" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">aprender mais sobre métodos " #~ "de pedidos" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Este plugin verifica se o endereço " +#~ "do pedido é um nó de saída " +#~ "do TOR, e informa o utilizador se" +#~ " é, como check.torproject.org mas de " +#~ "searchxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "A lista de nós de saída dos " +#~ "TOR (https://check.torproject.org/exit-addresses) é" +#~ " inalcançável." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Está a utilizar os TOR. O seu endereço IP parece estar: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Não está a usar o TOR. O seu endereço IP parece ser: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Deteção automatica da li" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" +#~ "Detecte automaticamente o idioma de " +#~ "pesquisa consultado e mude para ele." + diff --git a/searx/translations/pt_BR/LC_MESSAGES/messages.mo b/searx/translations/pt_BR/LC_MESSAGES/messages.mo index ae8d4eba1..213457a6e 100644 Binary files a/searx/translations/pt_BR/LC_MESSAGES/messages.mo and b/searx/translations/pt_BR/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/pt_BR/LC_MESSAGES/messages.po b/searx/translations/pt_BR/LC_MESSAGES/messages.po index ebfc6e877..3303358a5 100644 --- a/searx/translations/pt_BR/LC_MESSAGES/messages.po +++ b/searx/translations/pt_BR/LC_MESSAGES/messages.po @@ -17,20 +17,23 @@ # calb sepherus , 2022. # Yan Lyra , 2022. # zaioti , 2022. +# Spectro , 2023. +# lhostfree951 , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-11-28 13:11+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-02 12:08+0000\n" +"Last-Translator: lhostfree951 \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" -"Language-Team: Portuguese (Brazil) " -"\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -210,40 +213,40 @@ msgstr "acesso negado" msgid "server API error" msgstr "erro de API do servidor" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nenhum item encontrado" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Fonte" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Erro ao carregar a próxima página" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Configurações inválidas, por favor, edite suas preferências" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Configurações inválidas" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "erro de busca" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Suspenso" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minuto(s) atrás" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} hora(s), {minutes} minuto(s) atrás" @@ -326,14 +329,6 @@ msgstr "Tarde" msgid "Night" msgstr "Noite" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Converte as sequências em diferentes resultados de hash." @@ -392,28 +387,32 @@ msgstr "Plugin de verificação Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Esse plugin checa se o endereço do requerimento é um nódulo de saída TOR," -" e informa o usuário se ele realmente for, parecido com " -"check.torproject.org mas para searxng." +"Este plugin verifica se o endereço do pedido vem de um nó de saída do Tor e " +"informa ao usuário se sim; é semelhante ao check.torproject.org, mas para o " +"SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"A lista de nódulos de saída TOR (https://check.torproject.org/exit-" -"addresses) é inalcançável." +"Não foi possível baixar a lista de nós de saída do Tor de: https://check." +"torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Você está usando TOR. Seu endereço de IP aparenta ser: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Você está usando o Tor e parece que tem este endereço IP externo: " +"{ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Você não está usando TOR. Seu endereço de IP aparenta ser: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Você não está usando o Tor e tem este endereço IP externo: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -593,15 +592,26 @@ msgstr "Idioma de busca" msgid "Default language" msgstr "Idioma padrão" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Auto-detectar" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Que idioma você prefere para a busca?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Escolha Auto-detect para permitir que o SearXNG detecte automaticamente o " +"idioma da sua consulta." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autocompletar" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Exibir sugestões enquanto você digita" @@ -609,35 +619,35 @@ msgstr "Exibir sugestões enquanto você digita" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Busca Segura" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Rigoroso" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderado" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Nenhum" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrar conteúdo" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Resolvedor DOI de Acesso Aberto" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -645,89 +655,89 @@ msgstr "" "Quando disponível, redirecionar para as versões de acesso livre das " "publicações (necessário plugin)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokens de busca" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Acesso a tokens para buscadores privados" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interface de usuário" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Idioma da interface" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Alterar o idioma da interface" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Mudar a interface do SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Estilo do tema" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Escolha auto para seguir as configurações do seu navegador" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Alinhamento central" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ligado" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Desligado" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Exibe os resultados no centro da página (layout Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultados em novas abas" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Abrir resultados em novas abas do navegador" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Rolagem infinita" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Automaticamente carregar a próxima página ao rolar até o fim da página " "atual" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Privacidade" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Método HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, aprenda mais sobre métodos de requisição" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy de imagem" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Habilitado" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Desabilitado" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Usar proxy para resultados da imagem no SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Consultar no título da página" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -767,15 +777,15 @@ msgstr "" "Quando ativado, o título da página de resultados conterá sua consulta. " "Seu navegador pode registrar este título" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motores de pesquisa" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Serviço de busca em uso" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -783,76 +793,76 @@ msgstr "" "Esta aba não aparece para resultados de busca, mas você pode buscar os " "sites listados aqui via bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permitir" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Nome do motor" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Atalhos" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Suporta o idioma selecionado" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Intervalo de tempo" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Tempo de resposta" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Tempo máximo" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Consistência" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Consultas especiais" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Palavras-chave" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nome" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descrição" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemplos" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Esta é a lista de módulos de resposta instantânea do SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Esta é a lista de plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -860,23 +870,23 @@ msgstr "" "Esta é a lista de cookies e seus valores que o SearXNG armazena em seu " "computador." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Com essa lista, você pode avaliar a transparência do SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nome do cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valor" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "A URL de Pesquisa das configurações atuais salvas" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -885,11 +895,11 @@ msgstr "" "você pode reduzir a privacidade vazando dados para os sites clicados nos " "resultados." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL para restaurar suas preferências em outro navegador" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -897,7 +907,7 @@ msgstr "" "Especificar preferências customizadas na URL pode ser usado para " "sincronizar preferências em outros dispositivos." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -905,7 +915,7 @@ msgstr "" "Essas configurações são armazenadas em seus cookies, nos não armazenamos " "nenhum dado a seu respeito." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -913,15 +923,15 @@ msgstr "" "Estes cookies servem ao seu único propósito, nós não usamos esses cookies" " para rastreá-lo." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Salvar" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Redefinir configurações" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Voltar" @@ -1519,3 +1529,57 @@ msgstr "ocultar vídeo" #~ " rel=\"external\">saiba mais sobre os " #~ "métodos de solicitação" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Esse plugin checa se o endereço do" +#~ " requerimento é um nódulo de saída" +#~ " TOR, e informa o usuário se " +#~ "ele realmente for, parecido com " +#~ "check.torproject.org mas para searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "A lista de nódulos de saída TOR" +#~ " (https://check.torproject.org/exit-addresses) é " +#~ "inalcançável." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Você está usando TOR. Seu endereço de IP aparenta ser: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" +#~ "Você não está usando TOR. Seu " +#~ "endereço de IP aparenta ser: " +#~ "{ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Detecção automática de idioma de pesquisa" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" +#~ "Detecte automaticamente o idioma de " +#~ "pesquisa da consulta e mude para " +#~ "ele." diff --git a/searx/translations/ro/LC_MESSAGES/messages.mo b/searx/translations/ro/LC_MESSAGES/messages.mo index 82e1915c4..80190e389 100644 Binary files a/searx/translations/ro/LC_MESSAGES/messages.mo and b/searx/translations/ro/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ro/LC_MESSAGES/messages.po b/searx/translations/ro/LC_MESSAGES/messages.po index c07a5405e..3f73b464f 100644 --- a/searx/translations/ro/LC_MESSAGES/messages.po +++ b/searx/translations/ro/LC_MESSAGES/messages.po @@ -9,22 +9,22 @@ # lukasig , 2022. # Markus Heiser , 2022. # p6n7l , 2023. +# return42 , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2023-01-06 07:14+0000\n" -"Last-Translator: p6n7l \n" -"Language-Team: Romanian \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-19 11:39+0000\n" +"Last-Translator: return42 \n" "Language: ro\n" +"Language-Team: Romanian " +"\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 " +"< 20)) ? 1 : 2;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -204,40 +204,40 @@ msgstr "Acces interzis" msgid "server API error" msgstr "eroare la API pe Server" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Niciun element găsit" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Sursă" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Eroare la încărcarea paginii următoare" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Configurări nevalide, modificați preferințele" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Configurări nevalide" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "eroare de căutare" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Întrerupt" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minut(e) în urmă" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} oră(e), {minutes} minut(e) în urmă" @@ -319,14 +319,6 @@ msgstr "Seara" msgid "Night" msgstr "Noapte" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Detectează automat limba căutării" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Convertește șirurile în diferite rezumate hash." @@ -386,28 +378,25 @@ msgstr "Activeaza plugin Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Acest plugin verifica daca adresa cererii este un nod de iesire TOR si " -"informeaza utilizatorul in caz afirmativ, ex. check.torproject.org dar " -"prin searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Lista cu nodul de iesire TOR (https://check.torproject.org/exit-" -"addresses) nu poate fi gasita." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Folosesti TOR. Adresa ta IP pare a fi aceasta: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Nu folosesti TOR. Adresa ta IP pare a fi aceasta: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -587,15 +576,24 @@ msgstr "Limba de căutare" msgid "Default language" msgstr "Limbă implicită" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Ce limbă preferați pentru căutare?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Completare automată" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Găsește lucruri în timp ce tastezi" @@ -603,35 +601,35 @@ msgstr "Găsește lucruri în timp ce tastezi" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "CăutareSigură" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Strict" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Moderat" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Nimic" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrează conținutul" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Rezolvator de acces deschis DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -639,116 +637,116 @@ msgstr "" "Redirecționează către versiuni cu acces deschis ale publicațiilor când " "sunt disponibile (modul necesar)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokenurile motorului" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Tokenuri de acces pentru motoare de căutare private" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfața pentru utilizator" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Limba interfeței" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Schimbă limba aspectului" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Temă" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Schimbă aspectul la SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Stilul temei" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Selectați auto pentru a urma setările browserului dvs" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Aliniere centrală" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Pornit" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Oprit" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Afișează rezultatele pe centrul paginii (amplasare Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Rezultate în taburi noi" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Deschide legăturile rezultate în taburi noi" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Derulare infinită" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Încarcă automat pagina următoare când se derulează la baza paginii curente" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Confidențialitate" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Metodă HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy de imagini" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Activat" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Dezactivat" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Trimitere prin proxy a rezultatelor imagini prin SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Afișați căutarea în titlul paginii" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -756,15 +754,15 @@ msgstr "" "Când este activat, titlul paginii de rezultate conține căutarea dvs. " "Browserul dumneavoastră poate înregistra acest titlu" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motoare de căutare" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Motoarele de căutare folosite curent" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -772,76 +770,76 @@ msgstr "" "Această filă nu apare pentru rezultatele căutării, dar puteți căuta în " "motoarele enumerate aici prin banguri." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Permite" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Numele motorului" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Scurtătură" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Suportă limba selectată" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Interval de timp" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Timp de răspuns" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Timp maxim" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Fiabilitate" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Întrebări speciale" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Cuvinte cheie" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Nume" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Descriere" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exemple" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Aceasta este lista modulelor de răspuns instantaneu ale SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Aceasta este lista pluginurilor." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookie-uri" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -849,23 +847,23 @@ msgstr "" "Aceasta este lista de cookie-uri și valorile lor pe care SearXNG le " "stochează pe computerul dvs." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Cu această listă, puteți evalua transparența SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Nume cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Valuare" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL-ul de căutare al preferințelor salvate curent" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -874,11 +872,11 @@ msgstr "" "reduce nivelul de confidențialitate prin scurgerea datelor către siturile" " accesate la căutare." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL pentru revindecarea preferințelor dintr-un alt browser" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -886,7 +884,7 @@ msgstr "" "Specificând setări personalizate în URLul de preferințe poate fi folosit " "pentru sincronizarea preferințelor pe toate aparatele." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -894,7 +892,7 @@ msgstr "" "Aceste configurări sunt stocate în cookie-uri, ceea ce ne permite să nu " "stocăm aceste date despre dumeavoastră." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -902,15 +900,15 @@ msgstr "" "Aceste cookie-uri servesc doar pentru conveniența dumneavoastră, noi nu " "stocăm aceste cookie-uri pentru a vă urmări." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Salvați" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Restabilește la valorile implicite" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Înapoi" @@ -1503,3 +1501,53 @@ msgstr "ascunde video" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">învățați mai multe despre " #~ "metodele de transfer" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Acest plugin verifica daca adresa " +#~ "cererii este un nod de iesire TOR" +#~ " si informeaza utilizatorul in caz " +#~ "afirmativ, ex. check.torproject.org dar prin" +#~ " searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Lista cu nodul de iesire TOR " +#~ "(https://check.torproject.org/exit-addresses) nu " +#~ "poate fi gasita." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Folosesti TOR. Adresa ta IP pare a fi aceasta: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Nu folosesti TOR. Adresa ta IP pare a fi aceasta: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Detectează automat limba căutării" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Detectează automat limba de căutare a interogărilor și comută la ea." + diff --git a/searx/translations/ru/LC_MESSAGES/messages.mo b/searx/translations/ru/LC_MESSAGES/messages.mo index dd9d3b246..590a841f2 100644 Binary files a/searx/translations/ru/LC_MESSAGES/messages.mo and b/searx/translations/ru/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ru/LC_MESSAGES/messages.po b/searx/translations/ru/LC_MESSAGES/messages.po index 04e223f6d..9ddaea951 100644 --- a/searx/translations/ru/LC_MESSAGES/messages.po +++ b/searx/translations/ru/LC_MESSAGES/messages.po @@ -13,23 +13,25 @@ # Markus Heiser , 2022. # Surepusofu Arutemu , 2022. # No4vick , 2022. +# BalkanMadman , 2023. +# AHOHNMYC , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-18 19:54+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-03 07:08+0000\n" +"Last-Translator: AHOHNMYC \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" -"X-Generator: Weblate 4.14.1\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (" +"n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -209,40 +211,40 @@ msgstr "доступ запрещён" msgid "server API error" msgstr "ошибка API сервера" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Ничего не найдено" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Источник" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Не удалось загрузить следующую страницу" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Неправильные параметры, пожалуйста измените ваши настройки" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Неверные настройки" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "ошибка поиска" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Приостановлено" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} минут(а) назад" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} час(ов), {minutes} минут(а) назад" @@ -324,14 +326,6 @@ msgstr "Вечер" msgid "Night" msgstr "Ночь" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Автоматически определять язык поиска" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Автоматически определять язык поиска запроса и переключаться на него." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Рассчитывает контрольные суммы от строки." @@ -390,28 +384,31 @@ msgstr "Плагин проверки Tor'a" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Этот плагин проверяет, не является ли запрошенный адрес выходным узлом " -"Tor'a, и информирует пользователя, если это так, как " -"check.torproject.org, но от searxng." +"Этот плагин проверяет, принадлежит ли адрес запроса выходному узлу Tor и " +"информирует пользователя если это так; как check.torproject.org, но от " +"SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Список выходных узлов Tor'a (https://check.torproject.org/exit-addresses)" -" недоступен." +"Не удалось загрузить список выходных узлов Tor с адреса https://check." +"torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Вы используете Tor. Ваш IP адрес может быть: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "Вы не используете Tor. Ваш публичный IP-адрес: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Вы не используете Tor. Ваш IP адрес может быть: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" +"Вы не используете Tor, и у вас следующий публичный IP адрес: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -591,15 +588,25 @@ msgstr "Язык поиска" msgid "Default language" msgstr "Язык по умолчанию" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Авто-определение" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Какой язык предпочтителен для поиска?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Выберите Авто-определение, чтобы SearXNG сам определял язык вашего запроса." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Подсказки" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Показывать предложения по мере ввода запроса" @@ -607,35 +614,35 @@ msgstr "Показывать предложения по мере ввода з #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Безопасный поиск" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Строгий" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Умеренный" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Отключен" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Отбирает только пристойные результаты" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Источник Open Access DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -643,87 +650,87 @@ msgstr "" "Перенаправлять на открытые версии публикаций при их наличии (требуется " "плагин)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Токены движка" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Доступные токены для частных движков" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Внешний вид" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Язык интерфейса" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Изменить язык интерфейса" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Тема" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Изменить расположение элементов SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Стиль темы" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Выберите \"автоматически\" для использования настроек вашего браузера" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Выравнивание по центру" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Включено" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Выключено" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Отображать результаты по центру страницы (макет Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Результаты в новых вкладках" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Открывать результаты поиска в новых вкладках" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Бесконечная прокрутка" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Автоматически загружать следующую страницу при прокрутке до конца страницы" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Конфиденциальность" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Метод HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, Подробнее о методах HTTP" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Прокси для картинок" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Включено" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Выключено" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Проксировать изображения в результатах методами SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Поисковый запрос в заголовке страницы" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -763,15 +770,15 @@ msgstr "" "Добавить поисковый запрос в заголовок страницы с результатами. Браузер " "может сохранять этот заголовок" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Поисковые системы" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Используемые поисковые системы" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -779,98 +786,98 @@ msgstr "" "Результаты из этого раздела не отображаются в общих, но вы можете " "использовать эти поисковые движки через восклицательный знак." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Использовать" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Поисковая система" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Сокращение" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Поддерживает выбранный язык" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Временной диапазон" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Время отклика" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Максимальное время" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Надёжность" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Особые запросы" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Ключевые слова" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Название" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Описание" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Пример" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Модули SearXNG с мгновенным ответом." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Список плагинов." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "Список cookies и их значений, которые SearXNG хранит в вашем браузере." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "SearXNG ничего от вас не скрывает." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Значение" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL с сохраненными настройками" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -878,11 +885,11 @@ msgstr "" "Внимание: использование URL с параметрами может привести к утечке данных " "на сайты, открытые из результатов поиска." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL-адрес для восстановления ваших настроек в другом браузере" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -890,7 +897,7 @@ msgstr "" "URL-адреса с пользовательскими настройками можно использовать для " "синхронизации настроек между устройствами." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -898,7 +905,7 @@ msgstr "" "Все настройки сохраняются в cookie вашего браузера. Это позволяет нам не " "хранить о вас никаких данных на серверах." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -906,15 +913,15 @@ msgstr "" "Cookie нужны исключительно для вашего удобства, мы не используем cookie " "для слежки." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Сохранить" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Восстановить настройки по умолчанию" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Назад" @@ -1044,7 +1051,7 @@ msgstr "Код" #: searx/templates/simple/stats.html:128 msgid "Checker" -msgstr "Checker" +msgstr "Проверщик" #: searx/templates/simple/stats.html:131 msgid "Failed test" @@ -1508,3 +1515,51 @@ msgstr "скрыть видео" #~ "Способ отправки запросов. Подробнее о методах HTTP" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Этот плагин проверяет, не является ли" +#~ " запрошенный адрес выходным узлом Tor'a," +#~ " и информирует пользователя, если это " +#~ "так, как check.torproject.org, но от " +#~ "searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Список выходных узлов Tor'a " +#~ "(https://check.torproject.org/exit-addresses) недоступен." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Вы используете Tor. Ваш IP адрес может быть: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Вы не используете Tor. Ваш IP адрес может быть: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Автоматически определять язык поиска" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Автоматически определять язык поиска запроса и переключаться на него." diff --git a/searx/translations/si/LC_MESSAGES/messages.mo b/searx/translations/si/LC_MESSAGES/messages.mo index 7ab6f2c04..c5535a16c 100644 Binary files a/searx/translations/si/LC_MESSAGES/messages.mo and b/searx/translations/si/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/si/LC_MESSAGES/messages.po b/searx/translations/si/LC_MESSAGES/messages.po index cd9476948..75b93274d 100644 --- a/searx/translations/si/LC_MESSAGES/messages.po +++ b/searx/translations/si/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-30 15:33+0000\n" "Last-Translator: Chathura madusanka \n" "Language: si\n" @@ -197,40 +197,40 @@ msgstr "ප්‍රවේශය ප්‍රතික්ෂේප විය" msgid "server API error" msgstr "සේවාදායකයේ API දෝෂයකි" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "අයිතමයක් හමු නොවීය" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "මූලාශ්‍රය" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "ඊළඟ පිටුව පූරණය කිරීමේ දෝෂයකි" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "වලංගු නොවන සැකසුම්, කරුණාකර ඔබගේ මනාප සංස්කරණය කරන්න" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "වලංගු නොවන සැකසුම්" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "සෙවුම් දෝෂයකි" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "අත්හිටුවා ඇත" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "මිනිත්තු(ව) {minutes}කට පෙර" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "පැය {hours}, මිනිත්තු(ව) {minutes}කට පෙර" @@ -305,14 +305,6 @@ msgstr "හවස" msgid "Night" msgstr "රාත්‍රිය" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "" @@ -365,22 +357,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -554,15 +548,24 @@ msgstr "සෙවුම් භාෂාව" msgid "Default language" msgstr "මූලික භාෂාව" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "සෙවුම් සඳහා ඔබ කැමති භාෂාව කුමක්ද?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "ස්වයං සම්පූර්ණ කිරීම" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "" @@ -570,297 +573,297 @@ msgstr "" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "ආරක්ෂිත සෙවුම්" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "තද" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "මධ්‍යස්ථ" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "කිසිවක් නැත" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "අන්තර්ගතය පෙරීම" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "පරිශීලක අතුරුමුහුණත" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "අතුරුමුහුණත් භාෂාව" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "පිරිසැලසුම් භාෂාව වෙනස් කරන්න" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "තේමාව" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "සක්‍රිය" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "අක්‍රීය" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP ආකාරය" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "සක්‍රිය" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "අක්‍රීය" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1179,3 +1182,44 @@ msgstr "" msgid "hide video" msgstr "" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/sk/LC_MESSAGES/messages.mo b/searx/translations/sk/LC_MESSAGES/messages.mo index affc42564..5165b63ac 100644 Binary files a/searx/translations/sk/LC_MESSAGES/messages.mo and b/searx/translations/sk/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/sk/LC_MESSAGES/messages.po b/searx/translations/sk/LC_MESSAGES/messages.po index 2dd36d3bf..0ae4a48d6 100644 --- a/searx/translations/sk/LC_MESSAGES/messages.po +++ b/searx/translations/sk/LC_MESSAGES/messages.po @@ -9,20 +9,19 @@ # JohnyPeaN , 2022. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-12-12 23:30+0000\n" "Last-Translator: JohnyPeaN \n" -"Language-Team: Slovak " -"\n" "Language: sk\n" +"Language-Team: Slovak " +"\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 " +"&& n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " -">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -202,40 +201,40 @@ msgstr "prístup bol odmietnutý" msgid "server API error" msgstr "API chyba servera" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Nič sa nenašlo" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Zdroj" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Chyba pri načítaní ďalšej stránky" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Nesprávne nastavenia, prosím upravte svoje predvoľby" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Nesprávne nastavenia" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "chyba vyhľadávania" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Pozastavené" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "pred {minutes} min." -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "pred {hours} hod., {minutes} min." @@ -317,14 +316,6 @@ msgstr "Večer" msgid "Night" msgstr "Noc" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Autodetekcia jazyka vyhľadávania" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Automatická detekcia a prepnutie na jazyk dopytu." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Skonvertuje text pomocou rôznych hash funkcií." @@ -383,27 +374,25 @@ msgstr "Kontrola Tor plugin" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Tento plugin kontroluje, či žiadaná adresa je výstupný bod TORu, a " -"informuje používateľa ak je, ako check.torproject.org ale od searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Zoznam výstupných bodov TORu (https://check.torproject.org/exit-" -"addresses) je nedostupný." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Používate TOR. Zdá sa, že vaša IP adresa je: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Nepoužívate TOR. Zdá sa, že vaša IP adresa je: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -581,15 +570,24 @@ msgstr "Jazyk vyhľadávania" msgid "Default language" msgstr "Predvolený jazyk" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Aký jazyk preferujete pre vyhľadávanie?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Automatické dokončovanie" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Vyhľadávať počas písania" @@ -597,35 +595,35 @@ msgstr "Vyhľadávať počas písania" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Bezpečné vyhľadávanie" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Striktné" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Mierne" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Žiadne" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrovanie obsahu" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "DOI vyhodnocovač otvoreným prístupom" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -633,89 +631,89 @@ msgstr "" "Presmerovanie na verzie publikácií s otvoreným prístupom, ak sú k " "dispozícii (vyžaduje sa plugin)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Engine tokeny" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Prístupové tokwny pre súkromné nástroje" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "UI" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Jazyk rozhrania" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Zmena jazyku rozhrania" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Téma" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Zmena SearXNG vzhľadu" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Štýl témy" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Vyberte možnosť auto, aby sa riadila nastaveniami vášho prehliadača" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Zarovnanie na stred" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Zapnuté" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Vypnuté" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Zobrazenie výsledkov v strede stránky (Oscar layout)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Výsledky v novom tabe" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Otvoriť odkazy v novom tabe" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Nekonečné posúvanie" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Automaticky načítať ďalšiu stránku pri posunutí na koniec aktuálnej " "stránky" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Súkromie" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Metóda HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, dozvedieť sa viac o metódach žiadosti" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy pre obrázky" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Povolené" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Zakázané" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Sprostredkovanie výsledkov snímok cez SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Dotaz v názve stránky" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -755,15 +753,15 @@ msgstr "" "Ak je táto možnosť povolená, názov stránky s výsledkami obsahuje vašu " "požiadavku. Váš prehliadač môže tento názov zaznamenať" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Vyhľadávače" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "List práve používaných vyhľadávačov" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -771,76 +769,76 @@ msgstr "" "Táto karta sa nezobrazuje vo výsledkoch vyhľadávania, ale môžete " "vyhľadávať v enginoch, ktoré sú tu uvedené, pomocou Bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Povoliť" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Názov vyhľadávača" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Skratka" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Podporuje zvolený jazyk" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Časový rozsah" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Doba odozvy" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maximálny čas" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Spoľahlivosť" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Špeciálne vyhľadávania" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Kľúčové slová" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Názov" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Popis" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Príklady" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Toto je zoznam modulov okamžitých odpovedí SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Toto je zoznam pluginov." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -848,23 +846,23 @@ msgstr "" "Toto je zoznam cookies a ich hodnôt, ktoré vo vašom počítači ukladá " "SearXNG." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Týmto zoznamom môžete zhodnotiť priehľadnosť SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Názov cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Hodnota" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Vyhľadávacia adresa (URL) stávajúcich, uložených nastavení" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -873,11 +871,11 @@ msgstr "" "zredukovať úroveň súkromia tým že poskytne doplňujúce údaje kliknutým " "adresám vo výsledkoch." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "Adresa (URL) pre obnovu nastavení v inom prehliadači" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -885,7 +883,7 @@ msgstr "" "Zadaním osobitých nastavení v adrese (URL) nastavení je možné " "synchronizovať nastavenia do iných zariadení." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -893,7 +891,7 @@ msgstr "" "Tieto nastavenia sú uložené v cookies, čo nám umožňuje neukladať dáta o " "vás na našej strane." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -901,15 +899,15 @@ msgstr "" "Tieto cookies slúžia výhradné pre vaše pohodlie a nie sú používané na " "sledovanie." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Uložiť" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Obnoviť predvolené" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Späť" @@ -1497,3 +1495,52 @@ msgstr "skryť video" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">dozvedieť sa viac o " #~ "týchto metódach" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Tento plugin kontroluje, či žiadaná " +#~ "adresa je výstupný bod TORu, a " +#~ "informuje používateľa ak je, ako " +#~ "check.torproject.org ale od searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Zoznam výstupných bodov TORu " +#~ "(https://check.torproject.org/exit-addresses) je " +#~ "nedostupný." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Používate TOR. Zdá sa, že vaša IP adresa je: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Nepoužívate TOR. Zdá sa, že vaša IP adresa je: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Autodetekcia jazyka vyhľadávania" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Automatická detekcia a prepnutie na jazyk dopytu." + diff --git a/searx/translations/sl/LC_MESSAGES/messages.mo b/searx/translations/sl/LC_MESSAGES/messages.mo index 8a110a7c1..f0c8a1231 100644 Binary files a/searx/translations/sl/LC_MESSAGES/messages.mo and b/searx/translations/sl/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/sl/LC_MESSAGES/messages.po b/searx/translations/sl/LC_MESSAGES/messages.po index a1cedb7a6..afdbac5de 100644 --- a/searx/translations/sl/LC_MESSAGES/messages.po +++ b/searx/translations/sl/LC_MESSAGES/messages.po @@ -10,20 +10,19 @@ # Nik Drešar , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2023-01-13 07:14+0000\n" "Last-Translator: Nik Drešar \n" -"Language-Team: Slovenian \n" "Language: sl\n" +"Language-Team: Slovenian " +"\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 " +"|| n%100==4 ? 2 : 3;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -203,40 +202,40 @@ msgstr "dostop zavrnjen" msgid "server API error" msgstr "napaka API strežnika" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Ni zadetkov" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Vir" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Napaka pri nalaganju naslednje strani" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Neveljavne nastavitve. Prosimo, preverite vašo konfiguracijo" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Neveljavne nastavitve" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "napaka pri iskanju" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Prekinjeno" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minut nazaj" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "pred {hours} urami in {minutes} minut" @@ -318,14 +317,6 @@ msgstr "Večer" msgid "Night" msgstr "Noč" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Samodejno zaznavanje jezika iskanja" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Samodejno zazna jezik iskanja poizvedbe in preklopi nanj." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Pretvori besede v drugo hash vrednost." @@ -386,28 +377,25 @@ msgstr "Preveri Tor vtičnik" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Ta vtičnik preveri, če je naslov poizvedbe izhodni prikluček TOR in " -"informira uporabnika o njem, kot naprimer check.torproject.org ampak " -"preko searxng-ja." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Seznam izhodnih priključkov TOR (https://check.torproject.org/exit-" -"addresses) je nedosegljiv." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Uporabljaš TOR. Tvoj IP naslov naj bi bil: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Ne uporabljaš TOR-a. Tvoj IP naslov naj bi bil: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -583,15 +571,24 @@ msgstr "Jezik iskanja" msgid "Default language" msgstr "Privzeti jezik" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "V katerem jeziku želite iskati?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Samodejni predlogi" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Iščite že med tipkanjem" @@ -599,35 +596,35 @@ msgstr "Iščite že med tipkanjem" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Varno iskanje" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Strogo" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Zmerno" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Brez" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtriraj vsebino" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "odprto dostopni DOI razreševalec" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -635,119 +632,119 @@ msgstr "" "Preusmeri na prosto dostopne različice publikacij, ko so na voljo " "(zahtevan vtičnik)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Žetoni za iskalnik" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Žetoni dostopa za zasebne iskalnike" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Uporabniški vmesnik" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Jezik vmesnika" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Spremeni jezik vmesnika" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Spremenite postavitev SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Slog teme" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Če želite slediti nastavitvam brskalnika, izberite samodejno" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Sredinska poravnava" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Vklopljeno" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Izklopljeno" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Prikaže rezultate na sredini strani (postavitev Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Zadetki v novih zavihkih" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Odpri povezave zadetkov v novih zavihkih brskalnika" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Neskončno drsenje" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Samodejno naloži naslednjo stran ob ogledu dna trenutne strani" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Zasebnost" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "metoda HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -"Spremenite način oddaje obrazcev, izvedite več " -"o metodah zahtevka" +"Spremenite način oddaje obrazcev, izvedite več o metodah zahtevka" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Posredniški strežnik za slike" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Omogočeno" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Onemogočeno" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Proxy rezultatov slik prek SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Poizvedba v naslovu strani" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -755,116 +752,116 @@ msgstr "" "Ko je omogočeno, naslov strani z rezultati vsebuje vašo poizvedbo. Vaš " "brskalnik lahko posname ta naslov" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Iskalniki" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Trenutno uporabljeni iskalniki" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -"Ta zavihek se ne prikaže pri rezultatih iskanja, lahko pa iščete iskalnike, " -"navedene tukaj, prek bangs." +"Ta zavihek se ne prikaže pri rezultatih iskanja, lahko pa iščete " +"iskalnike, navedene tukaj, prek bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Dovoli" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Ime iskalnika" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Bližnjica" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Podpira izbrani jezik" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Časovni razpon" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Odzivni čas" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Največji čas" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Zanesljivost" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Posebne poizvedbe" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Ključne besede" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Ime" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Opis" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Primeri" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "To je seznam modulov za takojšnje javljanje SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "To je seznam vtičnikov." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Piškotki" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -"To je seznam piškotkov in njihovih vrednosti, ki jih SearXNG shranjuje v vaš " -"računalnik." +"To je seznam piškotkov in njihovih vrednosti, ki jih SearXNG shranjuje v " +"vaš računalnik." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "S tem seznamom lahko ocenite transparentnost SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Ime piškotka" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Vrednost" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Iskalni URL trenutno shranjenih nastavitev" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -872,11 +869,11 @@ msgstr "" "Opomba: navajanje lastnih nastavitev v iskalnem URL lahko vodi do " "zmanjšane zasebnosti preko podajanja podatkov izbranim rezultatom." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL za obnovitev vaših nastavitev v drugem brskalniku" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -884,7 +881,7 @@ msgstr "" "Določanje nastavitev po meri v URL-ju z nastavitvami se lahko uporabi za " "sinhronizacijo nastavitev med napravami." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -892,21 +889,21 @@ msgstr "" "Te nastavitve so shranjene v vaših piškotkih; to nam omogoča, da ne " "hranimo teh podatkov o vas." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "Ti piškotki so za boljšo izkušnjo, ne uporabljamo jih za sledenje." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Shrani" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Ponastavi na privzeto" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Nazaj" @@ -1497,3 +1494,53 @@ msgstr "skrij video" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">, več o metodah za " #~ "zahtevke " + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Ta vtičnik preveri, če je naslov " +#~ "poizvedbe izhodni prikluček TOR in " +#~ "informira uporabnika o njem, kot " +#~ "naprimer check.torproject.org ampak preko " +#~ "searxng-ja." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Seznam izhodnih priključkov TOR " +#~ "(https://check.torproject.org/exit-addresses) je " +#~ "nedosegljiv." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Uporabljaš TOR. Tvoj IP naslov naj bi bil: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Ne uporabljaš TOR-a. Tvoj IP naslov naj bi bil: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Samodejno zaznavanje jezika iskanja" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Samodejno zazna jezik iskanja poizvedbe in preklopi nanj." + diff --git a/searx/translations/sr/LC_MESSAGES/messages.mo b/searx/translations/sr/LC_MESSAGES/messages.mo index 02ef64f15..39b7da617 100644 Binary files a/searx/translations/sr/LC_MESSAGES/messages.mo and b/searx/translations/sr/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/sr/LC_MESSAGES/messages.po b/searx/translations/sr/LC_MESSAGES/messages.po index 4be5f645f..a44969fb7 100644 --- a/searx/translations/sr/LC_MESSAGES/messages.po +++ b/searx/translations/sr/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-19 16:21+0000\n" "Last-Translator: Markus Heiser \n" "Language: sr\n" @@ -202,40 +202,40 @@ msgstr "није дозвољен приступ" msgid "server API error" msgstr "серверска API грешка" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Ставка није пронађена" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Извор" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Грешка приликом учитавања следеће странице" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Неважеће поставке, молимо уредите свој избор" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Неважећа подешавања" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "грешка у претрази" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Суспендован" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "пре {minutes} минут(у,е,а)" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "пре {hours} час(a) и {minutes} минут(у,е,а)" @@ -317,14 +317,6 @@ msgstr "Vece" msgid "Night" msgstr "Noc" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Претвара стринг у другачије хешеве." @@ -383,27 +375,25 @@ msgstr "Додатак за проверу Тор-а" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Овај додатак проверава да ли је адреса захтева излазни чвор ТОР-а и " -"обавештава корисника ако јесте, као check.torproject.org али са searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Листа излазних чворова ТОР-а (https://check.torproject.org/exit-" -"addresses) је недоступна." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Користите ТОР. Ваша ИП адреса је: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Не користите ТОР. Ваша ИП адреса је: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -579,15 +569,24 @@ msgstr "Језик претраге" msgid "Default language" msgstr "Подразумевани језик" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Који језик преферирате за претрагу?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Ауто попуњавање" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Пронађите док куцате" @@ -595,35 +594,35 @@ msgstr "Пронађите док куцате" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Безбедна Претрага" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Стриктно" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Умерено" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Ништа" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Филтрирајте садржај" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Отворени приступ DOI решења" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -631,89 +630,89 @@ msgstr "" "Преусмери на верзије публикација отвореног приступа кад је доступно " "(потребан је плагин)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Енџин жетони" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Приступите жетонима за приватне енџине" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Кориснички интерфејс" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Језик интерфејса" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Промените језик сајта" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Тема" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Промените изглед СеарКСНГ-а" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Изглед теме" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Изаберите аутоматски да бисте пратили подешавања вашег претраживача" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Поравнање по средини" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Укључено" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Искључено" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Приказује резултате на центру странице (Оскар распоред)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Резултати на картицама" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Отворите линкове са резултатима на новим картицама претраживача" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Бесконачно померање" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Аутоматско учитавање следеће странице приликом померања на дно текуће " "странице" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Приватност" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "ХТТП метода" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, saznaj vise o request metodama" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Прокси слика" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Омогућено" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Онемогућено" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Прокси резултат слике преко СеарКСНГ" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Упит у наслову странице" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -753,15 +752,15 @@ msgstr "" "Када је омогућено, наслов странице са резултатима садржи ваш упит. Ваш " "претраживач може да сними овај наслов." -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Претраживачи" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Тренутно коришћени претраживачи" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -769,76 +768,76 @@ msgstr "" "Ова картица није приказана за резултате претраге, али можете претраживати" " енџине наведене овде преко шишких." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Допусти" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Име претраживача" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Пречица" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Подржава изабрани језик" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Временски опсег" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Време одзива" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Макс. време" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Поузданост" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Посебни упити" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Кључне речи" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Име" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Опис" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Примери" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Ово је листа СеарКСНГ-ових модула за тренутно јављање." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Ово је листа додатака." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Колачићи" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -846,23 +845,23 @@ msgstr "" "Ово је листа колачића и њихових вредности које СеарКСНГ чува на вашем " "рачунару." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Са том листом можете проценити транспарентност СеарКСНГ-а." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Име колачића" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Вредност" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Pretražite URL адресу тренутно сачуваних поставки" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -870,11 +869,11 @@ msgstr "" "Напомена: навођење прилагођених поставки у URL претрази може смањити " "приватност цурењем података кликнутих страница." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "УРЛ да бисте вратили своја подешавања у другом претраживачу" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -882,7 +881,7 @@ msgstr "" "Одређивање прилагођених подешавања у УРЛ-у може да се користи за " "синхронизацију подешавања на свим уређајима." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -890,7 +889,7 @@ msgstr "" "Ова подешавања се чувају у вашим колачићима, што нам омогућава да не " "сачувамо ове податке о вама." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -898,15 +897,15 @@ msgstr "" "Ови колачићи служе Вашој погодности, ми не користимо ове колачиће да вас " "пратимо." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Сачувати" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Врати на подразумевано" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Назад" @@ -1494,3 +1493,51 @@ msgstr "сакриј видео" #~ " rel=\"external\">сазнајте више о методама " #~ "захтева" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Овај додатак проверава да ли је " +#~ "адреса захтева излазни чвор ТОР-а и " +#~ "обавештава корисника ако јесте, као " +#~ "check.torproject.org али са searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Листа излазних чворова ТОР-а " +#~ "(https://check.torproject.org/exit-addresses) је " +#~ "недоступна." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Користите ТОР. Ваша ИП адреса је: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Не користите ТОР. Ваша ИП адреса је: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/sv/LC_MESSAGES/messages.mo b/searx/translations/sv/LC_MESSAGES/messages.mo index 1f867cf03..0a22f90e6 100644 Binary files a/searx/translations/sv/LC_MESSAGES/messages.mo and b/searx/translations/sv/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/sv/LC_MESSAGES/messages.po b/searx/translations/sv/LC_MESSAGES/messages.po index 92d1f5979..646a4e0ba 100644 --- a/searx/translations/sv/LC_MESSAGES/messages.po +++ b/searx/translations/sv/LC_MESSAGES/messages.po @@ -13,21 +13,22 @@ # sebstrgg , 2022. # mikni , 2022. # robert , 2022. +# tygyh , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-30 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-28 22:04+0000\n" +"Last-Translator: tygyh \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -207,40 +208,40 @@ msgstr "åtkomst nekad" msgid "server API error" msgstr "server API-fel" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Inga artiklar hittade" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Källa" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Kunde inte ladda nästa sida" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Ogiltiga inställningar, vänligen redigerar dina inställningar" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Ogiltiga inställningar" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "sökfel" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Avstängd" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minut(er) sedan" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} timm(e/ar), {minutes} minut(er) sedan" @@ -323,14 +324,6 @@ msgstr "Kväll" msgid "Night" msgstr "Natt" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Upptäck sökspråk automatiskt" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Upptäck automatiskt webbsökningens språk och byt till det." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Konverterar strängar till olika hashvärden." @@ -389,28 +382,32 @@ msgstr "Tor kontroll plugin" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Denna plugin kollar om IP-adressen av TOR-requesten är en TOR exit node, " -"och informerar användaren om den är det, som till exempel " -"check.torproject.org men från searxng." +"Denna plugin kontrollerar om adressen för begäran är en Tor-utgångsnod, " +"och informerar användaren om det är; som check.torproject.org, men från " +"SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"TOR exit node listan (https://check.torproject.org/exit-addresses) går " -"inte at nås för tillfället." +"Det gick inte att ladda ner listan över Tor-utgångsnoder från: " +"https://check.torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Du använder TOR. Din IP-adress verkar vara: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Du använder Tor och det ser ut som att du har denna externa IP-adress: " +"{ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Du använder inte TOR. Din IP-adress verkar vara: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Du använder inte Tor och du har denna externa IP-adress: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -587,15 +584,26 @@ msgstr "Sökspråk" msgid "Default language" msgstr "Standardspråk" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Upptäck automatiskt" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Vilket språk föredrar du för att söka?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"Välj Upptäck automatiskt för att tillåta SearXNG att upptäcka språket för " +"din fråga." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Slutför automatiskt" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Hitta saker medan du skriver" @@ -603,35 +611,35 @@ msgstr "Hitta saker medan du skriver" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Säker sökning" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Sträng" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Måttlig" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Inga" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtrera innehåll" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Open Access DOI-lösare" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -639,116 +647,119 @@ msgstr "" "Omdirigera till öppna versioner av publikationer när de är tillgängliga " "(tillägg krävs)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Motortoken" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Åtkomsttoken för privata motorer" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Användargränssnitt" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Gränssnittspråk" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Ändra språk för layouten" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Ändra SearXNG-layout" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Tema stil" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Välj auto för att använda webbläsarens inställningar" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Centrera" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "På" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Av" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Centrera resultat på sidan (Oscar layout)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Resultat i nya flikar" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Öppna resultat länkar i nya webbläsarflikar" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Oändlig bläddring" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Ladda automatiskt nästa sida när du bläddrar till botten av aktuell sida" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Sekretess" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP metod" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" -msgstr "Ändra hur formulär skickas" +msgstr "" +"Ändra hur formulär skickas, läs mer om förfrågningsmetoder" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Bildproxy" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Aktiverad" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Inaktiverad" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Använder proxy för bildresultat via SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Förfrågan i sidans titel" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -756,15 +767,15 @@ msgstr "" "När det är aktiverat innehåller resultatsidans titel din fråga. Din " "webbläsare kan spara denna titel" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Sökmotorer" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "För tillfället används sökmotorer" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -772,76 +783,76 @@ msgstr "" "Den här fliken visas inte för sökresultat, men du kan söka på motorerna " "som listas här via bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Tillåt" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Sökmotorns namn" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Genväg" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Stöder valda språket" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Tidsintervall" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Svarstid" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Max tid" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Pålitlighet" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Särskilda förfrågningar" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Nyckelord" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Namn" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Beskrivning" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Exempel" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Detta är listan med SearXNG:s direktsvarande moduler." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Detta är listan med plugins." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Kakor" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -849,23 +860,23 @@ msgstr "" "Detta är listan med kakor och dess värden som SearXNG förvarar på din " "dator." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Med den listan kan du bedöma SearXNG-transparens." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Kaknamn" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Värde" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Sökadressen för de för nuvarande sparade inställningarna" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -873,11 +884,11 @@ msgstr "" "Obs: Att ange anpassade inställningar i sökadressen kan minska sekretess " "genom att läcka data till de klickade resultatwebbplatserna." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL för att återställa dina inställningar i en annan webbläsare" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -885,7 +896,7 @@ msgstr "" "Dina anpassade inställningar i inställningarnas URL kan användas för att " "synkronisera inställningar mellan olika enheter." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -893,7 +904,7 @@ msgstr "" "Dessa inställningar lagras i dina kakor, vilket gör att vi inte lagrar " "data om dig." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -901,15 +912,15 @@ msgstr "" "Dessa kakor tjänar din egen bekvämlighet, vi använder inte dessa kakor " "för att spåra dig." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Spara" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Återställ standardvärden" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Tillbaka" @@ -979,7 +990,7 @@ msgstr "sök" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "Det finns för närvarande ingen data tillgänglig." +msgstr "Det finns för närvarande ingen data tillgänglig. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1498,3 +1509,52 @@ msgstr "göm video" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">lär dig mera om " #~ "förfrågningsmetoder" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Denna plugin kollar om IP-adressen " +#~ "av TOR-requesten är en TOR exit" +#~ " node, och informerar användaren om " +#~ "den är det, som till exempel " +#~ "check.torproject.org men från searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "TOR exit node listan " +#~ "(https://check.torproject.org/exit-addresses) går " +#~ "inte at nås för tillfället." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Du använder TOR. Din IP-adress verkar vara: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Du använder inte TOR. Din IP-adress verkar vara: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Upptäck sökspråk automatiskt" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Upptäck automatiskt webbsökningens språk och byt till det." diff --git a/searx/translations/szl/LC_MESSAGES/messages.mo b/searx/translations/szl/LC_MESSAGES/messages.mo index d1b43594b..abbd37716 100644 Binary files a/searx/translations/szl/LC_MESSAGES/messages.mo and b/searx/translations/szl/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/szl/LC_MESSAGES/messages.po b/searx/translations/szl/LC_MESSAGES/messages.po index 61024c1c0..df2be11e8 100644 --- a/searx/translations/szl/LC_MESSAGES/messages.po +++ b/searx/translations/szl/LC_MESSAGES/messages.po @@ -7,18 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-12-30 07:14+0000\n" "Last-Translator: gkkulik \n" -"Language-Team: Silesian \n" "Language: szl\n" +"Language-Team: Silesian " +"\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -198,40 +195,40 @@ msgstr "dostymp ôdkozany" msgid "server API error" msgstr "feler serwera API" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Żodyn elymynt niy znojdziōny" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Zdrzōdło" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Feler ladowanio nastympnyj strōny" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Niynoleżne sztalōnki, zmiyń swoje preferyncyje" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Niynoleżne sztalōnki" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "błōnd wyszukowanio" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Strzimane" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} minut(y) tymu" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} godzin(y), {minutes} minut(y) tymu" @@ -314,14 +311,6 @@ msgstr "Wieczōr" msgid "Night" msgstr "Noc" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "Autowykrywanie jynzyka wyszukowanio" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "Autōmatycznie wykrywo jynzyk zapytanio i szaltruje na niego." - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Kōnwertuje frazy na rozmajte skrōty hash." @@ -382,27 +371,25 @@ msgstr "Przidowek sprawdzanio necu Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Tyn przidowek sprawdzo, jeźli adresa ôd żōndanio to je wynzoł wyjścio TOR i " -"informuje używocza, jeźli tak je. To jak check.torproject.org ino ôd searxng." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Wykoz wynzłōw wyjścio TOR (https://check.torproject.org/exit-addresses) niy " -"ôdpowiado." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Używosz TOR. Twoja adresa IP wyglōndo na: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Niy używosz TOR. Twoja adresa IP wyglōndo na: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -516,8 +503,7 @@ msgstr "Sprawdź teroźne felery ôd tego motoru na GitHubie" #: searx/templates/simple/new_issue.html:69 msgid "I confirm there is no existing bug about the issue I encounter" -msgstr "" -"Potwiyrdzōm, że niy ma teroźnego feleru, co by sie tykoł mojigo problymu" +msgstr "Potwiyrdzōm, że niy ma teroźnego feleru, co by sie tykoł mojigo problymu" #: searx/templates/simple/new_issue.html:71 msgid "If this is a public instance, please specify the URL in the bug report" @@ -579,15 +565,24 @@ msgstr "Jynzyk wyszukowanio" msgid "Default language" msgstr "Wychodny jynzyk" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "W jakim jynzyku wolisz wyszukować?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Autodopołnianie" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Szukej w czasie pisanio" @@ -595,35 +590,35 @@ msgstr "Szukej w czasie pisanio" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Bezpieczne szukanie" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Ścisłe" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Postrzednie" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Brak" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Filtruj treści" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Podsystym DOI z ôtwartym dostympym" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -631,121 +626,121 @@ msgstr "" "Przekeruj do ôtwartych wersyji publikacyji, kej sōm dostympne (potrzebne " "rozszyrzynie)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Tokyny ôd motora" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Tokyny dostympu do prywatnych motorōw" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Interfejs używocza" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Jynzyk interfejsu" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Zmiyń jynzyk układu" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tymat" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "Zmiyń ukłod ôd SearXNG" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Styl ôd tymatu" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "Wybier autōmatyczny, żeby sie szaltrowoł podug sztalōnkōw przeglōndarki" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Wypostrzodkowanie" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Włōnczōny" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Zastawiōne" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Pokoż wyniki we postrzodku strōny (ukłod Oscar)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Wyniki na nowych kartach" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Ôtwōrz linki wynikōw we nowych kartach przeglōndarki" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Niyskōńczōne przewijanie" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Autōmatycznie laduj nastympno strōna przi przewijaniu do spodka teroźnyj " "strōny" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Prywatność" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "Metoda HTTP" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -"Zmiyń to, jak sōm wysyłane formulary, przewiydz sie " -"wiyncyj ô metodach żōndań" +"Zmiyń to, jak sōm wysyłane formulary, przewiydz sie wiyncyj ô metodach żōndań" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy ôbrazōw" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Włōnczōne" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Zastawiōne" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Przesyłanie wynikōw ôbrazōw bez proxy SearXNG" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Zapytanie we tytule ôd strōny" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -753,15 +748,15 @@ msgstr "" "Jak włōnczōne, to twoje zapytanie je we tytule ôd strōny wynikōw. Twoja " "przeglōndarka może spamiyntać tyn tytuł" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Wyszukowarki" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Teroźnie używane wyszukowarki" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -769,76 +764,76 @@ msgstr "" "Wyszukowarki z tyj zokłodki niy pokazujōm sie we wynikach wyszukowanio, " "ale możesz ich używać bez bangs." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Zwōl" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Miano ôd wyszukowarki" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Skrōt" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Spiyro ôbrany jynzyk" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Zakres czasu" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Czas ôdpowiedzi" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Maks. czas" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Wiarogodność" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Ekstra zapytania" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Słowa kluczowe" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Miano" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Ôpis" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Przikłady" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "To je wykoz modułōw wartkij ôdpowiedzi we SearXNG." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "To je wykoz przidowkōw." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -846,23 +841,23 @@ msgstr "" "To je wykoz cookies i jejich werty, co SearXNG zapisuje na twojim " "kōmputrze." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Ze pōmocōm tego wykazu możesz ôcynić przejzdrzistość SearXNG." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Miano ôd cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Wert" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Wyszukej adresy URL aktualnie spamiyntanych preferyncyji" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -871,11 +866,11 @@ msgstr "" " może zmyńszyć prywatność bez przenoszynie danych do klikniyntych strōn z" " wynikōw." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL to prziwrōcynio twojich sztalōnkōw na inkszyj przeglōndarce" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -883,7 +878,7 @@ msgstr "" "Skazowanie włosnych parametrōw we adresie sztalōnkōw może być używane do " "synchrōnizowanio sztalōnkōw miyndzy maszinami." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -891,7 +886,7 @@ msgstr "" "Te sztalōnki sōm trzimane we zbiorach cookies, tōż mogymy niy trzimać " "tych danych ô ciebie." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -899,15 +894,15 @@ msgstr "" "Te zbiory cookies sużōm ino twojimu kōmfortowi, niy używōmy ich do " "śledzynio cie." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Spamiyntej" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Prziwrōć wychodne" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Nazod" @@ -1259,3 +1254,53 @@ msgstr "skryj wideo" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">przewiydz sie wiyncyj ô " #~ "metodach HTTP" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Tyn przidowek sprawdzo, jeźli adresa ôd" +#~ " żōndanio to je wynzoł wyjścio TOR" +#~ " i informuje używocza, jeźli tak je." +#~ " To jak check.torproject.org ino ôd " +#~ "searxng." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Wykoz wynzłōw wyjścio TOR " +#~ "(https://check.torproject.org/exit-addresses) niy " +#~ "ôdpowiado." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Używosz TOR. Twoja adresa IP wyglōndo na: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Niy używosz TOR. Twoja adresa IP wyglōndo na: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Autowykrywanie jynzyka wyszukowanio" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Autōmatycznie wykrywo jynzyk zapytanio i szaltruje na niego." + diff --git a/searx/translations/ta/LC_MESSAGES/messages.mo b/searx/translations/ta/LC_MESSAGES/messages.mo index e71bd76df..cb11269d8 100644 Binary files a/searx/translations/ta/LC_MESSAGES/messages.mo and b/searx/translations/ta/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ta/LC_MESSAGES/messages.po b/searx/translations/ta/LC_MESSAGES/messages.po index c47ebc71a..0fda30744 100644 --- a/searx/translations/ta/LC_MESSAGES/messages.po +++ b/searx/translations/ta/LC_MESSAGES/messages.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-04 07:18+0000\n" "Last-Translator: Markus Heiser \n" "Language: ta\n" @@ -203,40 +203,40 @@ msgstr "அணுகல் மறுக்கப்பட்டது" msgid "server API error" msgstr "சேவையக API பிழை" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "எதுவும் கிடைக்கவில்லை" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "ஆதாரம்" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "அடுத்த பக்கத்தை திறப்பதில் தவறு நிகழ்ந்துவிட்டது." -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "ஏற்க முடியாத அமைப்பு,உங்கள் விருப்பத்தை தொகுக்கவும்" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "ஏற்கமுடியாத அமைப்பு" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "தேடல் பிழை" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "இடைநிறுத்தப்பட்டது" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} நிமிடங்களுக்கு முன்னால்" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} மணிநேரம், {minutes} நிமிடங்களுக்கு முன்னால்" @@ -317,14 +317,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "சரங்களை வெவ்வேறு ஹாஷ் டைஜெஸ்ட்களாக மாற்றுகிறது." @@ -385,22 +377,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -579,15 +573,24 @@ msgstr "தேடல் மொழி" msgid "Default language" msgstr "இயல்புநிலை மொழி" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "தேடலுக்கு எந்த மொழியை விரும்புகிறீர்கள்?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "நிறைவுத் தானியக்கம்" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "உள்ளிடும் போதே தேடு" @@ -595,35 +598,35 @@ msgstr "உள்ளிடும் போதே தேடு" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "பாதுகாப்பன தேடல்" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "கண்டிப்பான" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "மிதமான" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "எதுவுமில்லை" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "வடிகட்டி உள்ளடக்கம்" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "அணுகல் DOI தீர்வைத் திறக்கவும்" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -631,116 +634,116 @@ msgstr "" "கிடைக்கும் போது வெளியீடுகளின் திறந்த அணுகல் பதிப்புகளுக்குத் " "திருப்பிவிடவும் (சொருகி தேவை)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "எஞ்சின் டோக்கன்கள்" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "தனியார் இயந்திரங்களுக்கான அணுகல் டோக்கன்கள்" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "பயனர் இடைமுகப்பு" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "முகப்பின் மொழி" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "வடிவமைப்பின் மொழியை மாற்று" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "தீம்" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "SearXNG தளவமைப்பை மாற்றவும்" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "தீம் பாணி" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "உங்கள் உலாவி அமைப்புகளைப் பின்பற்ற தானாகத் தேர்ந்தெடுக்கவும்" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "இயக்கு" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "அமர்த்து" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "தேடல் முடிவுகள் புதிய Tab-ல்" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "இணைப்புகளை புதிய Tab-ல் திறக்கவும்" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "தொடர் பட்டியல்" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "பக்கத்தின் முடிவை அடைந்தவுடன் தானாக அடுத்த பக்கததிற்கு செல்லவும்" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "தனியுரிமை" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "பட நிகராளி" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "செயல்படுத்து" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "நிறுத்தப்பட்டது" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "SearXNG மூலம் படத்தின் முடிவுகளைப் பதிலீடு செய்கிறது" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "பக்கத்தின் தலைப்பில் வினவல்" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -748,90 +751,90 @@ msgstr "" "இயக்கப்பட்டால், முடிவுப் பக்கத்தின் தலைப்பில் உங்கள் வினவல் இருக்கும். " "உங்கள் உலாவி இந்தத் தலைப்பைப் பதிவுசெய்ய முடியும்" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "எந்திரங்கள்" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "தற்போது பயன்படுத்திய தேடுபொறிகள்" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "அனுமதி" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "எந்திரத்தின் பெயர்" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "குறுக்குவழி" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "தேர்ந்தெடுத்த மொழிக்கு ஆதரவு உள்ளது." #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "நேர வரம்பு" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "பதில் நேரம்" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "அதிகபட்ச நேரம்" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "நம்பகத்தன்மை" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "சிறப்பு வினாக்கள்" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "குறிப்புச்சொற்கள்" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "பெயர்" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "விளக்கம்" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "எடுத்துக்காட்டுகள்" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "இது SearXNG இன் உடனடி பதில் தொகுதிகளின் பட்டியல்." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "இது செருகுநிரல்களின் பட்டியல்." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "நினைவிகள்" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -839,23 +842,23 @@ msgstr "" "இது உங்கள் கணினியில் SearXNG சேமிக்கும் குக்கீகளின் பட்டியல் மற்றும் " "அவற்றின் மதிப்புகள்." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "அந்த பட்டியலின் மூலம், நீங்கள் SearXNG வெளிப்படைத்தன்மையை மதிப்பிடலாம்." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "நினைவியின் பெயர்" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "மதிப்பு" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "தற்போது சேமிக்கப்பட்ட விருப்பத்தேர்வுகளில் வலைதள முகவரியைத் தேடு" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -863,17 +866,17 @@ msgstr "" "குறிப்பு : தேடல் வலைதள முகவரியில் குறிப்பிட்ட விருப்ப அமைப்புகள், " "கிடைத்தத் தளங்களை சொடுக்குவதன் மூலம் தரவுகள் கசிவதால் அகவுரிமை குறையும்." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "மற்றொரு உலாவியில் உங்கள் விருப்பங்களை மீட்டமைப்பதற்கான URL" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -881,7 +884,7 @@ msgstr "" "இந்த அமைப்புகள் உங்கள் குக்கீகளில் சேமிக்கப்பட்டுள்ளன, இது உங்களைப் " "பற்றிய இந்தத் தரவைச் சேமிக்காமல் இருக்க அனுமதிக்கிறது." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -889,15 +892,15 @@ msgstr "" "இந்த நினைவிகள் உங்களின் வசதிக்காக மட்டுமே. இந்த நினைவிகள் உங்களை உளவு " "பார்க்காது." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "சேமி" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "இயல்புநிலைக்குத் திருப்பவும்" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1486,3 +1489,44 @@ msgstr "காணொளிகளை மறை" #~ " rel=\"external\">கோரிக்கை முறைகள் பற்றி மேலும்" #~ " அறிக" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/te/LC_MESSAGES/messages.mo b/searx/translations/te/LC_MESSAGES/messages.mo index 0ef4f80f9..c4149752c 100644 Binary files a/searx/translations/te/LC_MESSAGES/messages.mo and b/searx/translations/te/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/te/LC_MESSAGES/messages.po b/searx/translations/te/LC_MESSAGES/messages.po index 7542a692b..8ba2afea1 100644 --- a/searx/translations/te/LC_MESSAGES/messages.po +++ b/searx/translations/te/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-11-04 07:18+0000\n" "Last-Translator: Markus Heiser \n" "Language: te\n" @@ -199,40 +199,40 @@ msgstr "అనుమతి లేదు" msgid "server API error" msgstr "సర్వర్ API లోపం" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "ఏమీ దొరకలేదు" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "మూలం" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "తదుపరి పేజీని లోడ్ చేయడంలో లోపం" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "చెల్లని సెట్టింగ్‌లు, దయచేసి మీ ప్రాధాన్యతలను సవరించండి" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "చెల్లని అమరికలు" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "శోధనలో లోపము" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "రద్ధు చెయ్యబడింది" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} నిమిషము(ల) క్రిందట" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} గంట(లు), {minutes} నిమిషం(లు) క్రితం" @@ -307,14 +307,6 @@ msgstr "" msgid "Night" msgstr "" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "స్ట్రింగ్‌లను విభిన్న హాష్ డైజెస్ట్‌లుగా మారుస్తుంది." @@ -375,22 +367,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -566,15 +560,24 @@ msgstr "శోధన భాష" msgid "Default language" msgstr "నిష్క్రియ భాష" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "శోధన కోసం మీరు ఏ భాషను ఇష్టపడతారు?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "ఆటోకంప్లేటే" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "టైపు చేస్తూ శోధించు" @@ -582,35 +585,35 @@ msgstr "టైపు చేస్తూ శోధించు" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "సురక్షితశోధన" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "కఠినమైన" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "మితమైన" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "ఏమీ లేదు" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "విషయాలను వడకట్టు" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "యాక్సెస్ DOI పరిష్కరిణిని తెరవండి" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -618,118 +621,118 @@ msgstr "" "అందుబాటులో ఉన్నప్పుడు ప్రచురణల యొక్క ఓపెన్-యాక్సెస్ వెర్షన్‌లకు దారి " "మళ్లించండి (ప్లగ్ఇన్ అవసరం)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "ఇంజిన్ టోకెన్లు" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "ప్రైవేట్ ఇంజిన్ల కోసం యాక్సెస్ టోకెన్లు" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "వినియోగ మార్గము" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "వినిమయసీమ భాష" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "వినిమయసీమ యొక్క భాషను మార్చు" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "థీమ్" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "SearXNG లేఅవుట్‌ని మార్చండి" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "థీమ్ శైలి" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "మీ బ్రౌజర్ సెట్టింగ్‌లను అనుసరించడానికి ఆటో ఎంచుకోండి" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "మధ్య అమరిక" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "పై" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "ఆఫ్" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "పేజీ మధ్యలో ఫలితాలను ప్రదర్శిస్తుంది (ఆస్కార్ లేఅవుట్)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "కొత్త ట్యాబ్‌లలో ఫలితాలు" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "కొత్త బ్రౌజర్ ట్యాబ్‌లలో ఫలితాల లింక్‌లను తెరవండి" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "అనంతమైన స్క్రోల్" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "ప్రస్తుత పేజీ దిగువకు స్క్రోల్ చేస్తున్నప్పుడు తదుపరి పేజీని స్వయంచాలకంగా" " లోడ్ చేయండి" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "ఆంతరంగికత" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP పద్ధతి" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "చిత్రం ప్రాక్సీ" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "ఎనేబుల్డ్" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "దిశల్డ్" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "SearXNG ద్వారా ఇమేజ్ ఫలితాలను ప్రాక్సీ చేస్తోంది" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "పేజీ శీర్షికలో ప్రశ్న" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -737,15 +740,15 @@ msgstr "" "ప్రారంభించబడినప్పుడు, ఫలిత పేజీ యొక్క శీర్షిక మీ ప్రశ్నను కలిగి ఉంటుంది. " "మీ బ్రౌజర్ ఈ శీర్షికను రికార్డ్ చేయగలదు" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "యంత్రాలు" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "ప్రస్తుతం ఉపయోగించబడుతున్న శోధన యంత్రాలు" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -753,76 +756,76 @@ msgstr "" "ఈ ట్యాబ్ శోధన ఫలితాల కోసం చూపబడదు, కానీ మీరు ఇక్కడ జాబితా చేయబడిన " "ఇంజిన్‌లను బ్యాంగ్స్ ద్వారా శోధించవచ్చు." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "అనుమతించు" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "యంత్రం పేరు" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "సత్వరమార్గం" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "ఎంచుకున్న భాషకు మద్దతు ఇస్తుంది" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "కాల శ్రేణి" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "ప్రతిస్పందన సమయం" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "గరిష్ఠ సమయం" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "విశ్వసనీయత" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "ప్రత్యేక ప్రశ్నలు" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "కీలకపదాలు" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "పేరు" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "వర్ణన" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "ఉదాహరణలు" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "ఇది SearXNG యొక్క తక్షణ సమాధాన మాడ్యూల్‌ల జాబితా." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "ఇది ప్లగిన్‌ల జాబితా." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "కుకీలు" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -830,23 +833,23 @@ msgstr "" "ఇది మీ కంప్యూటర్‌లో SearXNG నిల్వ చేస్తున్న కుక్కీల జాబితా మరియు వాటి " "విలువలు." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "ఆ జాబితాతో, మీరు SearXNG పారదర్శకతను అంచనా వేయవచ్చు." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "కుకీ పేరు" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "విలువ" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "ప్రస్తుతం సేవ్ చేయబడిన ప్రాధాన్యతల URLని శోధించండి" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -854,11 +857,11 @@ msgstr "" "గమనిక: శోధన URLలో అనుకూల సెట్టింగ్‌లను పేర్కొనడం క్లిక్ చేసిన ఫలితాల " "సైట్‌లకు డేటాను లీక్ చేయడం ద్వారా గోప్యతను తగ్గిస్తుంది." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "మరొక బ్రౌజర్‌లో మీ ప్రాధాన్యతలను పునరుద్ధరించడానికి URL" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -866,7 +869,7 @@ msgstr "" "ప్రాధాన్యతల URLలో అనుకూల సెట్టింగ్‌లను పేర్కొనడం ద్వారా పరికరాల్లో " "ప్రాధాన్యతలను సమకాలీకరించడానికి ఉపయోగించవచ్చు." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -874,7 +877,7 @@ msgstr "" "ఈ సెట్టింగ్‌లు మీ కుక్కీలలో నిల్వ చేయబడ్డాయి, ఇది మీ గురించిన ఈ డేటాను " "నిల్వ చేయకుండా ఉండటానికి మాకు అనుమతిస్తుంది." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -882,15 +885,15 @@ msgstr "" "ఈ కుక్కీలు మీ సౌకర్యార్థం, మిమ్మల్ని ట్రాక్ చేయడానికి మేము ఈ కుక్కీలను " "ఉపయోగించము." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "సేవ్ చేయండి" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "నిష్క్రియాలకు అమర్చు" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "వెనుకకు" @@ -1473,3 +1476,44 @@ msgstr "వీడియోను దాచిపెట్టు" #~ " rel=\"external\">అభ్యర్థన పద్ధతుల గురించి మరింత" #~ " తెలుసుకోండి" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" + diff --git a/searx/translations/th/LC_MESSAGES/messages.mo b/searx/translations/th/LC_MESSAGES/messages.mo index e4f68a4bf..0b9649bb0 100644 Binary files a/searx/translations/th/LC_MESSAGES/messages.mo and b/searx/translations/th/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/th/LC_MESSAGES/messages.po b/searx/translations/th/LC_MESSAGES/messages.po index d98eb2854..e1109b8a2 100644 --- a/searx/translations/th/LC_MESSAGES/messages.po +++ b/searx/translations/th/LC_MESSAGES/messages.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PROJECT project. # FIRST AUTHOR , 2022. # watchakorn-18k , 2022. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-07-06 22:11+0000\n" -"Last-Translator: watchakorn-18k \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-19 11:39+0000\n" +"Last-Translator: return42 \n" "Language: th\n" "Language-Team: Thai " -"\n" +"\n" "Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -127,7 +128,7 @@ msgstr "เว็บ" #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS'] #: searx/searxng.msg msgid "scientific publications" -msgstr "" +msgstr "บทความทางวิทยาศาสตร์" #. STYLE_NAMES['AUTO'] #: searx/searxng.msg @@ -196,40 +197,40 @@ msgstr "การเข้าถึงถูกปฏิเสธ" msgid "server API error" msgstr "ข้อผิดพลาดจาก API ของเซิร์ฟเวอร์" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "ไม่พบรายการ" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "แหล่งที่มา" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "เกิดข้อผิดพลาดในการโหลดหน้าถัดไป" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "การตั้งค่าไม่ถูกต้อง โปรดแก้ไขการตั้งค่าของคุณ" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "การตั้งค่าไม่ถูกต้อง" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "ข้อผิดพลาดจากการค้นหา" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "ถูกระงับ" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} นาทีก่อน" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} ชั่วโมง),{minutes} นาทีก่อน" @@ -277,40 +278,38 @@ msgid "" "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or" " WebP." msgstr "" +"ไม่สามารถอ่านลิงก์ของภาพนี้ได้ " +"อาจเป็นเพราะว่ามีการใข้รูปแบบของไฟล์ที่ไม่ได้สนับสนุน ระบบ TinEye " +"นั้นรองรับแค่ไฟล์ JPEG, PNG, GIF, BMP, TIFF หรือ WebP" #: searx/engines/tineye.py:46 msgid "" "The image is too simple to find matches. TinEye requires a basic level of" " visual detail to successfully identify matches." msgstr "" +"รูปภาพนี้มีจุดสังเกตที่น้อยเกินไป ระบบของ TinEye " +"นั้นต้องใช้ภาพที่มีลายละเอียดจุดเด่นที่ชัดเจนเล็กน้อย " +"ถึงจะสามารถหาภาพที่คล้ายกันได้" #: searx/engines/tineye.py:52 msgid "The image could not be downloaded." -msgstr "" +msgstr "ไม่สามารถดาวน์โหลดภาพนี้ได้" #: searx/engines/wttr.py:101 msgid "Morning" -msgstr "" +msgstr "เช้า" #: searx/engines/wttr.py:101 msgid "Noon" -msgstr "" +msgstr "เที่ยงวัน" #: searx/engines/wttr.py:101 msgid "Evening" -msgstr "" +msgstr "เย็น" #: searx/engines/wttr.py:101 msgid "Night" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" +msgstr "ค่ำ" #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." @@ -368,22 +367,24 @@ msgstr "" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" msgstr "" #: searx/plugins/tracker_url_remover.py:29 @@ -559,15 +560,24 @@ msgstr "ค้นหาภาษา" msgid "Default language" msgstr "ภาษาเริ่มต้น" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "คุณต้องการค้นหาภาษาใด?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "เติมข้อความอัตโนมัติ" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "ค้นหาสิ่งต่างๆในขณะพิมพ์" @@ -575,150 +585,150 @@ msgstr "ค้นหาสิ่งต่างๆในขณะพิมพ์ #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "ค้นหาแบบปลอดภัย" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "เข้มงวด" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "ปานกลาง" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "ไม่มี" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "ตัวกรอกเนื้อหา" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "เปิดการเข้าถึงตัวแก้ไข DOI" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "เปลี่ยนเส้นทางไปยังรุ่นเอกสารที่เปิดให้เข้าถึงได้ (ต้องใช้ปลั๊กอิน)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "โทเค็นของเครื่องมือ" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "โทเคนการเข้าถึงของเครื่องมือส่วนตัว" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "ส่วนต่อประสานกับผู้ใช้" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "ภาษาส่วนต่อประสาน" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "เปลี่ยนภาษาของเค้าโครง" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "ธีม" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "เปลี่ยนเค้าโครง เซียร์เอ็กซ์เอ็นจี" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "รูปแบบธีม" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "เลือกอัตโนมัติเพื่อติดตามการตั้งค่าของเบราว์เซอร์ของคุณ" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "จัดตำแหน่งกึ่งกลาง" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "เปิด" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "ปิด" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "แสดงผลตรงกลางหน้า (เค้าโครงออสการ์)" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "ผลลัพธ์ในแท็บใหม่" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "เปิดลิงก์ผลลัพธ์ด้วยแท็บเบราว์เซอร์ใหม่" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "เลื่อนเมาส์แบบไม่มีที่สิ้นสุด" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "โหลดหน้าถัดไปโดยอัตโนมัติเมื่อเลื่อนเมาส์ลงไปที่ด้านล่างของหน้าปัจจุบัน" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "ความเป็นส่วนตัว" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP เมธอด" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "พร็อกซีรูปภาพ" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "เปิดใช้งาน" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "ปิดใช้งาน" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "การแสดงพร็อกซี่ของภาพผ่าน เซียร์เอ็กซ์เอ็นจี" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "คิวรีในชื่อหน้า" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -726,15 +736,15 @@ msgstr "" "เมื่อเปิดใช้งานแล้ว ชื่อของหน้าผลลัพธ์จะมีข้อความคิวรีของคุณ " "เบราว์เซอร์ของคุณสามารถบันทึกชื่อของหน้านี้ได้" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "เครื่องมือ" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "เครื่องมือค้นหาที่ใช้อยู่ในปัจจุบัน" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -742,98 +752,98 @@ msgstr "" "แท็บนี้ไม่แสดงผลการค้นหา " "แต่คุณสามารถค้นหาเครื่องมือที่แสดงไว้ที่นี่ที่เรียบง่าย" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "อนุญาต" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "ชื่อเครื่องมือ" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "ทางลัด" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "รองรับภาษาที่เลือกแล้ว" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "ช่วงเวลา" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "เวลาตอบสนอง" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "เวลาสูงสุด" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "ความน่าเชื่อถือ" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "การคิวรีพิเศษ" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "คำสำคัญ" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "ชื่อ" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "คำอธิบาย" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "ตัวอย่าง" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "นี่คือรายการโมดูลที่ตอบรับทันทีของเซียร์เอ็กซ์เอ็นจี" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "นี่คือรายการปลั๊กอิน" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "คุกกี้" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "นี่คือรายการคุกกี้และค่าของคุกกี้ที่เซียร์เอ็กซ์เอ็นจีจัดเก็บไว้ในคอมพิวเตอร์ของคุณ" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "ด้วยรายการดังกล่าว คุณสามารถประเมินความโปร่งใสของเซียร์เอ็กซ์เอ็นจีได้" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "ชื่อคุกกี้" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "ค่า" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "ค้นหา URL จากการตั้งค่าที่บันทึกไว้ในปัจจุบัน" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -841,11 +851,11 @@ msgstr "" "หมายเหตุ: การระบุการตั้งค่าแบบกำหนดเองใน URL " "การค้นหาสามารถลดความเป็นส่วนตัวได้โดยการทำให้ข้อมูลรั่วไหลไปยังไซต์ผลลัพธ์ที่คลิก" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL เพื่อกู้คืนการตั้งค่าของคุณในเบราว์เซอร์อื่น" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -853,7 +863,7 @@ msgstr "" "การระบุการตั้งค่าแบบกำหนดเองใน URL " "ค่ากำหนดสามารถใช้เพื่อซิงค์กับค่ากำหนดในอุปกรณ์ต่างๆได้" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -861,7 +871,7 @@ msgstr "" "การตั้งค่าพวกนี้ถูกเก็บไว้ในคุกกี้ของคุณแล้ว " "ซึ่งช่วยให้เราไม่สามารถจัดเก็บข้อมูลนี้เกี่ยวกับคุณได้" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -869,15 +879,15 @@ msgstr "" "คุกกี้พวกนี้ให้บริการเพื่อความสะดวกของคุณ " "เราไม่ใช้คุกกี้เหล่านี้เพื่อติดตามคุณ" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "บันทึก" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "รีเซ็ตค่าเริ่มต้น" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "กลับ" @@ -1218,3 +1228,44 @@ msgstr "ซ่อนวิดีโอ" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">เรียนรู้เพิ่มเติมเกี่ยวกับวิธีการส่งคำขอ" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "ตรวจพบคำในการค้นหาอัตโนมัติ" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "ระบบจะตรวจจับภาษาที่ใช้ในการค้นหา และเปลี่ยนไปค้นหาในภาษานั้นอัตโนมัติ" + diff --git a/searx/translations/tr/LC_MESSAGES/messages.mo b/searx/translations/tr/LC_MESSAGES/messages.mo index 880d3c058..2da509210 100644 Binary files a/searx/translations/tr/LC_MESSAGES/messages.mo and b/searx/translations/tr/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/tr/LC_MESSAGES/messages.po b/searx/translations/tr/LC_MESSAGES/messages.po index daa5042cb..2dad80868 100644 --- a/searx/translations/tr/LC_MESSAGES/messages.po +++ b/searx/translations/tr/LC_MESSAGES/messages.po @@ -11,20 +11,23 @@ # 0xFFD , 2022. # crazychicken1 , 2022. # Kayra Uylar , 2022. +# emirhan , 2023. +# return42 , 2023. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-10-28 07:18+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-10 11:20+0000\n" +"Last-Translator: return42 \n" +"Language-Team: Turkish \n" "Language: tr\n" -"Language-Team: Turkish " -"\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Weblate 4.16.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -204,40 +207,40 @@ msgstr "erişim engellendi" msgid "server API error" msgstr "sunucu API hatası" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Öğe bulunamadı" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Kaynak" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Sonraki sayfa yüklenemedi" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Geçersiz ayarlar, lütfen tercihlerinizi düzenleyin" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Geçersiz ayarlar" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "arama hatası" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Askıya alındı" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} dakika önce" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} saat, {minutes} dakika önce" @@ -278,6 +281,8 @@ msgid "" "{numCitations} citations from the year {firstCitationVelocityYear} to " "{lastCitationVelocityYear}" msgstr "" +"{firstCitationVelocityYear} yılından {lastCitationVelocityYear} yılına kadar " +"{numCitations} alıntı(lar)" #: searx/engines/tineye.py:40 msgid "" @@ -317,14 +322,6 @@ msgstr "Akşam" msgid "Night" msgstr "Gece" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Dizileri farklı özdeğerlerine çevirir." @@ -385,28 +382,32 @@ msgstr "Tor kontrol eklentisi" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Bu eklenti istek adresinin TOR çıkış düğümü olup olmadığını kontrol eder " -"ve öyleyse kullanıcıya haber verir, check.torproject.org benzeri ama " -"searxng'den." +"Bu eklenti, isteğin adresinin bir Tor çıkış düğümü olup olmadığını kontrol " +"eder ve varsa kullanıcıyı bilgilendirir; check.torproject.org gibi, ancak " +"SearXNG'den." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"TOR cıkış düğümü listesine (https://check.torproject.org/exit-addresses) " -"ulaşılamıyor." +"Tor çıkış düğümlerinin listesi şu adresten indirilemedi: https://check." +"torproject.org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "TOR kullanıyorsunuz. Gözüken IP adresiniz: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Tor kullanıyorsunuz ve şu harici IP adresine sahip olduğunuz anlaşılıyor: " +"{ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "TOR kullanmıyorsunuz. Gözüken IP adresiniz: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Tor kullanmıyorsunuz ve şu harici IP adresine sahipsiniz: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -586,15 +587,26 @@ msgstr "Arama dili" msgid "Default language" msgstr "Varsayılan dil" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "Özdevimli algılama" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Arama için hangi dili tercih edersiniz?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" +"SearXNG'nin sorgunuzun dilini algılamasına izin vermek için Özdevimli " +"algıla'yı seçin." + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Otomatik tamamlama" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Yazarken bir şeyler bulun" @@ -602,35 +614,35 @@ msgstr "Yazarken bir şeyler bulun" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Güvenli Arama" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Sıkı" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Orta" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Yok" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "İçeriği süzün" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Açık Erişim DOI çözümleyicisi" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -638,118 +650,121 @@ msgstr "" "Mümkün olduğunda yayınların açık erişimli sürümlerine yeniden yönlendirir" " (eklenti gerekli)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "Motor belirteçleri" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "Özel motorlar için erişim belirteçleri" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Kullanıcı arayüzü" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Arayüz dili" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Düzen dilini değiştirin" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Tema" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "SearXNG düzenini değiştir" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Tema stili" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "İnternet tarayıcınızın ayarlarını kullanmak için otomatik modu seçin" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Ortaya hizalama" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Açık" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Kapalı" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "Sonuçları sayfanın ortasında görüntüler (Oscar düzeni)." -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Sonuçlar yeni sekmelerde" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Yeni tarayıcı sekmelerinde sonuçta ortaya çıkan bağlantıları aç" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Sonsuz kaydırma" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Şu anki sayfanın en altına kaydırıldığında sonraki sayfayı otomatik " "olarak yükle" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Gizlilik" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Metodu" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" +"Formların gönderilme şeklini değiştirin, istek yöntemleri hakkında daha fazlasını öğrenin" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Görsel vekil sunucu" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Etkinleştirildi" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Etkisizleştirildi" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "Resim sonuçları SearXNG üzerinden vekil sunucu ile iletiliyor" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "Sayfanın başındaki arama sorgusu" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" @@ -757,15 +772,15 @@ msgstr "" "Bu etkinleştirildiği zaman sonuç sayfasının başlığı arama sonuçlarınızı " "da içerir. Tarayıcınız bu başlığı kaydedebilir" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Motorlar" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Şu anda kullanılan arama motorları" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." @@ -773,76 +788,76 @@ msgstr "" "Bu sekme arama sonuçlarında görünmüyor, ama listelenen motorlarını " "\"bang\"ler ile arayabilirsiniz." -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "İzin ver" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Motor adı" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Kısayol" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Seçili dili destekler" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Zaman aralığı" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Yanıt süresi" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "En fazla zaman" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Güvenilirlik" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Özel Arama Sorguları" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Anahtar kelimeler" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Ad" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Açıklama" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Örnekler" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "Bu, SearXNG'in anlık cevap modüllerinin listesidir." -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Bu eklentilerin listesidir." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Tanımlama Bilgileri" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." @@ -850,23 +865,23 @@ msgstr "" "Bu, SearXNG'nin bilgasayarında sakladığı çerezlerin ve çerezlerin " "değerlerinin bir listesidir." -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "Bu listeyle SeaXNG şeffaflığına ulaşbilirsiniz." -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Tanımlama bilgisi adı" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Değer" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "Şu anda kaydedilmiş tercihlerin arama URL'si" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -874,11 +889,11 @@ msgstr "" "Not: Arama URL'sinde özel ayarların belirtilmesi, tıklanan sonuç " "sitelerine veri sızdırarak gizliliği azaltabilir." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "Seçeneklerinizi farklı bir tarayıcıda yükleme URL'i" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." @@ -886,7 +901,7 @@ msgstr "" "Tercihler URL'sinde özel ayarları belirtmek, cihazlar arasında senkronize" " etmek için kullanılabilir." -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -894,7 +909,7 @@ msgstr "" "Bu ayarlar tanımlama bilgilerinde saklanır, bu sizin hakkınızda bu " "verileri saklamamamıza izin verir." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -902,15 +917,15 @@ msgstr "" "Bu tanımlama bilgileri size kolaylık sağlar, sizi izlemek için bu " "çerezleri kullanmayız." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Kaydet" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Varsayılanları sıfırla" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Geri" @@ -1500,3 +1515,50 @@ msgstr "görüntüyü gizle" #~ " rel=\"external\">istek yöntemleri hakkında daha" #~ " fazla bilgi edinin" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Bu eklenti istek adresinin TOR çıkış " +#~ "düğümü olup olmadığını kontrol eder ve" +#~ " öyleyse kullanıcıya haber verir, " +#~ "check.torproject.org benzeri ama searxng'den." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "TOR cıkış düğümü listesine " +#~ "(https://check.torproject.org/exit-addresses) " +#~ "ulaşılamıyor." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "TOR kullanıyorsunuz. Gözüken IP adresiniz: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "TOR kullanmıyorsunuz. Gözüken IP adresiniz: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Arama dilini otomatik algıla" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Arama dilini otomatik algıla ve değiştir." diff --git a/searx/translations/uk/LC_MESSAGES/messages.mo b/searx/translations/uk/LC_MESSAGES/messages.mo index ba42250c6..92eabc82c 100644 Binary files a/searx/translations/uk/LC_MESSAGES/messages.mo and b/searx/translations/uk/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/uk/LC_MESSAGES/messages.po b/searx/translations/uk/LC_MESSAGES/messages.po index 15322ecda..67130eae6 100644 --- a/searx/translations/uk/LC_MESSAGES/messages.po +++ b/searx/translations/uk/LC_MESSAGES/messages.po @@ -7,15 +7,17 @@ # zubr139, 2016-2017 # Andrij Mizyk , 2022. # Markus Heiser , 2022, 2023. +# BalkanMadman , 2023. +# return42 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2023-01-13 07:14+0000\n" -"Last-Translator: Markus Heiser \n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-03-10 11:24+0000\n" +"Last-Translator: return42 \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -24,7 +26,7 @@ msgstr "" "? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > " "14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % " "100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.16.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -204,40 +206,40 @@ msgstr "доступ заборонено" msgid "server API error" msgstr "Помилка API сервера" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Нічого не знайдено" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Джерело" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Не вдалося завантажити наступну сторінку" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Неправильні налаштування, будь ласка, зробіть зміни в налаштуваннях" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Неправильні налаштування" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "помилка пошуку" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Призупинено" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} хвилин тому" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} годин, {minutes} хвилин тому" @@ -288,8 +290,8 @@ msgid "" " WebP." msgstr "" "Не вдалось зчитати зображення за вказаним URL. Можливо, тому що формат " -"даного зображення не підтримується. TinEye підтримує зображення у форматах " -"JPEG, PNG, GIF, BMP, TIFF та WebP." +"даного зображення не підтримується. TinEye підтримує зображення у " +"форматах JPEG, PNG, GIF, BMP, TIFF та WebP." #: searx/engines/tineye.py:46 msgid "" @@ -309,23 +311,15 @@ msgstr "Ранок" #: searx/engines/wttr.py:101 msgid "Noon" -msgstr "" +msgstr "День" #: searx/engines/wttr.py:101 msgid "Evening" -msgstr "" +msgstr "Вечір" #: searx/engines/wttr.py:101 msgid "Night" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" +msgstr "Ніч" #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." @@ -337,15 +331,15 @@ msgstr "геш-послідовність" #: searx/plugins/hostname_replace.py:9 msgid "Hostname replace" -msgstr "" +msgstr "Зміна імені сайту" #: searx/plugins/hostname_replace.py:10 msgid "Rewrite result hostnames or remove results based on the hostname" -msgstr "" +msgstr "Замінити ім'я хоста або видалити результати на основі імені хоста" #: searx/plugins/oa_doi_rewrite.py:9 msgid "Open Access DOI rewrite" -msgstr "" +msgstr "Переадресація на Open Access DOI" #: searx/plugins/oa_doi_rewrite.py:10 msgid "" @@ -369,7 +363,7 @@ msgstr "" #: searx/plugins/self_info.py:20 msgid "Self Information" -msgstr "" +msgstr "Інформація" #: searx/plugins/self_info.py:21 msgid "" @@ -381,27 +375,34 @@ msgstr "" #: searx/plugins/tor_check.py:25 msgid "Tor check plugin" -msgstr "" +msgstr "Плагін перевірки Tor" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" +"Цей плагін перевіряє, чи належить адреса запиту вихідному вузлу Tor і, якщо " +"так, інформує користувача; як check.torproject.org, але від SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" +"Не вдалось завантажити список вихідних вузлів Tor з: https://check.torproject" +".org/exit-addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Ви використовуєте TOR. Здається, Ваша IP-адреса: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" +"Ви використовуєте Tor і, здається, у вас наступна IP адреса: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "Ви не використовуєте TOR. Здається, Ваша IP-адреса: {ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -577,15 +578,24 @@ msgstr "Мова пошуку" msgid "Default language" msgstr "Стандартна мова" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Якій мові ви віддаєте перевагу для пошуку?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Автозаповнення" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Шукати підчас набору" @@ -593,279 +603,279 @@ msgstr "Шукати підчас набору" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "БезпечнийПошук" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Жорский" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Помірний" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Вимкнений" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Фільтр контенту" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Інтерфейс користувача" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Мова інтерфейсу" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Змінити мову сайту" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "Тема" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "Стиль теми" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "Центрування" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Ввімк." -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Вимк." -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Результати в нових вкладках" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Відкривати посилання результатів в нових вкладках" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Нескінченна прокрутка" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "" "Автоматично завантажувати наступну сторінку при прокрутці поточної до " "кінця" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Конфеденційність" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP Метод" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Проксі для зображень" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Ввімкнено" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Вимкнено" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Пошукові системи" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Пошукові системи, які використовуються" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Дозволити" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Назва пошукової системи" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Гарячі клавіші" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Підтримка обраної мови" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Часовий діапазон" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "Час відгуку" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Максимальний час" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "Надійність" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "Особливі запити" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Ключові слова" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Назва" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Опис" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Приклади" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "Це список плагінів." -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookie-файли" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Ім'я cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Значення" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "URL для відновлення Ваших налаштувань в іншому оглядачі" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -873,7 +883,7 @@ msgstr "" "Налаштування зберігаються в ваших cookie-файлах, що дає нам змогу не " "зберігати ці відомості про вас." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -881,15 +891,15 @@ msgstr "" "Ці cookie-файли необхідні винятково для вашої зручності, ми не " "використовуємо ці cookie-файли, щоб відслідковувати вас." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "Зберегти" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Відновити стандартні налаштування" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "Назад" @@ -959,7 +969,7 @@ msgstr "шукати" #: searx/templates/simple/stats.html:21 msgid "There is currently no data available. " -msgstr "В даний час немає доступних даних." +msgstr "В даний час немає доступних даних. " #: searx/templates/simple/stats.html:26 msgid "Scores" @@ -1478,3 +1488,44 @@ msgstr "приховати відео" #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\"" #~ " rel=\"external\">детальніше про методи " #~ "запитів" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Ви використовуєте TOR. Здається, Ваша IP-адреса: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Ви не використовуєте TOR. Здається, Ваша IP-адреса: {ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "" diff --git a/searx/translations/vi/LC_MESSAGES/messages.mo b/searx/translations/vi/LC_MESSAGES/messages.mo index 55c865a9a..2e08e3347 100644 Binary files a/searx/translations/vi/LC_MESSAGES/messages.mo and b/searx/translations/vi/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/vi/LC_MESSAGES/messages.po b/searx/translations/vi/LC_MESSAGES/messages.po index c2cd1e7c5..0ae6a7b2e 100644 --- a/searx/translations/vi/LC_MESSAGES/messages.po +++ b/searx/translations/vi/LC_MESSAGES/messages.po @@ -5,16 +5,17 @@ # Translators: # dd721411 , 2018 # Markus Heiser , 2022. +# nam000 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-12 07:18+0000\n" -"Last-Translator: Markus Heiser \n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" +"PO-Revision-Date: 2023-02-19 11:39+0000\n" +"Last-Translator: nam000 \n" "Language: vi\n" "Language-Team: Vietnamese " -"\n" +"\n" "Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -198,40 +199,40 @@ msgstr "Truy cập bị từ chối" msgid "server API error" msgstr "Lỗi máy chủ API" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "Không tìm thấy gì" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "Nguồn" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "Không thể tải trang kế tiếp" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "Cài đặt không hợp lệ, xin xem lại tuỳ chỉnh" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "Cài đặt không hợp lệ" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "lỗi tìm kiếm" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "Treo/gián đoạn/chặn" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} phút() trước" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} giờ, {minutes} phút trước" @@ -311,14 +312,6 @@ msgstr "Buổi chiều" msgid "Night" msgstr "Buổi tối" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "Chuyển các chuỗi thành các hash băm khác nhau." @@ -375,29 +368,26 @@ msgstr "Kiểm tra Tor plugin" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." msgstr "" -"Plugin này kiểm tra nếu một địa chỉ được yêu cầu có phải là một TOR exit " -"node hay không, và thông báo lại cho người dùng. Giống như " -"check.torproject.org nhưng từ SearXNG." #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" msgstr "" -"Danh sách TOR exit node (https://check.torproject.org/exit-addresses) " -"không thể được tiếp cận." #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "Bạn đang dùng TOR. Địa chỉ IP của bạn có thể là: {ip_address}." - -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" msgstr "" +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "Bạn hiện không sử dụng Tor và đây là địa chỉ IP của bạn: {ip_address}" + #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" msgstr "Trình loại bỏ URL theo dõi" @@ -433,12 +423,13 @@ msgid "search page" msgstr "tìm kiếm trang" #: searx/templates/simple/base.html:46 +#, fuzzy msgid "About" -msgstr "" +msgstr "Về chúng tôi" #: searx/templates/simple/base.html:50 msgid "Donate" -msgstr "" +msgstr "Ủng hộ" #: searx/templates/simple/base.html:54 #: searx/templates/simple/preferences.html:99 @@ -572,15 +563,24 @@ msgstr "Ngôn ngữ tìm kiếm" msgid "Default language" msgstr "Ngôn ngữ mặc định" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "Bạn muốn tìm kiếm bằng ngôn ngữ nào?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "Gợi ý tự động" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "Tìm kiếm ngay khi gõ" @@ -588,35 +588,35 @@ msgstr "Tìm kiếm ngay khi gõ" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "Tìm Kiếm An Toàn" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "Nghiêm ngặt" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "Vừa phải" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "Không" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "Lọc các nội dung" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "Trình xử lý DOI Truy Cập Miễn Phí" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" @@ -624,227 +624,227 @@ msgstr "" "Chuyển hướng đến các phiên bản truy cập miễn phí của ấn phẩm khi có thể " "(yêu cầu phần mở rộng)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "Giao diện người dùng" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "Ngôn ngữ giao diện" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "Thay đổi ngôn ngữ giao diện" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "Bật" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "Tắt" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "Hiện kết quả trên các thẻ mới" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "Mở kết quả trên những thẻ trình duyệt mới" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "Cuộn liên tục" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "Tự động tải trang kế tiếp khi cuộn đến cuối trang hiện tại" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "Quyền riêng tư" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, learn more about request methods" msgstr "" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "Proxy hình ảnh" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "Đã" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "Đã tắt" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "Các trình tìm kiếm" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "Các trình tìm kiếm đang được dùng" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "Cho phép" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "Tên trình tìm kiếm" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "Lối tắt" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "Có hỗ trợ ngôn ngữ được chọn" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "Khoảng thời gian" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "Thời gian tối đa" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "Các từ khoá" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "Tên" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "Mô tả" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "Các ví dụ" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Các cookie" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Tên cookie" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "Giá trị" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "URL tìm kiếm của tuỳ chỉnh được lưu hiện tại" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -853,17 +853,17 @@ msgstr "" "giảm mức độ riêng tư vì nó chuyển dữ liệu đến các trang kết quả được nhấp" " chọn." -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." @@ -871,7 +871,7 @@ msgstr "" "Những cài đặt này được lưu trữ trong các cookie, điều này cho phép chúng " "tôi không phải lưu các dữ liệu về bạn." -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." @@ -879,15 +879,15 @@ msgstr "" "Những cookie này chỉ phục vụ cho chính bạn, chúng tôi không sử dụng chúng" " để theo dõi bạn." -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "Đưa về mặc định" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "" @@ -1480,3 +1480,53 @@ msgstr "ẩn phim" #~ " rel=\"external\">tìm hiểu thêm về các " #~ "phương thức tìm kiếm" +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "Plugin này kiểm tra nếu một địa" +#~ " chỉ được yêu cầu có phải là" +#~ " một TOR exit node hay không, " +#~ "và thông báo lại cho người dùng." +#~ " Giống như check.torproject.org nhưng từ" +#~ " SearXNG." + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "" +#~ "Danh sách TOR exit node " +#~ "(https://check.torproject.org/exit-addresses) không " +#~ "thể được tiếp cận." + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "Bạn đang dùng TOR. Địa chỉ IP của bạn có thể là: {ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "Tự động phát hiện ngôn ngữ tìm kiếm" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "Tự động phát hiện ngôn ngữ tìm kiếm và chuyển sang ngôn ngữ đó." + diff --git a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo index f4b59e70c..ddd626e5f 100644 Binary files a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo and b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po index 478558062..ef338fdf2 100644 --- a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po +++ b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po @@ -17,21 +17,22 @@ # tjvfxtiwdr , 2022. # a , 2022. # YaoSiQian <2229561981@qq.com>, 2022. +# yfdyh000 , 2023. msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" -"PO-Revision-Date: 2022-12-18 19:54+0000\n" -"Last-Translator: YaoSiQian <2229561981@qq.com>\n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh_Hans_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.15.2\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -211,40 +212,40 @@ msgstr "拒绝访问" msgid "server API error" msgstr "服务器 API 错误" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "未找到项目" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "来源" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "载入下个页面时发生错误" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "无效设置,请编辑您的首选项" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "无效设置" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "搜索错误" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "暂停服务" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} 分钟前" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} 小时 {minutes} 分钟前" @@ -319,14 +320,6 @@ msgstr "傍晚" msgid "Night" msgstr "夜晚" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "自动检测搜索语言" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "自动检测查询搜索语言并切换到它。" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "将字符串转换为不同的散列摘要值。" @@ -379,23 +372,27 @@ msgstr "Tor 网络检测插件" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." -msgstr "该插件检查请求的 IP 地址是否为 Tor 出口节点,如果是则通知用户,可视为 searxng 中的 check.torproject.org 。" +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." +msgstr "此插件检查地址是否为 Tor 出口节点并给出结果,是由 SearXNG 提供的类似 " +"check.torproject.org 的服务。" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." -msgstr "无法获取 Tor 出口节点列表(https://check.torproject.org/exit-addresses)。" +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" +msgstr "未能从如下地址下载 Tor 出口节点的名单: https://check.torproject.org/exit-" +"addresses" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "你在使用 Tor。你的 IP 地址应该是{ip_address}." +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "您似乎在使用 Tor,您的外部 IP 地址为: {ip_address}" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "你没有在使用 Tor。你的 IP 地址应该是{ip_address}." +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "您并未使用 Tor,您的外部 IP 地址为: {ip_address}" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -568,15 +565,24 @@ msgstr "搜索语言" msgid "Default language" msgstr "默认语言" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "自动检测" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "您偏好搜索哪种语言?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "选择自动检测可使 SearXNG 检测您的检索关键词的语言。" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "自动补全" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "自动补全字词" @@ -584,121 +590,121 @@ msgstr "自动补全字词" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "安全搜索" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "严格" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "中等" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "无" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "内容过滤" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "开放访问 DOI 解析器" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "尽可能重定向到出版物的开放访问版本(需要插件)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "引擎令牌" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "私有引擎的访问令牌" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "用户界面" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "界面语言" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "更改界面语言" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "主题" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "更改 SearXNG 布局" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "主题样式" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "自动(取决于您的浏览器设置)" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "居中对齐" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "启用" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "禁用" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "在页面中心显示结果(Oscar 布局)。" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "在新标签页打开搜索结果" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "在新标签页打开搜索结果中的链接" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "无限滚动(瀑布流)" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "滚动到当前页面底部时自动加载下一页" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "隐私" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP 方法" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, 详细了解请求方法" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "代理图片" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "启用" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "禁用" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "通过 SearXNG 代理访问图片结果" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "页面标题显示查询关键词" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "当启用时,结果页的标题包含你的查询关键词。你的浏览器可以记录这个标题" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "搜索引擎" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "目前使用的搜索引擎" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "这个标签页不会显示在搜索结果中,但您可以通过 ! 搜索这里列出的引擎。" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "允许" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "引擎名称" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "快捷键" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "支持选定的语言" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "时间范围" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "响应时间" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "最大用时" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "可靠性" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "特殊查询" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "关键词" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "名称" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "描述" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "示例" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "这是 SearXNG 即时回应模块的列表。" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "这是插件列表。" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "这是 SearXNG 在您的计算机上存储的 Cookie 的列表及相应的值。" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "您可以凭此列表评估 SearXNG 的透明度。" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Cookie 名称" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "值" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "目前偏好设定的搜索链接" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." @@ -849,37 +855,37 @@ msgstr "" "注意:当您从 SearXNG 搜索结果页点击进入一个网站时,SearXNG 搜索结果页的 URL 将会在请求头的 Referer " "字段中发送给目标网站服务器。如果您的设置了自定义搜索,URL 中将会包含您的个性化设置参数(如语言等),它们会被目标网站得知,这不利于您的隐私。" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "用于在其他浏览器上还原您的偏好设置的 URL" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "在首选项 URL 中指定可跨设备同步的偏好设置。" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "这些设置被存储在您的 Cookie 中,这种保存设置的方式使我们不必保存您的设置数据。" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "这些 Cookie 信息用于辅助您便捷地使用本服务,我们绝不利用这些信息来跟踪您。" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "保存" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "恢复默认设置" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "返回" @@ -1458,3 +1464,46 @@ msgstr "隐藏视频" #~ "更改提交表单时使用的请求方法,深入了解请求方法" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "" +#~ "该插件检查请求的 IP 地址是否为 Tor 出口节点,如果是则通知用户,可视为 " +#~ "searxng 中的 check.torproject.org 。" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "无法获取 Tor 出口节点列表(https://check.torproject.org/exit-addresses)。" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "你在使用 Tor。你的 IP 地址应该是{ip_address}." + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "你没有在使用 Tor。你的 IP 地址应该是{ip_address}." + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "自动检测搜索语言" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "自动检测查询搜索语言并切换到它。" diff --git a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo index 6e21e5375..13fe2ee96 100644 Binary files a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo and b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po index 2cbead656..70871cac6 100644 --- a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po +++ b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po @@ -14,19 +14,18 @@ # Grey , 2022. msgid "" msgstr "" -"Project-Id-Version: searx\n" +"Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-12 07:18+0000\n" +"POT-Creation-Date: 2023-02-20 11:22+0000\n" "PO-Revision-Date: 2022-12-23 07:14+0000\n" "Last-Translator: Grey \n" -"Language-Team: Chinese (Traditional) \n" "Language: zh_Hant_TW\n" +"Language-Team: Chinese (Traditional) " +"\n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14.1\n" "Generated-By: Babel 2.11.0\n" #. CONSTANT_NAMES['DEFAULT_GROUP_NAME'] @@ -206,40 +205,40 @@ msgstr "拒絕訪問" msgid "server API error" msgstr "服務器 API 錯誤" -#: searx/webapp.py:366 +#: searx/webapp.py:368 msgid "No item found" msgstr "找不到項目" #: searx/engines/qwant.py:217 -#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368 +#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370 msgid "Source" msgstr "來源" -#: searx/webapp.py:370 +#: searx/webapp.py:372 msgid "Error loading the next page" msgstr "載入下個頁面時發生錯誤" -#: searx/webapp.py:522 searx/webapp.py:954 +#: searx/webapp.py:524 searx/webapp.py:964 msgid "Invalid settings, please edit your preferences" msgstr "無效的設定,請編輯您的偏好設定" -#: searx/webapp.py:538 +#: searx/webapp.py:540 msgid "Invalid settings" msgstr "無效的設定" -#: searx/webapp.py:615 searx/webapp.py:691 +#: searx/webapp.py:617 searx/webapp.py:693 msgid "search error" msgstr "搜尋錯誤" -#: searx/webapp.py:853 +#: searx/webapp.py:863 msgid "Suspended" msgstr "暫停服務" -#: searx/webutils.py:161 +#: searx/webutils.py:198 msgid "{minutes} minute(s) ago" msgstr "{minutes} 分鐘前" -#: searx/webutils.py:162 +#: searx/webutils.py:199 msgid "{hours} hour(s), {minutes} minute(s) ago" msgstr "{hours} 小時 {minutes} 分鐘前" @@ -316,14 +315,6 @@ msgstr "傍晚" msgid "Night" msgstr "夜晚" -#: searx/plugins/autodetect_search_language.py:79 -msgid "Autodetect search language" -msgstr "自動偵測搜尋語言" - -#: searx/plugins/autodetect_search_language.py:80 -msgid "Automatically detect the query search language and switch to it." -msgstr "由搜尋字串自動偵測語言,並作為搜尋語言來使用。" - #: searx/plugins/hash_plugin.py:24 msgid "Converts strings to different hash digests." msgstr "將字符串裝換為不同的散列摘要值。" @@ -376,23 +367,25 @@ msgstr "Tor 網路檢測" #: searx/plugins/tor_check.py:28 msgid "" -"This plugin checks if the address of the request is a TOR exit node, and " -"informs the user if it is, like check.torproject.org but from searxng." -msgstr "這會檢查 IP 是否 Tor 出口節點,並通知用戶。類近於 check.torproject.org。" +"This plugin checks if the address of the request is a Tor exit-node, and " +"informs the user if it is; like check.torproject.org, but from SearXNG." +msgstr "" #: searx/plugins/tor_check.py:62 msgid "" -"The TOR exit node list (https://check.torproject.org/exit-addresses) is " -"unreachable." -msgstr "無法獲取 Tor 出口節點列表 (https://check.torproject.org/exit-addresses)。" +"Could not download the list of Tor exit-nodes from: " +"https://check.torproject.org/exit-addresses" +msgstr "" #: searx/plugins/tor_check.py:78 -msgid "You are using TOR. Your IP address seems to be: {ip_address}." -msgstr "目前您正在使用 Tor,IP 地址: {ip_address}。" +msgid "" +"You are using Tor and it looks like you have this external IP address: " +"{ip_address}" +msgstr "" -#: searx/plugins/tor_check.py:84 -msgid "You are not using TOR. Your IP address seems to be: {ip_address}." -msgstr "目前您沒有使用 Tor,IP 地址:{ip_address}。" +#: searx/plugins/tor_check.py:86 +msgid "You are not using Tor and you have this external IP address: {ip_address}" +msgstr "" #: searx/plugins/tracker_url_remover.py:29 msgid "Tracker URL remover" @@ -565,15 +558,24 @@ msgstr "搜尋語言" msgid "Default language" msgstr "預設語言" -#: searx/templates/simple/preferences.html:124 +#: searx/templates/simple/filters/languages.html:4 +#: searx/templates/simple/preferences.html:119 +msgid "Auto-detect" +msgstr "" + +#: searx/templates/simple/preferences.html:126 msgid "What language do you prefer for search?" msgstr "您偏好用哪種語言搜尋?" -#: searx/templates/simple/preferences.html:129 +#: searx/templates/simple/preferences.html:126 +msgid "Choose Auto-detect to let SearXNG detect the language of your query." +msgstr "" + +#: searx/templates/simple/preferences.html:132 msgid "Autocomplete" msgstr "自動完成" -#: searx/templates/simple/preferences.html:138 +#: searx/templates/simple/preferences.html:141 msgid "Find stuff as you type" msgstr "隨打即找" @@ -581,121 +583,121 @@ msgstr "隨打即找" #: searx/templates/simple/filters/safesearch.html:2 #: searx/templates/simple/filters/safesearch.html:3 #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:143 -#: searx/templates/simple/preferences.html:311 +#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:314 msgid "SafeSearch" msgstr "安全搜尋" #: searx/templates/simple/filters/safesearch.html:2 -#: searx/templates/simple/preferences.html:146 +#: searx/templates/simple/preferences.html:149 msgid "Strict" msgstr "嚴格" #: searx/templates/simple/filters/safesearch.html:3 -#: searx/templates/simple/preferences.html:147 +#: searx/templates/simple/preferences.html:150 msgid "Moderate" msgstr "適中" #: searx/templates/simple/filters/safesearch.html:4 -#: searx/templates/simple/preferences.html:148 +#: searx/templates/simple/preferences.html:151 msgid "None" msgstr "無" -#: searx/templates/simple/preferences.html:151 +#: searx/templates/simple/preferences.html:154 msgid "Filter content" msgstr "過濾內容" -#: searx/templates/simple/preferences.html:157 +#: searx/templates/simple/preferences.html:160 msgid "Open Access DOI resolver" msgstr "開放存取 DOI 解析器" -#: searx/templates/simple/preferences.html:167 +#: searx/templates/simple/preferences.html:170 msgid "" "Redirect to open-access versions of publications when available (plugin " "required)" msgstr "盡可能重新導向至出版品的開放存取版本(需要外掛程式)" -#: searx/templates/simple/preferences.html:171 +#: searx/templates/simple/preferences.html:174 msgid "Engine tokens" msgstr "引擎權杖" -#: searx/templates/simple/preferences.html:175 +#: searx/templates/simple/preferences.html:178 msgid "Access tokens for private engines" msgstr "私人引擎的存取權杖" -#: searx/templates/simple/preferences.html:179 +#: searx/templates/simple/preferences.html:182 msgid "User interface" msgstr "使用者介面" -#: searx/templates/simple/preferences.html:182 +#: searx/templates/simple/preferences.html:185 msgid "Interface language" msgstr "介面語言" -#: searx/templates/simple/preferences.html:190 +#: searx/templates/simple/preferences.html:193 msgid "Change the language of the layout" msgstr "變更佈局的語言" -#: searx/templates/simple/preferences.html:195 +#: searx/templates/simple/preferences.html:198 msgid "Theme" msgstr "主題" -#: searx/templates/simple/preferences.html:203 +#: searx/templates/simple/preferences.html:206 msgid "Change SearXNG layout" msgstr "更改 SearXNG 佈局" -#: searx/templates/simple/preferences.html:206 +#: searx/templates/simple/preferences.html:209 msgid "Theme style" msgstr "主題樣式" -#: searx/templates/simple/preferences.html:214 +#: searx/templates/simple/preferences.html:217 msgid "Choose auto to follow your browser settings" msgstr "選擇自動則取決於您的瀏覽器設置" -#: searx/templates/simple/preferences.html:217 +#: searx/templates/simple/preferences.html:220 msgid "Center Alignment" msgstr "置中對齊" -#: searx/templates/simple/preferences.html:220 -#: searx/templates/simple/preferences.html:232 -#: searx/templates/simple/preferences.html:244 +#: searx/templates/simple/preferences.html:223 +#: searx/templates/simple/preferences.html:235 +#: searx/templates/simple/preferences.html:247 msgid "On" msgstr "開啟" -#: searx/templates/simple/preferences.html:221 -#: searx/templates/simple/preferences.html:233 -#: searx/templates/simple/preferences.html:245 +#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:248 msgid "Off" msgstr "關閉" -#: searx/templates/simple/preferences.html:224 +#: searx/templates/simple/preferences.html:227 msgid "Displays results in the center of the page (Oscar layout)." msgstr "搜尋結果置顯示於網頁中間。" -#: searx/templates/simple/preferences.html:229 +#: searx/templates/simple/preferences.html:232 msgid "Results on new tabs" msgstr "在新分頁開啟結果" -#: searx/templates/simple/preferences.html:236 +#: searx/templates/simple/preferences.html:239 msgid "Open result links on new browser tabs" msgstr "在新瀏覽器分頁中開啟結果連結" -#: searx/templates/simple/preferences.html:241 +#: searx/templates/simple/preferences.html:244 msgid "Infinite scroll" msgstr "無限捲動" -#: searx/templates/simple/preferences.html:248 +#: searx/templates/simple/preferences.html:251 msgid "Automatically load next page when scrolling to bottom of current page" msgstr "當捲動至目前頁面的底部時自動載入下一頁" -#: searx/templates/simple/preferences.html:254 +#: searx/templates/simple/preferences.html:257 msgid "Privacy" msgstr "隱私" -#: searx/templates/simple/preferences.html:257 +#: searx/templates/simple/preferences.html:260 msgid "HTTP Method" msgstr "HTTP 方法" -#: searx/templates/simple/preferences.html:264 +#: searx/templates/simple/preferences.html:267 msgid "" "Change how forms are submitted, 看看更多關於請求方法的介紹" -#: searx/templates/simple/preferences.html:269 +#: searx/templates/simple/preferences.html:272 msgid "Image proxy" msgstr "圖片代理伺服器" -#: searx/templates/simple/preferences.html:272 -#: searx/templates/simple/preferences.html:284 +#: searx/templates/simple/preferences.html:275 +#: searx/templates/simple/preferences.html:287 msgid "Enabled" msgstr "已啟用" -#: searx/templates/simple/preferences.html:273 -#: searx/templates/simple/preferences.html:285 +#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:288 msgid "Disabled" msgstr "已停用" -#: searx/templates/simple/preferences.html:276 +#: searx/templates/simple/preferences.html:279 msgid "Proxying image results through SearXNG" msgstr "通過 SearXNG 代理訪問圖片結果" -#: searx/templates/simple/preferences.html:281 +#: searx/templates/simple/preferences.html:284 msgid "Query in the page's title" msgstr "頁面標題顯示查詢關鍵字" -#: searx/templates/simple/preferences.html:288 +#: searx/templates/simple/preferences.html:291 msgid "" "When enabled, the result page's title contains your query. Your browser " "can record this title" msgstr "啟用時,結果頁的標題包含你的查詢關鍵字。你的瀏覽器會記錄這個標題" -#: searx/templates/simple/preferences.html:294 +#: searx/templates/simple/preferences.html:297 msgid "Engines" msgstr "引擎" -#: searx/templates/simple/preferences.html:295 +#: searx/templates/simple/preferences.html:298 msgid "Currently used search engines" msgstr "目前使用的搜尋引擎" -#: searx/templates/simple/preferences.html:302 +#: searx/templates/simple/preferences.html:305 msgid "" "This tab does not show up for search results, but you can search the " "engines listed here via bangs." msgstr "這個標籤頁不會顯示在搜索結果中,但您可以通過 ! 搜索這裡列出的引擎。" -#: searx/templates/simple/preferences.html:307 -#: searx/templates/simple/preferences.html:358 +#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:361 msgid "Allow" msgstr "允許" -#: searx/templates/simple/preferences.html:308 +#: searx/templates/simple/preferences.html:311 #: searx/templates/simple/stats.html:25 msgid "Engine name" msgstr "引擎名稱" -#: searx/templates/simple/preferences.html:309 +#: searx/templates/simple/preferences.html:312 msgid "Shortcut" msgstr "快捷鍵" -#: searx/templates/simple/preferences.html:310 +#: searx/templates/simple/preferences.html:313 msgid "Supports selected language" msgstr "支援選定的語言" #: searx/templates/simple/filters/time_range.html:1 -#: searx/templates/simple/preferences.html:312 +#: searx/templates/simple/preferences.html:315 msgid "Time range" msgstr "時間範圍" -#: searx/templates/simple/preferences.html:313 +#: searx/templates/simple/preferences.html:316 #: searx/templates/simple/stats.html:28 msgid "Response time" msgstr "響應時間" -#: searx/templates/simple/preferences.html:314 +#: searx/templates/simple/preferences.html:317 msgid "Max time" msgstr "最大時間" -#: searx/templates/simple/preferences.html:315 +#: searx/templates/simple/preferences.html:318 #: searx/templates/simple/stats.html:29 msgid "Reliability" msgstr "可靠性" -#: searx/templates/simple/preferences.html:353 +#: searx/templates/simple/preferences.html:356 msgid "Special Queries" msgstr "特殊查詢" -#: searx/templates/simple/preferences.html:359 +#: searx/templates/simple/preferences.html:362 msgid "Keywords" msgstr "關鍵字" -#: searx/templates/simple/preferences.html:360 +#: searx/templates/simple/preferences.html:363 msgid "Name" msgstr "名稱" -#: searx/templates/simple/preferences.html:361 +#: searx/templates/simple/preferences.html:364 msgid "Description" msgstr "描述" -#: searx/templates/simple/preferences.html:362 +#: searx/templates/simple/preferences.html:365 msgid "Examples" msgstr "範例" -#: searx/templates/simple/preferences.html:365 +#: searx/templates/simple/preferences.html:368 msgid "This is the list of SearXNG's instant answering modules." msgstr "這是 SearXNG 即時回應模塊列表。" -#: searx/templates/simple/preferences.html:376 +#: searx/templates/simple/preferences.html:379 msgid "This is the list of plugins." msgstr "這是插件列表。" -#: searx/templates/simple/preferences.html:393 +#: searx/templates/simple/preferences.html:396 msgid "Cookies" msgstr "Cookies" -#: searx/templates/simple/preferences.html:395 +#: searx/templates/simple/preferences.html:398 msgid "" "This is the list of cookies and their values SearXNG is storing on your " "computer." msgstr "這是 SearXNG 在您的計算機上存儲的 Cookie 的列表及對應的值。" -#: searx/templates/simple/preferences.html:396 +#: searx/templates/simple/preferences.html:399 msgid "With that list, you can assess SearXNG transparency." msgstr "您可以憑此列表評估 SearXNG 的透明度。" -#: searx/templates/simple/preferences.html:401 +#: searx/templates/simple/preferences.html:404 msgid "Cookie name" msgstr "Cookie 名稱" -#: searx/templates/simple/preferences.html:402 +#: searx/templates/simple/preferences.html:405 msgid "Value" msgstr "值" -#: searx/templates/simple/preferences.html:414 +#: searx/templates/simple/preferences.html:417 msgid "Search URL of the currently saved preferences" msgstr "目前偏好設定的搜尋 URL" -#: searx/templates/simple/preferences.html:418 +#: searx/templates/simple/preferences.html:421 msgid "" "Note: specifying custom settings in the search URL can reduce privacy by " "leaking data to the clicked result sites." msgstr "注意:在搜尋 URL 中指定自訂的設定可能會降低隱私,因為會洩漏資料給點選的結果頁面。" -#: searx/templates/simple/preferences.html:419 +#: searx/templates/simple/preferences.html:422 msgid "URL to restore your preferences in another browser" msgstr "用於在其他瀏覽器上還原您的偏好設定的網址" -#: searx/templates/simple/preferences.html:423 +#: searx/templates/simple/preferences.html:426 msgid "" "Specifying custom settings in the preferences URL can be used to sync " "preferences across devices." msgstr "於URL中指定設定可把您的偏好設定同步至其他設備。" -#: searx/templates/simple/preferences.html:428 +#: searx/templates/simple/preferences.html:431 msgid "" "These settings are stored in your cookies, this allows us not to store " "this data about you." msgstr "這些設定只會儲存在您的 cookies 中,這樣我們無需也不會存儲關於您的資訊。" -#: searx/templates/simple/preferences.html:430 +#: searx/templates/simple/preferences.html:433 msgid "" "These cookies serve your sole convenience, we don't use these cookies to " "track you." msgstr "這些 cookies 僅為提供您方便之用,我們不會使用這些 cookies 來追蹤您。" -#: searx/templates/simple/preferences.html:433 +#: searx/templates/simple/preferences.html:436 msgid "Save" msgstr "保存" -#: searx/templates/simple/preferences.html:434 +#: searx/templates/simple/preferences.html:437 msgid "Reset defaults" msgstr "重設為預設值" -#: searx/templates/simple/preferences.html:435 +#: searx/templates/simple/preferences.html:438 msgid "Back" msgstr "返回" @@ -1451,3 +1453,45 @@ msgstr "隱藏影片" #~ msgstr "" #~ "變更遞交形式,看看更多關於請求方法的介紹" + +#~ msgid "" +#~ "This plugin checks if the address " +#~ "of the request is a TOR exit " +#~ "node, and informs the user if it" +#~ " is, like check.torproject.org but from " +#~ "searxng." +#~ msgstr "這會檢查 IP 是否 Tor 出口節點,並通知用戶。類近於 check.torproject.org。" + +#~ msgid "" +#~ "The TOR exit node list " +#~ "(https://check.torproject.org/exit-addresses) is " +#~ "unreachable." +#~ msgstr "無法獲取 Tor 出口節點列表 (https://check.torproject.org/exit-addresses)。" + +#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "目前您正在使用 Tor,IP 地址: {ip_address}。" + +#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}." +#~ msgstr "目前您沒有使用 Tor,IP 地址:{ip_address}。" + +#~ msgid "" +#~ "The could not download the list of" +#~ " Tor exit-nodes from " +#~ "https://check.torproject.org/exit-addresses." +#~ msgstr "" + +#~ msgid "" +#~ "You are using Tor. It looks like" +#~ " you have this external IP address:" +#~ " {ip_address}." +#~ msgstr "" + +#~ msgid "You are not using Tor. You have this external IP address: {ip_address}." +#~ msgstr "" + +#~ msgid "Autodetect search language" +#~ msgstr "自動偵測搜尋語言" + +#~ msgid "Automatically detect the query search language and switch to it." +#~ msgstr "由搜尋字串自動偵測語言,並作為搜尋語言來使用。" + diff --git a/searx/utils.py b/searx/utils.py index cda336035..e6180906b 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -53,6 +53,9 @@ _LANG_TO_LC_CACHE: Dict[str, Dict[str, str]] = {} _FASTTEXT_MODEL: Optional["fasttext.FastText._FastText"] = None """fasttext model to predict laguage of a search term""" +SEARCH_LANGUAGE_CODES = frozenset([searxng_locale[0].split('-')[0] for searxng_locale in language_codes]) +"""Languages supported by most searxng engines (:py:obj:`searx.languages.language_codes`).""" + class _NotSetClass: # pylint: disable=too-few-public-methods """Internal class for this module, do not create instance of this class. @@ -637,11 +640,72 @@ def _get_fasttext_model() -> "fasttext.FastText._FastText": return _FASTTEXT_MODEL -def detect_language(text: str, threshold: float = 0.3, min_probability: float = 0.5) -> Optional[str]: - """https://fasttext.cc/docs/en/language-identification.html""" +def detect_language(text: str, threshold: float = 0.3, only_search_languages: bool = False) -> Optional[str]: + """Detect the language of the ``text`` parameter. + + :param str text: The string whose language is to be detected. + + :param float threshold: Threshold filters the returned labels by a threshold + on probability. A choice of 0.3 will return labels with at least 0.3 + probability. + + :param bool only_search_languages: If ``True``, returns only supported + SearXNG search languages. see :py:obj:`searx.languages` + + :rtype: str, None + :returns: + The detected language code or ``None``. See below. + + :raises ValueError: If ``text`` is not a string. + + The language detection is done by using `a fork`_ of the fastText_ library + (`python fasttext`_). fastText_ distributes the `language identification + model`_, for reference: + + - `FastText.zip: Compressing text classification models`_ + - `Bag of Tricks for Efficient Text Classification`_ + + The `language identification model`_ support the language codes + (ISO-639-3):: + + af als am an ar arz as ast av az azb ba bar bcl be bg bh bn bo bpy br bs + bxr ca cbk ce ceb ckb co cs cv cy da de diq dsb dty dv el eml en eo es + et eu fa fi fr frr fy ga gd gl gn gom gu gv he hi hif hr hsb ht hu hy ia + id ie ilo io is it ja jbo jv ka kk km kn ko krc ku kv kw ky la lb lez li + lmo lo lrc lt lv mai mg mhr min mk ml mn mr mrj ms mt mwl my myv mzn nah + nap nds ne new nl nn no oc or os pa pam pfl pl pms pnb ps pt qu rm ro ru + rue sa sah sc scn sco sd sh si sk sl so sq sr su sv sw ta te tg th tk tl + tr tt tyv ug uk ur uz vec vep vi vls vo wa war wuu xal xmf yi yo yue zh + + By using ``only_search_languages=True`` the `language identification model`_ + is harmonized with the SearXNG's language (locale) model. General + conditions of SearXNG's locale model are: + + a. SearXNG's locale of a query is passed to the + :py:obj:`searx.locales.get_engine_locale` to get a language and/or region + code that is used by an engine. + + b. Most of SearXNG's engines do not support all the languages from `language + identification model`_ and there is also a discrepancy in the ISO-639-3 + (fastext) and ISO-639-2 (SearXNG)handling. Further more, in SearXNG the + locales like ``zh-TH`` (``zh-CN``) are mapped to ``zh_Hant`` + (``zh_Hans``) while the `language identification model`_ reduce both to + ``zh``. + + .. _a fork: https://github.com/searxng/fasttext-predict + .. _fastText: https://fasttext.cc/ + .. _python fasttext: https://pypi.org/project/fasttext/ + .. _language identification model: https://fasttext.cc/docs/en/language-identification.html + .. _Bag of Tricks for Efficient Text Classification: https://arxiv.org/abs/1607.01759 + .. _`FastText.zip: Compressing text classification models`: https://arxiv.org/abs/1612.03651 + + """ if not isinstance(text, str): raise ValueError('text must a str') r = _get_fasttext_model().predict(text.replace('\n', ' '), k=1, threshold=threshold) - if isinstance(r, tuple) and len(r) == 2 and len(r[0]) > 0 and len(r[1]) > 0 and r[1][0] > min_probability: - return r[0][0].split('__label__')[1] + if isinstance(r, tuple) and len(r) == 2 and len(r[0]) > 0 and len(r[1]) > 0: + language = r[0][0].split('__label__')[1] + if only_search_languages and language not in SEARCH_LANGUAGE_CODES: + return None + return language return None diff --git a/searx/version.py b/searx/version.py index cefdb7a43..9f3de38e9 100644 --- a/searx/version.py +++ b/searx/version.py @@ -59,27 +59,34 @@ def get_git_url_and_branch(): def get_git_version(): - git_commit_date_hash = subprocess_run(r"git show -s --date='format:%Y.%m.%d' --format='%cd-%h'") + git_commit_date_hash = subprocess_run(r"git show -s --date='format:%-Y.%-m.%-d' --format='%cd+%h'") tag_version = git_version = git_commit_date_hash - # add "-dirty" suffix if there are uncommited changes except searx/settings.yml + # add "+dirty" suffix if there are uncommited changes except searx/settings.yml try: subprocess_run("git diff --quiet -- . ':!searx/settings.yml' ':!utils/brand.env'") except subprocess.CalledProcessError as e: if e.returncode == 1: - git_version += "-dirty" + git_version += "+dirty" else: logger.warning('"%s" returns an unexpected return code %i', e.returncode, e.cmd) - return git_version, tag_version + docker_tag = git_version.replace("+", "-") + return git_version, tag_version, docker_tag try: vf = importlib.import_module('searx.version_frozen') - VERSION_STRING, VERSION_TAG, GIT_URL, GIT_BRANCH = vf.VERSION_STRING, vf.VERSION_TAG, vf.GIT_URL, vf.GIT_BRANCH + VERSION_STRING, VERSION_TAG, DOCKER_TAG, GIT_URL, GIT_BRANCH = ( + vf.VERSION_STRING, + vf.VERSION_TAG, + vf.DOCKER_TAG, + vf.GIT_URL, + vf.GIT_BRANCH, + ) except ImportError: try: try: - VERSION_STRING, VERSION_TAG = get_git_version() + VERSION_STRING, VERSION_TAG, DOCKER_TAG = get_git_version() except subprocess.CalledProcessError as ex: logger.error("Error while getting the version: %s", ex.stderr) try: @@ -102,6 +109,7 @@ if __name__ == "__main__": VERSION_STRING = "{VERSION_STRING}" VERSION_TAG = "{VERSION_TAG}" +DOCKER_TAG = "{DOCKER_TAG}" GIT_URL = "{GIT_URL}" GIT_BRANCH = "{GIT_BRANCH}" """ @@ -114,6 +122,7 @@ GIT_BRANCH = "{GIT_BRANCH}" shell_code = f""" VERSION_STRING="{VERSION_STRING}" VERSION_TAG="{VERSION_TAG}" +DOCKER_TAG="{DOCKER_TAG}" GIT_URL="{GIT_URL}" GIT_BRANCH="{GIT_BRANCH}" """ diff --git a/searx/webadapter.py b/searx/webadapter.py index 00dead2a9..dbcf25058 100644 --- a/searx/webadapter.py +++ b/searx/webadapter.py @@ -63,7 +63,7 @@ def parse_lang(preferences: Preferences, form: Dict[str, str], raw_text_query: R query_lang = preferences.get_value('language') # check language - if not VALID_LANGUAGE_CODE.match(query_lang): + if not VALID_LANGUAGE_CODE.match(query_lang) and query_lang != 'auto': raise SearxParameterException('language', query_lang) return query_lang diff --git a/searx/webapp.py b/searx/webapp.py index d4206ca16..95c33f704 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -5,6 +5,8 @@ """WebbApp """ +# pylint: disable=use-dict-literal + import hashlib import hmac import json @@ -160,8 +162,6 @@ app.jinja_env.add_extension('jinja2.ext.loopcontrols') # pylint: disable=no-mem app.jinja_env.filters['group_engines_in_tab'] = group_engines_in_tab # pylint: disable=no-member app.secret_key = settings['server']['secret_key'] -babel = Babel(app) - timeout_text = gettext('timeout') parsing_error_text = gettext('parsing error') http_protocol_error_text = gettext('HTTP protocol error') @@ -211,13 +211,15 @@ class ExtendedRequest(flask.Request): request = typing.cast(ExtendedRequest, flask.request) -@babel.localeselector def get_locale(): locale = localeselector() logger.debug("%s uses locale `%s`", urllib.parse.quote(request.url), locale) return locale +babel = Babel(app, locale_selector=get_locale) + + def _get_browser_language(req, lang_list): for lang in req.headers.get("Accept-Language", "en").split(","): if ';' in lang: @@ -808,6 +810,9 @@ def search(): ) ) + # search_query.lang contains the user choice (all, auto, en, ...) + # when the user choice is "auto", search.search_query.lang contains the detected language + # otherwise it is equals to search_query.lang return render( # fmt: off 'results.html', @@ -815,7 +820,7 @@ def search(): q=request.form['q'], selected_categories = search_query.categories, pageno = search_query.pageno, - time_range = search_query.time_range, + time_range = search_query.time_range or '', number_of_results = format_decimal(number_of_results), suggestions = suggestion_urls, answers = result_container.answers, @@ -832,6 +837,11 @@ def search(): settings['search']['languages'], fallback=request.preferences.get_value("language") ), + search_language = match_language( + search.search_query.lang, + settings['search']['languages'], + fallback=request.preferences.get_value("language") + ), timeout_limit = request.form.get('timeout_limit', None) # fmt: on ) diff --git a/searx/webutils.py b/searx/webutils.py index 35f4401d2..6c023ebc3 100644 --- a/searx/webutils.py +++ b/searx/webutils.py @@ -113,31 +113,70 @@ def prettify_url(url, max_length=74): return url +def contains_cjko(s: str) -> bool: + """This function check whether or not a string contains Chinese, Japanese, + or Korean characters. It employs regex and uses the u escape sequence to + match any character in a set of Unicode ranges. + + Args: + s (str): string to be checked. + + Returns: + bool: True if the input s contains the characters and False otherwise. + """ + unicode_ranges = ( + '\u4e00-\u9fff' # Chinese characters + '\u3040-\u309f' # Japanese hiragana + '\u30a0-\u30ff' # Japanese katakana + '\u4e00-\u9faf' # Japanese kanji + '\uac00-\ud7af' # Korean hangul syllables + '\u1100-\u11ff' # Korean hangul jamo + ) + return bool(re.search(fr'[{unicode_ranges}]', s)) + + +def regex_highlight_cjk(word: str) -> str: + """Generate the regex pattern to match for a given word according + to whether or not the word contains CJK characters or not. + If the word is and/or contains CJK character, the regex pattern + will match standalone word by taking into account the presence + of whitespace before and after it; if not, it will match any presence + of the word throughout the text, ignoring the whitespace. + + Args: + word (str): the word to be matched with regex pattern. + + Returns: + str: the regex pattern for the word. + """ + rword = re.escape(word) + if contains_cjko(rword): + return fr'({rword})' + else: + return fr'\b({rword})(?!\w)' + + def highlight_content(content, query): if not content: return None + # ignoring html contents # TODO better html content detection if content.find('<') != -1: return content - if content.lower().find(query.lower()) > -1: - query_regex = '({0})'.format(re.escape(query)) - content = re.sub(query_regex, '\\1', content, flags=re.I | re.U) - else: - regex_parts = [] - for chunk in query.split(): - chunk = chunk.replace('"', '') - if len(chunk) == 0: - continue - elif len(chunk) == 1: - regex_parts.append('\\W+{0}\\W+'.format(re.escape(chunk))) - else: - regex_parts.append('{0}'.format(re.escape(chunk))) - query_regex = '({0})'.format('|'.join(regex_parts)) - content = re.sub(query_regex, '\\1', content, flags=re.I | re.U) - + querysplit = query.split() + queries = [] + for qs in querysplit: + qs = qs.replace("'", "").replace('"', '').replace(" ", "") + if len(qs) > 0: + queries.extend(re.findall(regex_highlight_cjk(qs), content, flags=re.I | re.U)) + if len(queries) > 0: + for q in set(queries): + content = re.sub( + regex_highlight_cjk(q), f'{q}'.replace('\\', r'\\'), content + ) return content diff --git a/searxng_extra/docs_prebuild b/searxng_extra/docs_prebuild index c7982a047..220bafca9 100755 --- a/searxng_extra/docs_prebuild +++ b/searxng_extra/docs_prebuild @@ -78,7 +78,6 @@ def _instance_infosetset_ctx(base_url): # found .. time.sleep(3) - return DOC if __name__ == '__main__': diff --git a/searxng_extra/update/update_ahmia_blacklist.py b/searxng_extra/update/update_ahmia_blacklist.py index 26c485195..a11413f14 100755 --- a/searxng_extra/update/update_ahmia_blacklist.py +++ b/searxng_extra/update/update_ahmia_blacklist.py @@ -9,6 +9,7 @@ Output file: :origin:`searx/data/ahmia_blacklist.txt` (:origin:`CI Update data .. _Ahmia's blacklist: https://ahmia.fi/blacklist/ """ +# pylint: disable=use-dict-literal from os.path import join @@ -21,6 +22,7 @@ URL = 'https://ahmia.fi/blacklist/banned/' def fetch_ahmia_blacklist(): resp = requests.get(URL, timeout=3.0) if resp.status_code != 200: + # pylint: disable=broad-exception-raised raise Exception("Error fetching Ahmia blacklist, HTTP code " + resp.status_code) return resp.text.split() diff --git a/searxng_extra/update/update_firefox_version.py b/searxng_extra/update/update_firefox_version.py index 384d0002f..2e730764a 100755 --- a/searxng_extra/update/update_firefox_version.py +++ b/searxng_extra/update/update_firefox_version.py @@ -1,19 +1,19 @@ #!/usr/bin/env python # lint: pylint # SPDX-License-Identifier: AGPL-3.0-or-later - """Fetch firefox useragent signatures Output file: :origin:`searx/data/useragents.json` (:origin:`CI Update data ... <.github/workflows/data-update.yml>`). """ +# pylint: disable=use-dict-literal import json import re from os.path import join from urllib.parse import urlparse, urljoin -from distutils.version import LooseVersion # pylint: disable=deprecated-module +from packaging.version import parse import requests from lxml import html @@ -40,6 +40,7 @@ useragents = { def fetch_firefox_versions(): resp = requests.get(URL, timeout=2.0) if resp.status_code != 200: + # pylint: disable=broad-exception-raised raise Exception("Error fetching firefox versions, HTTP code " + resp.status_code) dom = html.fromstring(resp.text) versions = [] @@ -50,7 +51,7 @@ def fetch_firefox_versions(): if path.startswith(RELEASE_PATH): version = path[len(RELEASE_PATH) : -1] if NORMAL_REGEX.match(version): - versions.append(LooseVersion(version)) + versions.append(parse(version)) list.sort(versions, reverse=True) return versions @@ -60,11 +61,11 @@ def fetch_firefox_last_versions(): versions = fetch_firefox_versions() result = [] - major_last = versions[0].version[0] + major_last = versions[0].major major_list = (major_last, major_last - 1) for version in versions: - major_current = version.version[0] - minor_current = version.version[1] + major_current = version.major + minor_current = version.minor if major_current in major_list: user_agent_version = f'{major_current}.{minor_current}' if user_agent_version not in result: diff --git a/tests/unit/test_exceptions.py b/tests/unit/test_exceptions.py new file mode 100644 index 000000000..13d004322 --- /dev/null +++ b/tests/unit/test_exceptions.py @@ -0,0 +1,41 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later + +from tests import SearxTestCase +import searx.exceptions +from searx import get_setting + + +class TestExceptions(SearxTestCase): + def test_default_suspend_time(self): + with self.assertRaises(searx.exceptions.SearxEngineAccessDeniedException) as e: + raise searx.exceptions.SearxEngineAccessDeniedException() + self.assertEqual( + e.exception.suspended_time, + get_setting(searx.exceptions.SearxEngineAccessDeniedException.SUSPEND_TIME_SETTING), + ) + + with self.assertRaises(searx.exceptions.SearxEngineCaptchaException) as e: + raise searx.exceptions.SearxEngineCaptchaException() + self.assertEqual( + e.exception.suspended_time, get_setting(searx.exceptions.SearxEngineCaptchaException.SUSPEND_TIME_SETTING) + ) + + with self.assertRaises(searx.exceptions.SearxEngineTooManyRequestsException) as e: + raise searx.exceptions.SearxEngineTooManyRequestsException() + self.assertEqual( + e.exception.suspended_time, + get_setting(searx.exceptions.SearxEngineTooManyRequestsException.SUSPEND_TIME_SETTING), + ) + + def test_custom_suspend_time(self): + with self.assertRaises(searx.exceptions.SearxEngineAccessDeniedException) as e: + raise searx.exceptions.SearxEngineAccessDeniedException(suspended_time=1337) + self.assertEqual(e.exception.suspended_time, 1337) + + with self.assertRaises(searx.exceptions.SearxEngineCaptchaException) as e: + raise searx.exceptions.SearxEngineCaptchaException(suspended_time=1409) + self.assertEqual(e.exception.suspended_time, 1409) + + with self.assertRaises(searx.exceptions.SearxEngineTooManyRequestsException) as e: + raise searx.exceptions.SearxEngineTooManyRequestsException(suspended_time=1543) + self.assertEqual(e.exception.suspended_time, 1543) diff --git a/tests/unit/test_query.py b/tests/unit/test_query.py index db25da8f3..7274a8da5 100644 --- a/tests/unit/test_query.py +++ b/tests/unit/test_query.py @@ -91,6 +91,17 @@ class TestLanguageParser(SearxTestCase): self.assertIn('all', query.languages) self.assertFalse(query.specific) + def test_auto_language_code(self): + language = 'auto' + query_text = 'una consulta' + full_query = ':' + language + ' ' + query_text + query = RawTextQuery(full_query, []) + + self.assertEqual(query.getFullQuery(), full_query) + self.assertEqual(len(query.query_parts), 1) + self.assertIn('auto', query.languages) + self.assertFalse(query.specific) + def test_invalid_language_code(self): language = 'not_a_language' query_text = 'the query' diff --git a/tests/unit/test_search.py b/tests/unit/test_search.py index fa16947be..33bf90840 100644 --- a/tests/unit/test_search.py +++ b/tests/unit/test_search.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +from copy import copy + import searx.search from searx.search import SearchQuery, EngineRef from searx import settings @@ -34,6 +36,11 @@ class SearchQueryTestCase(SearxTestCase): self.assertEqual(s, s) self.assertNotEqual(s, t) + def test_copy(self): + s = SearchQuery('test', [EngineRef('bing', 'general')], 'all', 0, 1, None, None, None) + t = copy(s) + self.assertEqual(s, t) + class SearchTestCase(SearxTestCase): @classmethod diff --git a/tests/unit/test_webutils.py b/tests/unit/test_webutils.py index 31a0f86ce..acf1aeeb7 100644 --- a/tests/unit/test_webutils.py +++ b/tests/unit/test_webutils.py @@ -28,32 +28,33 @@ class TestWebUtils(SearxTestCase): content = 'a' query = 'test' - self.assertEqual(webutils.highlight_content(content, query), content) + self.assertEqual(webutils.highlight_content(content, query), 'a') query = 'a test' - self.assertEqual(webutils.highlight_content(content, query), content) + self.assertEqual(webutils.highlight_content(content, query), 'a') data = ( ('" test "', 'a test string', 'a test string'), - ('"a"', 'this is a test string', 'this is a test string'), + ('"a"', 'this is a test string', 'this is a test string'), ( 'a test', 'this is a test string that matches entire query', - 'this is a test string that matches entire query', + 'this is a test string that matches entire query', ), ( 'this a test', 'this is a string to test.', ( - 'this is a ' - 'string to test.' + 'this is a string to test.' ), ), ( 'match this "exact phrase"', 'this string contains the exact phrase we want to match', - ( - 'this string contains the exact' - ' phrase we want to match' + ''.join( + [ + 'this string contains the exact ', + 'phrase we want to match', + ] ), ), ) diff --git a/utils/lib_nvm.sh b/utils/lib_nvm.sh index 6297d286d..aaea5cd31 100755 --- a/utils/lib_nvm.sh +++ b/utils/lib_nvm.sh @@ -27,6 +27,7 @@ nvm.env() { source "${NVM_DIR}/nvm.sh" source "${NVM_DIR}/bash_completion" [ "$VERBOSE" = "1" ] && info_msg "sourced NVM environment from ${NVM_DIR}" + return 0 } nvm.is_installed() { @@ -102,11 +103,15 @@ EOF nvm.install() { local NVM_VERSION_TAG info_msg "install (update) NVM at ${NVM_DIR}" - if [[ -d "${NVM_DIR}" ]] ; then + if nvm.is_installed; then info_msg "already cloned at: ${NVM_DIR}" pushd "${NVM_DIR}" &> /dev/null git fetch --all | prefix_stdout " ${_Yellow}||${_creset} " else + # delete any leftovers from previos installations + if nvm.is_local; then + rm -rf "${NVM_DIR}" + fi info_msg "clone: ${NVM_GIT_URL}" git clone "${NVM_GIT_URL}" "${NVM_DIR}" 2>&1 | prefix_stdout " ${_Yellow}||${_creset} " pushd "${NVM_DIR}" &> /dev/null diff --git a/utils/lxc-searxng.env b/utils/lxc-searxng.env index 86279d4b3..9d6efb42e 100644 --- a/utils/lxc-searxng.env +++ b/utils/lxc-searxng.env @@ -16,8 +16,8 @@ lxc_set_suite_env() { export LXC_SUITE=( # end of standard support see https://wiki.ubuntu.com/Releases - "$LINUXCONTAINERS_ORG_NAME:ubuntu/20.04" "ubu2004" # April 2025 - "$LINUXCONTAINERS_ORG_NAME:ubuntu/21.10" "ubu2110" # July 2027 + "$LINUXCONTAINERS_ORG_NAME:ubuntu/20.04" "ubu2004" # LTS EOSS April 2025 + "$LINUXCONTAINERS_ORG_NAME:ubuntu/22.04" "ubu2204" # LTS EOSS April 2027 # EOL see https://fedoraproject.org/wiki/Releases "$LINUXCONTAINERS_ORG_NAME:fedora/35" "fedora35" diff --git a/utils/lxc.sh b/utils/lxc.sh index 0a792b4b5..28cc30265 100755 --- a/utils/lxc.sh +++ b/utils/lxc.sh @@ -25,22 +25,17 @@ LXC_HOST_PREFIX="${LXC_HOST_PREFIX:-test}" LXC_SHARE_FOLDER="/share" LXC_REPO_ROOT="${LXC_SHARE_FOLDER}/$(basename "${REPO_ROOT}")" -ubu1804_boilerplate=" +# shellcheck disable=SC2034 +ubu2004_boilerplate=" export DEBIAN_FRONTEND=noninteractive apt-get update -y apt-get upgrade -y apt-get install -y git curl wget -" -ubu1904_boilerplate="$ubu1804_boilerplate" - -# shellcheck disable=SC2034 -ubu2004_boilerplate=" -$ubu1904_boilerplate echo 'Set disable_coredump false' >> /etc/sudo.conf " # shellcheck disable=SC2034 -ubu2110_boilerplate="$ubu1904_boilerplate" +ubu2204_boilerplate="$ubu2004_boilerplate" # shellcheck disable=SC2034 archlinux_boilerplate=" diff --git a/utils/templates/etc/searxng/settings.yml b/utils/templates/etc/searxng/settings.yml index aee21474d..d8b659b1a 100644 --- a/utils/templates/etc/searxng/settings.yml +++ b/utils/templates/etc/searxng/settings.yml @@ -11,11 +11,16 @@ search: autocomplete: 'duckduckgo' server: + # Is overwritten by ${SEARXNG_SECRET} secret_key: "ultrasecretkey" limiter: true image_proxy: true + # public URL of the instance, to ensure correct inbound links. Is overwritten + # by ${SEARXNG_URL}. + # base_url: http://example.com/location redis: + # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}. url: unix:///usr/local/searxng-redis/run/redis.sock?db=0 ui: